/* === BASE STYLES === */:root {
            --primary: #FF2D55;
            --secondary: #FF6B35;
            --accent: #FFD23F;
            --dark: #0F0326;
            --dark-alt: #1A0B3D;
            --text: #FFFFFF;
            --text-muted: #C4B5FD;
            --gradient-primary: linear-gradient(135deg, #FF2D55 0%, #FF6B35 100%);
            --gradient-secondary: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
            --gradient-dark: linear-gradient(135deg, #0F0326 0%, #1A0B3D 100%);
            --shadow-sm: 0 2px 8px rgba(255, 45, 85, 0.15);
            --shadow-md: 0 4px 20px rgba(255, 45, 85, 0.25);
            --shadow-lg: 0 8px 40px rgba(255, 45, 85, 0.35);
        }

        * {
            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', Roboto, sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }

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

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

        h1 {
            font-size: clamp(32px, 5vw, 64px);
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(28px, 4vw, 48px);
            color: var(--text);
        }

        h3 {
            font-size: clamp(22px, 3vw, 32px);
            color: var(--text);
        }

        h4 {
            font-size: clamp(18px, 2.5vw, 24px);
            color: var(--text-muted);
        }

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

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

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

        .btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            min-height: 44px;
            min-width: 44px;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--text);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--text);
        }

        .cta-button {
            background: var(--gradient-primary);
            color: var(--text);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            min-height: 44px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--text);
        }

        .card {
            background: var(--dark-alt);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 45, 85, 0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 45, 85, 0.3);
        }

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

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

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

        table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            color: var(--text);
            border-bottom: 2px solid var(--primary);
        }

        table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 45, 85, 0.1);
            color: var(--text-muted);
        }

        table tbody tr:hover {
            background: rgba(255, 45, 85, 0.05);
        }

        .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: 8px;
        }

        .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.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
            color: var(--text-muted);
        }

        /* === LAYOUT STYLES === */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 3, 38, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 45, 85, 0.1);
            padding: 1rem 0;
        }

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

        .logo img {
            height: 50px;
            max-height: 50px;
            width: auto;
        }

        header nav .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

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

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

        header nav .nav-menu  {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding-left: 0;
            flex: none;
        }

        .nav-menu a {
            color: var(--text-muted);
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
        }

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

        footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(255, 45, 85, 0.1);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

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

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

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

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul a {
            color: var(--text-muted);
        }

        .footer-disclaimer {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 45, 85, 0.1);
            color: var(--text-muted);
            font-size: 14px;
        }

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

            .hamburger {
                display: flex;
            }

            .logo {
                margin-right: auto;
            }
            
            .nav-menu {
                display: none !important;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 3, 38, 0.98);
                flex-direction: column;
                padding: 1rem;
                gap: 0;
                list-style: none;
                box-shadow: var(--shadow-lg);
            }

            .nav-menu.active {
                display: flex !important;
            }

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 45, 85, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 1rem;
            }

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