        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ─── Navbar ─────────────────────────────────────────── */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 64px;
            gap: 16px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .navbar-brand img {
            height: 36px;
            width: 36px;
            object-fit: contain;
        }

        .navbar-brand-name {
            font-family: 'Inter', 'Poppins', Arial, sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            letter-spacing: -0.5px;
            white-space: nowrap;
        }

        .navbar-search {
            flex: 1;
            max-width: 420px;
            position: relative;
        }

        .navbar-search input {
            width: 100%;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 24px;
            padding: 8px 18px;
            color: #fff;
            font-family: 'Inter', Arial, sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
        }

        .navbar-search input::placeholder {
            color: rgba(255,255,255,0.35);
        }

        .navbar-search input:focus {
            border-color: rgba(255,255,255,0.4);
            background: rgba(255,255,255,0.11);
        }

        .navbar-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .navbar-links a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
            white-space: nowrap;
            transition: color 0.2s, background 0.2s;
        }

        .navbar-links a:hover {
            color: #fff;
            background: rgba(255,255,255,0.1);
        }

        .navbar-instagram {
            display: flex !important;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(255,255,255,0.12) !important;
        }

        .navbar-instagram:hover {
            border-color: rgba(255,255,255,0.3) !important;
        }

        .navbar-insta-icon {
            width: 16px;
            height: 16px;
            object-fit: contain;
            border-radius: 4px;
        }

        /* Mobile navbar */
        @media (max-width: 767px) {
            .navbar {
                flex-wrap: wrap;
                height: auto;
                padding: 10px 16px;
                gap: 10px;
            }

            .navbar-search {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .navbar-links {
                display: flex;
            }

            .navbar-links a:not(.navbar-instagram) {
                display: none;
            }
        }
        /* ─────────────────────────────────────────────────────── */

        body {
            background: #000000;
            color: #FFFFFF;
            font-family: 'Inter', 'Poppins', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 0.5px;
            min-height: 100vh;
            padding-top: 80px;
            overflow-x: hidden;
        }

        /* Main index centering */
        body.index-page {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 10px 40px;
        }

        .container {
            max-width: 800px;
            width: 100%;
            text-align: center;
            margin: 0 auto;
        }
 
        .area{
            width:500px;
            height:300px;
            margin:100px auto;
            border-radius:16px;
            position:relative;
            overflow:hidden;  
            --x: 50%;
            --y: 50%;
        }

        .area::after{
            content:"";
            position: absolute;
            inset:0;
            pointer-events:none;

            backdrop-filter: blur(14px);

            background:
                radial-gradient(
                    circle 120px at var(--x) var(--y),
                    rgba(0,120,255,.25),
                    transparent 70%
                );

            opacity:0;
            transition:opacity .15s;
        }

        .area:hover::after{
            opacity:0.7;
        }
        .logo-container {
            margin-bottom: 60px;
            animation: fadeIn 1s ease-in;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
           flex-direction:column;
        }
       .logo-text{
            font-size: 4rem;
            text-shadow: 0 0 20px rgba(255,255,255,0.35);
              text-align:center;

       }

       .text{
            font-size: 1rem;
            text-shadow: 0 0 10px rgba(255,255,255,0.35);

            text-align:center;
            padding: 6px;
}

        .logo-img {
            height: 200px;
            width: 200px;
            min-height: 200px;
            min-width: 200px;
               padding:0;
        }

        .logo span {
            display: inline-block;
        }

        .buttons-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }
        .project-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px 4px rgba(255,255,255,0.5);
        }

        .project-btn:active {
            transform: translateY(-1px);
        }

        .project-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            box-shadow: 0 0 8px 1px rgba(255,255,255,0.2);
        }

        .project-btn.disabled:hover {
            transform: none;
            box-shadow: 0 0 8px 1px rgba(255,255,255,0.2);
        }

        .wait-text {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin-right: 8px;
        }

        .new-by-section {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            margin-top: 40px;
            margin-bottom: 30px;
            font-size: 1.2rem;
        }

        .new-by-section img {
            height: 30px;
            width: auto;
        }

        .projects-title {
         text-align: center;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
        }

        .projects-grid {
              display: flex;
              gap: 9px;
              flex-wrap: wrap;
              justify-content: center;
              padding: 0px;
}
        
.project-btn{
            background: #ddd;
            color: #152d59;
            font-size: 1rem;
            cursor: pointer;
            padding: 14px 32px;
             box-shadow: 0 0 100px 20px rgba(132, 132, 132, 0.35);
                   font-weight: 700;
                   border: 1px solid #444444;
                   letter-spacing: -1.5px;
                   border-radius: 38px;
            transition: all 0.3s cubic-bezier(.79,.14,.15,.86);
            display: inline-block;
       text-decoration: none;
       text-align: center;
}
.project-btn strong{
padding:0px;
}
  
        .project-item:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px 6px rgba(0, 110, 255, 0.753);
        }

        .new-copyright {
            text-align: center;
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 30px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .new-copyright img {
            height: 22px;
            width: 22px;
            object-fit: contain;
            border-radius: 6px;
            opacity: 0.75;
        }
        

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 767px) {
            .logo-container {
                flex-direction: column;
                margin-bottom: 30px;
            }

            .logo-text {
                font-size: 2.5rem;
            }

            .logo-img {
                height: 120px;
                width: 120px;
                min-height: 120px;
                min-width: 120px;
            }

            .container {
                padding: 0 16px;
            }

            .project-btn {
                width: 100%;
                max-width: 280px;
                font-size: 0.95rem;
            }

            .buttons-grid {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (min-width: 768px) {
            .logo-container {
                flex-direction: row;
            }

            .buttons-grid {
                flex-direction: column;
            }

            .project-btn {
                width: 100%;
                max-width: 300px;
                font-size: 1.07rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .container {
                max-width: 90%;
            }
        }

        .description {
            font-size: 1.3rem;
            line-height: 2;
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 800px;
            width: 100%;
            text-align: left !important;
        }

        .description strong {
            font-weight: 700;
            color: #FFFFFF;
        }

        .features {
            text-align: left;
            display: block;
            margin: 20px 0;
            width: 100%;
            padding-left: 0;
        }

        .features li {
            margin: 10px 0;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: left !important;
            width: 100%;
            list-style-position: inside;
        }

        .features-container {
            display: block !important;
            width: 100% !important;
            text-align: left !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }

        /* ─── Inner Pages (jowa-gpt, jowa-football, etc.) ────── */

        .page-container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            padding: 20px 16px 60px;
            overflow-x: hidden;
        }

        .page-header {
            text-align: center;
            padding: 40px 0 30px;
            animation: fadeIn 1s ease-in;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(255,255,255,0.3);
            margin-bottom: 12px;
        }

        .page-header .subtitle {
            font-size: 1.1rem;
            opacity: 0.75;
            font-weight: 400;
            margin-bottom: 14px;
        }

        .badges {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .badge {
            display: inline-block;
            background: #111;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 0 12px 2px rgba(255,255,255,0.2);
        }

        .badge.gnu {
            color: #f5a623;
            box-shadow: 0 0 12px 2px rgba(245,166,35,0.25);
        }

        .badge.open-source-badge {
            box-shadow: 0 0 12px 2px rgba(255,255,255,0.25);
        }

        /* Card — shared content block */
        .card {
            background: #111111;
            padding: 36px;
            border-radius: 14px;
            margin-bottom: 28px;
            box-shadow: 0 0 12px 2px rgba(255,255,255,0.1);
        }

        .card h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .card p {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.8;
            opacity: 0.85;
            margin-bottom: 12px;
        }

        .card p:last-child { margin-bottom: 0; }

        /* Feature list inside cards */
        .feature-item {
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .feature-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .feature-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .feature-item p {
            margin-bottom: 0;
            font-size: 0.95rem;
            opacity: 0.8;
        }

        /* Controls / player blocks */
        .player-controls {
            padding: 18px;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            margin-bottom: 14px;
        }

        .player-controls:last-child { margin-bottom: 0; }

        .player-controls h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .player-controls p {
            margin-bottom: 0;
            font-size: 0.95rem;
            font-weight: 400;
            opacity: 0.85;
        }

        /* Code block */
        .code-block {
            background: #0a0a0a;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 18px 20px;
            margin: 14px 0;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.88rem;
            font-weight: 400;
            line-height: 1.7;
            color: #ccc;
            overflow-x: auto;
            max-width: 100%;
            box-sizing: border-box;
            white-space: pre-wrap;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .code-block .kw  { color: #569cd6; }
        .code-block .cls { color: #4ec9b0; }
        .code-block .fn  { color: #dcdcaa; }
        .code-block .str { color: #ce9178; }
        .code-block .cm  { color: #6a9955; }

        /* How-it-works steps */
        .how-step {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            align-items: flex-start;
        }

        .how-step:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .step-num {
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            min-width: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .step-body h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .step-body p {
            margin-bottom: 0;
            font-size: 0.93rem;
            opacity: 0.8;
            font-weight: 400;
        }

        /* License box */
        .license-box {
            background: rgba(245,166,35,0.06);
            border: 1px solid rgba(245,166,35,0.25);
            border-radius: 10px;
            padding: 20px 24px;
            font-size: 0.9rem;
            font-weight: 400;
            line-height: 1.8;
            opacity: 0.9;
        }

        .license-box strong { color: #f5a623; }
        .license-box a { color: #f5a623; }

        /* Download buttons row */
        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 28px;
        }

        /* Platform icon inside download btn */
        .platform-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
            margin-bottom: 8px;
        }

        /* Page footer */
        .page-footer {
            text-align: center;
            padding: 30px 0 10px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 0.8rem;
            opacity: 0.5;
            font-weight: 400;
        }

        /* Responsive inner pages */
        @media (max-width: 767px) {
            .page-header h1 { font-size: 2rem; }
            .card { padding: 22px; }
            .download-buttons { flex-direction: column; align-items: center; }
            .download-buttons .project-btn { width: 100%; max-width: 280px; }
        }
        /* ─────────────────────────────────────────────────────── */
