/* === BASE STYLES === */:root {
            --primary: #FF3366;
            --primary-dark: #CC2952;
            --secondary: #00D9FF;
            --accent: #FFD700;
            --dark: #0A0E27;
            --dark-alt: #1A1F3A;
            --light: #F8F9FA;
            --text: #E8EAED;
            --text-muted: #A0A4B8;
            --gradient-main: linear-gradient(135deg, #FF3366 0%, #8B1A47 100%);
            --gradient-secondary: linear-gradient(135deg, #00D9FF 0%, #0088CC 100%);
            --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            --shadow-sm: 0 2px 8px rgba(255, 51, 102, 0.15);
            --shadow-md: 0 4px 20px rgba(255, 51, 102, 0.25);
            --shadow-lg: 0 10px 40px rgba(255, 51, 102, 0.35);
            --shadow-glow: 0 0 30px rgba(0, 217, 255, 0.4);
        }

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

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

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

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #FFFFFF;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            background: linear-gradient(135deg, #FF3366, #00D9FF, #FFD700);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 8s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: #FFFFFF;
            margin-bottom: 2rem;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text);
        }

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

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

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

        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-size: 1.125rem;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            min-width: 44px;
            min-height: 44px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 51, 102, 0.5);
            color: #FFFFFF;
        }

        .btn-secondary {
            background: var(--gradient-secondary);
            color: #FFFFFF;
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
            color: #FFFFFF;
        }

        .card {
            background: var(--dark-alt);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 217, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
        }

        .card:hover::before {
            opacity: 1;
        }

        .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: var(--shadow-md);
        }

        .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.875rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--dark-alt);
            border-radius: 16px;
            overflow: hidden;
        }

        thead {
            background: var(--gradient-main);
        }

        th {
            padding: 1.25rem 1rem;
            text-align: left;
            font-weight: 700;
            color: #FFFFFF;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        td {
            padding: 1.25rem 1rem;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            color: var(--text);
        }

        tbody tr {
            transition: all 0.3s ease;
        }

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

        /* === LAYOUT STYLES === */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.2);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

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

        .logo img {
            max-height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .main-nav:not(.nav-list) {
            flex: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            min-width: 44px;
            min-height: 44px;
        }

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

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .main-nav .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .main-nav .nav-list a {
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

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

        .main-nav .nav-list a:hover {
            color: var(--secondary);
        }

        .main-nav .nav-list a:hover::after {
            width: 100%;
        }

        .site-header .cta-button {
            white-space: nowrap;
            max-width: 200px;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        .site-footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(0, 217, 255, 0.2);
            padding: 3rem 0 2rem;
            margin-top: 5rem;
        }

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

        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

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

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-disclaimer {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

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

            .hamburger {
                display: flex;
            }

            .main-nav {
                width: 100%;
            }

            .main-nav .nav-list {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 1.5rem;
                transition: left 0.4s ease;
                border-right: 1px solid rgba(0, 217, 255, 0.2);
                align-items: flex-start;
            }

            .main-nav .nav-list.active {
                left: 0;
            }

            .site-header .cta-button {
                width: 100%;
                max-width: 100%;
                margin-top: 1rem;
                text-align: center;
            }
        }