        :root {
            --black: #000000;
            --dark: #0a0a0f;
            --darker: #0f0f17;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.08);
            --blue: #0066ff;
            --blue-light: #4d94ff;
            --text-primary: #ffffff;
            --text-secondary: #b0b8cc;
            --text-muted: #7a8299;
        }

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

        html, body {
            width: 100%;
            height: 100%;
            background: var(--black);
            color: var(--text-primary);
            font-family: 'JetBrains Mono', monospace;
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* GENERAL LINKS */
        a:link {
            color:var(--blue);
            text-decoration:none;
        }
        a:hover{
            color:cyan;
            text-decoration:underline;
        }
        a:active{
            color:green;
            font-weight:bold;
        }
        a:visited{
            color:whitesmoke;
            font-weight:bold;
        }

        /* HEADER */
        header {
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--text-primary);
        }

        .nav-toggle {
            display: none;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--blue);
        }

        /* NAVIGATION */
        nav {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 1px;
            padding: 6px 12px;
            border: 1px solid transparent;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-weight: 600;
        }

        nav a:hover, nav a.active {
            color: var(--text-primary);
            background: var(--glass);
            border-color: var(--glass-border);
        }

        /* MAIN CONTAINER */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        .section {
            display: none;
            animation: slideIn 0.4s ease;
        }

        .section.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CARDS */
        .card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
        }

        .card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #f0f4f8;
            margin-bottom: 0.8rem;
            letter-spacing: 0.5px;
        }

        .card-desc {
            color: #b0b8cc;
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }
        .card-desc a{
            float:right;
        }

        /* STAT GRID */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        .stat-label {
            font-size: 0.7rem;
            color: #8892a8;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0f4f8;
        }

        /* TAGS */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .tag {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #a8b5d1;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
            color: #d0d8e8;
        }

        /* MODAL/DETAIL CARDS */
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.2rem;
        }

        .detail-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            padding: 1.6rem;
            transition: all 0.3s ease;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
        }

        .detail-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .detail-label {
            font-size: 0.7rem;
            color: #8892a8;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .detail-value {
            color: #f0f4f8;
            font-size: 0.93rem;
            line-height: 1.7;
            font-weight: 500;
        }

        /* PROGRESS */
        .progress-container {
            margin-bottom: 1.5rem;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.6rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .progress-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--blue), var(--blue-light));
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 6px;
        }

        /* TERMINAL */
        .terminal {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            padding: 1.2rem;
            height: 300px;
            overflow-y: auto;
            font-size: 0.8rem;
            line-height: 1.8;
            font-family: 'Courier New', monospace;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .terminal-line {
            margin-bottom: 0.4rem;
            word-break: break-all;
        }

        .log-info { color: var(--text-secondary); }
        .log-success { color: #4ade80; }
        .log-warn { color: #facc15; }
        .log-error { color: #f87171; }

        /* BADGE */
        .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #a8b5d1;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .badge.ongoing {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.12);
            color: #a8b5d1;
        }

        /* LOCATION BADGE */
        .location-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #f0f4f8;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            font-weight: 600;
            backdrop-filter: blur(20px);
            box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--glass-border);
            color: var(--text-muted);
            font-size: 0.75rem;
            letter-spacing: 2px;
            margin-top: 2rem;
        }

        /* LISTS */
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.2rem;
        }

        li {
            margin-bottom: 0.6rem;
            color: var(--text-secondary);
        }

        p {
            margin-bottom: 1rem;
            color: #b0b8cc;
        }

        code {
            background: rgba(255, 255, 255, 0.04);
            padding: 3px 8px;
            border-radius: 4px;
            color: #d0d8e8;
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-weight: 500;
        }

        strong {
            color: #f0f4f8;
            font-weight: 600;
        }

        /* SECTION TITLE */
        .section-title {
            font-size: 0.85rem;
            letter-spacing: 2px;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            font-weight: 700;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            nav {
                position: absolute;
                top: 65px;
                left: -100%;
                flex-direction: column;
                gap: 0;
                background: rgba(10, 10, 15, 0.95);
                backdrop-filter: blur(20px);
                width: 100%;
                border-bottom: 1px solid var(--glass-border);
                padding: 1rem 0;
                transition: left 0.3s ease;
                z-index: 999;
            }

            nav.active {
                left: 0;
            }

            nav a {
                padding: 12px 2rem;
                border: none;
                border-left: 3px solid transparent;
                border-radius: 0;
            }

            nav a:hover, nav a.active {
                background: rgba(255, 255, 255, 0.05);
                border-left-color: var(--blue);
            }

            header {
                padding: 1rem 1.5rem;
            }

            .container {
                padding: 1.5rem 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .detail-grid {
                grid-template-columns: 1fr;
            }

            .logo {
                font-size: 1.1rem;
            }

            .card {
                padding: 1.3rem;
            }
        }
