/* === BASE STYLES === */:root {
            --primary: #00D9FF;
            --secondary: #FF006B;
            --tertiary: #7C3AED;
            --accent: #FFA800;
            --dark: #0A0E27;
            --dark-alt: #1A1F3A;
            --light: #F8F9FF;
            --gradient-1: linear-gradient(135deg, #00D9FF 0%, #7C3AED 100%);
            --gradient-2: linear-gradient(135deg, #FF006B 0%, #FFA800 100%);
            --gradient-3: linear-gradient(180deg, rgba(10,14,39,0.95) 0%, rgba(26,31,58,0.98) 100%);
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--dark);
            color: var(--light);
            line-height: 1.7;
            font-size: 16px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--light);
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--light);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60%;
            height: 4px;
            background: var(--gradient-2);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--primary);
        }

        p {
            margin-bottom: 1.25rem;
            color: rgba(248, 249, 255, 0.85);
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--secondary);
        }

        .btn {
            padding: 16px 36px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            display: inline-block;
            min-width: 44px;
            min-height: 44px;
        }

        .btn-primary {
            background: var(--gradient-2);
            color: white;
            box-shadow: 0 8px 30px rgba(255, 0, 107, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 0, 107, 0.6);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .cta-button {
            padding: 16px 36px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            display: inline-block;
            background: var(--gradient-2);
            color: white;
            box-shadow: 0 8px 30px rgba(255, 0, 107, 0.4);
            text-decoration: none;
            min-width: 44px;
            min-height: 44px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 0, 107, 0.6);
            color: white;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .content-image {
            max-width: 100%;
            margin: 1.5rem auto;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 0.75rem;
            font-size: 0.9rem;
            color: rgba(248, 249, 255, 0.6);
            font-style: italic;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
        }

        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--dark-alt);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        table thead {
            background: var(--gradient-1);
        }

        table th {
            padding: 18px;
            font-weight: 600;
            text-align: left;
            color: white;
            font-size: 0.95rem;
        }

        table td {
            padding: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(248, 249, 255, 0.9);
        }

        table tbody tr {
            transition: background 0.3s ease;
        }

        table tbody tr:hover {
            background: rgba(0, 217, 255, 0.05);
        }

        /* === LAYOUT STYLES === */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--gradient-3);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            padding: 20px 0;
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.1rem;
        }

        .logo a {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        .logo a:hover {
            color: var(--primary);
        }

        header nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header nav .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
            padding-left: 0;
            margin-bottom: 0;
        }

        header nav .nav-menu a {
            color: var(--light);
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        header nav .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        header nav .nav-menu a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translateY(8px);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translateY(-8px);
        }

        footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            padding: 60px 0 30px;
            margin-top: 100px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-section p {
            color: rgba(248, 249, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul a {
            color: rgba(248, 249, 255, 0.7);
            transition: color 0.3s ease;
        }

        .footer-section ul a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(248, 249, 255, 0.5);
            font-size: 0.9rem;
        }

        @media (max-width: 767px) {
            header .container {
                flex-wrap: wrap;
            }

            .hamburger {
                display: flex;
            }

            header nav {
                width: 100%;
            }

            header nav .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: var(--dark-alt);
                border-radius: 12px;
                padding: 20px;
                margin-top: 15px;
            }

            header nav .nav-menu.active {
                display: flex;
            }

            header nav .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                padding: 15px 0;
            }

            header nav .nav-menu li:last-child {
                border-bottom: none;
            }

            header .cta-button {
                width: 100%;
                margin-top: 15px;
                text-align: center;
                max-width: 100%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }