/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #0d6efd;
            --secondary: #20c997;
            --accent: #ff6b6b;
            --gold: #ffd700;
            --dark: #1a1d28;
            --light: #f8f9fa;
            --gray: #6c757d;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --glow: 0 0 20px rgba(13, 110, 253, 0.3);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: titleGlow 3s infinite alternate;
        }
        
        @keyframes titleGlow {
            0% {
                text-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
            }
            100% {
                text-shadow: 0 0 20px rgba(13, 110, 253, 0.6), 0 0 30px rgba(32, 201, 151, 0.4);
            }
        }
        
        h2 {
            font-size: 2rem;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.5s ease;
        }
        
        h2.animated::after {
            width: 100%;
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
            position: relative;
        }
        
        a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        
        a:hover::after {
            width: 100%;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1.5rem;
        }
        
        th, td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid #dee2e6;
            transition: var(--transition);
        }
        
        th {
            background: linear-gradient(135deg, var(--primary), #0b5ed7);
            color: white;
            font-weight: 600;
        }
        
        tr {
            transition: var(--transition);
        }
        
        tr:hover {
            background-color: rgba(13, 110, 253, 0.05);
        }
        
        tr:nth-child(even) {
            background-color: rgba(0, 0, 0, 0.02);
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, var(--dark), #2a2f42);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
            animation: slideDown 0.5s ease;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            text-align: center;
            flex: 1;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            animation: logoGlow 3s infinite alternate, float 6s ease-in-out infinite;
        }
        
        .logo::before, .logo::after {
            content: '★';
            position: absolute;
            color: var(--gold);
            font-size: 1.2rem;
            animation: spin 10s linear infinite;
        }
        
        .logo::before {
            top: -10px;
            left: -20px;
        }
        
        .logo::after {
            bottom: -10px;
            right: -20px;
            animation: spin 8s linear infinite reverse;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes logoGlow {
            0% {
                text-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
            }
            100% {
                text-shadow: 0 0 15px rgba(13, 110, 253, 0.8), 0 0 20px rgba(32, 201, 151, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
            }
        }
        
        /* Main Navigation - Reworked Hover Animations */
        .nav-desktop {
            display: flex;
            align-items: center;
        }
        
        .nav-desktop ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-desktop li {
            margin: 0 0.5rem;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
            position: relative;
        }
        
        .nav-desktop li:nth-child(1) { animation-delay: 0.1s; }
        .nav-desktop li:nth-child(2) { animation-delay: 0.2s; }
        .nav-desktop li:nth-child(3) { animation-delay: 0.3s; }
        .nav-desktop li:nth-child(4) { animation-delay: 0.4s; }
        .nav-desktop li:nth-child(5) { animation-delay: 0.5s; }
        .nav-desktop li:nth-child(6) { animation-delay: 0.6s; }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        .nav-desktop a {
            color: white;
            padding: 0.8rem 1.2rem;
            border-radius: var(--radius);
            font-weight: 500;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: block;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid transparent;
        }
        
        /* New Hover Animation - 3D Flip Effect */
        .nav-desktop a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            z-index: -1;
            opacity: 0;
            transform: scale(0.8) rotateY(180deg);
            border-radius: var(--radius);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .nav-desktop a::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--gold));
            z-index: -2;
            border-radius: calc(var(--radius) + 2px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .nav-desktop a:hover::before {
            opacity: 1;
            transform: scale(1) rotateY(0);
        }
        
        .nav-desktop a:hover::after {
            opacity: 1;
            animation: borderRotate 2s linear infinite;
        }
        
        @keyframes borderRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .nav-desktop a:hover {
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .nav-desktop a:active {
            transform: translateY(-2px) scale(1.02);
            transition: transform 0.1s ease;
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            position: relative;
            animation: pulse 2s infinite;
        }
        
        /* Mobile Navigation */
        .nav-mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark), #2a2f42);
            z-index: 999;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 80px 0 30px;
        }
        
        .nav-mobile.active {
            transform: translateX(0);
        }
        
        .nav-mobile ul {
            list-style: none;
            text-align: center;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 0 1rem;
        }
        
        .nav-mobile li {
            margin: 1rem 0;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUpMobile 0.5s forwards;
        }
        
        .nav-mobile li:nth-child(1) { animation-delay: 0.1s; }
        .nav-mobile li:nth-child(2) { animation-delay: 0.2s; }
        .nav-mobile li:nth-child(3) { animation-delay: 0.3s; }
        .nav-mobile li:nth-child(4) { animation-delay: 0.4s; }
        .nav-mobile li:nth-child(5) { animation-delay: 0.5s; }
        .nav-mobile li:nth-child(6) { animation-delay: 0.6s; }
        .nav-mobile li:nth-child(7) { animation-delay: 0.7s; }
        .nav-mobile li:nth-child(8) { animation-delay: 0.8s; }
        .nav-mobile li:nth-child(9) { animation-delay: 0.9s; }
        .nav-mobile li:nth-child(10) { animation-delay: 1.0s; }
        .nav-mobile li:nth-child(11) { animation-delay: 1.1s; }
        .nav-mobile li:nth-child(12) { animation-delay: 1.2s; }
        .nav-mobile li:nth-child(13) { animation-delay: 1.3s; }
        .nav-mobile li:nth-child(14) { animation-delay: 1.4s; }
        .nav-mobile li:nth-child(15) { animation-delay: 1.5s; }
        .nav-mobile li:nth-child(16) { animation-delay: 1.6s; }
        .nav-mobile li:nth-child(17) { animation-delay: 1.7s; }
        .nav-mobile li:nth-child(18) { animation-delay: 1.8s; }
        .nav-mobile li:nth-child(19) { animation-delay: 1.9s; }
        .nav-mobile li:nth-child(20) { animation-delay: 2.0s; }
        
        @keyframes fadeInUpMobile {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .nav-mobile a {
            color: white;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            display: inline-block;
            transition: var(--transition);
            width: 100%;
            max-width: 300px;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .close-menu {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 1000;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .close-menu:hover {
            transform: rotate(90deg);
            color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Scrollbar styling for mobile menu */
        .nav-mobile ul::-webkit-scrollbar {
            width: 6px;
        }
        
        .nav-mobile ul::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }
        
        .nav-mobile ul::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }
        
        .nav-mobile ul::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
        
        /* Main Content */
        main {
            padding: 2rem 0;
            min-height: 70vh;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, #2a2f42 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
            animation: fadeIn 0.8s ease;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path fill="rgba(255,255,255,0.03)" d="M0,50 C150,150 350,0 500,50 C650,100 850,0 1000,50 L1000,100 L0,100 Z"/></svg>');
            background-size: cover;
            animation: wave 20s linear infinite;
        }
        
        @keyframes wave {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            margin-bottom: 1.5rem;
            font-size: 2.8rem;
            animation: float 6s ease-in-out infinite 1s;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: linear-gradient(135deg, var(--primary), #0b5ed7);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
            position: relative;
            overflow: hidden;
            transform: translateY(0);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, #0b5ed7, var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
        }
        
        .btn:active {
            transform: translateY(-1px);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), #1ba87e);
            box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
        }
        
        .btn-secondary:hover {
            background: linear-gradient(135deg, #1ba87e, var(--secondary));
            box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
        }
        
        /* Text Blocks - Main Content Sections */
        .content-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUpSection 0.8s forwards;
        }
        
        .content-section:nth-child(1) { animation-delay: 0.2s; }
        .content-section:nth-child(2) { animation-delay: 0.4s; }
        .content-section:nth-child(3) { animation-delay: 0.6s; }
        .content-section:nth-child(4) { animation-delay: 0.8s; }
        
        @keyframes fadeInUpSection {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transform: scaleY(0);
            transform-origin: top;
            animation: growHeight 1s forwards 0.5s;
        }
        
        @keyframes growHeight {
            to {
                transform: scaleY(1);
            }
        }
        
        .textobl {
            max-width: 100%;
        }
        
        .textobl h2, .textobl h3 {
            color: var(--dark);
            padding-bottom: 0.5rem;
            display: inline-block;
            position: relative;
        }
        
        .textobl h2::after, .textobl h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            animation: expandWidth 1s forwards 0.8s;
        }
        
        @keyframes expandWidth {
            to {
                width: 100%;
            }
        }
        
        /* Table Block */
        .tableblock {
            overflow-x: auto;
            margin-bottom: 2rem;
            border-radius: var(--radius);
            border: 1px solid #dee2e6;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInRight 0.6s forwards 0.4s;
        }
        
        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Animated Lists */
        .textobl ol li, .textobl ul li {
            opacity: 0;
            transform: translateX(-20px);
            animation: listItemAppear 0.5s forwards;
            position: relative;
            padding-left: 1.5rem;
            list-style-type: none;
        }
        
        .textobl ol li::before, .textobl ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
        }
        
        @keyframes listItemAppear {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Stagger the list item animations */
        .textobl ol li:nth-child(1) { animation-delay: 0.1s; }
        .textobl ol li:nth-child(2) { animation-delay: 0.2s; }
        .textobl ol li:nth-child(3) { animation-delay: 0.3s; }
        .textobl ol li:nth-child(4) { animation-delay: 0.4s; }
        .textobl ol li:nth-child(5) { animation-delay: 0.5s; }
        .textobl ol li:nth-child(6) { animation-delay: 0.6s; }
        .textobl ol li:nth-child(7) { animation-delay: 0.7s; }
        
        .textobl ul li:nth-child(1) { animation-delay: 0.6s; }
        .textobl ul li:nth-child(2) { animation-delay: 0.7s; }
        .textobl ul li:nth-child(3) { animation-delay: 0.8s; }
        .textobl ul li:nth-child(4) { animation-delay: 0.9s; }
        .textobl ul li:nth-child(5) { animation-delay: 1.0s; }
        .textobl ul li:nth-child(6) { animation-delay: 1.1s; }
        .textobl ul li:nth-child(7) { animation-delay: 1.2s; }
        
        /* Featured Games Section */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .game-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUpCard 0.6s forwards;
        }
        
        .game-card:nth-child(1) { animation-delay: 0.1s; }
        .game-card:nth-child(2) { animation-delay: 0.2s; }
        .game-card:nth-child(3) { animation-delay: 0.3s; }
        .game-card:nth-child(4) { animation-delay: 0.4s; }
        .game-card:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes fadeInUpCard {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .game-card:hover::before {
            transform: scaleX(1);
        }
        
        .game-card-content {
            padding: 1.5rem;
        }
        
        .game-card h3 {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        /* Sidebar */
        aside {
            background: linear-gradient(135deg, var(--light), #e9ecef);
            padding: 2rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 100px;
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRightSidebar 0.8s forwards 0.5s;
        }
        
        @keyframes slideInRightSidebar {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        aside h3 {
            color: var(--dark);
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        aside h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }
        
        /* Fixed Promo Box */
        .promo-box {
            background: linear-gradient(135deg, var(--primary) 0%, #0b5ed7 100%);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
            animation: floatPromo 4s ease-in-out infinite;
        }
        
        @keyframes floatPromo {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        .promo-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite linear;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        
        /* Fixed Promo Code - Centered and Visible */
        .promo-code {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            margin: 1rem auto;
            display: block;
            border: 2px dashed rgba(255,255,255,0.3);
            animation: pulseCode 1.5s infinite;
            width: fit-content;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            box-sizing: border-box;
        }
        
        @keyframes pulseCode {
            0%, 100% {
                transform: scale(1);
                border-color: rgba(255,255,255,0.3);
            }
            50% {
                transform: scale(1.05);
                border-color: var(--gold);
            }
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark), #2a2f42);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-section {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUpFooter 0.6s forwards;
        }
        
        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes fadeInUpFooter {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section li {
            margin-bottom: 0.8rem;
            opacity: 0;
            transform: translateX(-20px);
            animation: listItemFooter 0.5s forwards;
        }
        
        .footer-section li:nth-child(1) { animation-delay: 0.1s; }
        .footer-section li:nth-child(2) { animation-delay: 0.2s; }
        .footer-section li:nth-child(3) { animation-delay: 0.3s; }
        .footer-section li:nth-child(4) { animation-delay: 0.4s; }
        .footer-section li:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes listItemFooter {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        
        .footer-section a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeIn 1s forwards 0.5s;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #0b5ed7);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            animation: bounceTop 2s infinite;
        }
        
        @keyframes bounceTop {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, #0b5ed7, var(--primary));
            transform: scale(1.1);
        }
        
        /* Animated Background Elements */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .bg-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(13, 110, 253, 0.1);
            border-radius: 50%;
        }
        
        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 1001;
            transition: width 0.1s ease;
        }
        
        /* Typewriter Effect */
        .typewriter {
            overflow: hidden;
            border-right: 3px solid var(--primary);
            white-space: nowrap;
            margin: 0 auto;
        }
        
        /* Main Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        
        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(13, 110, 253, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
            }
            
            .logo-container {
                margin-bottom: 1rem;
            }
            
            .nav-desktop {
                width: 100%;
                justify-content: center;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .main-layout {
                grid-template-columns: 1fr;
            }
            
            aside {
                position: static;
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 50%;
                right: 1rem;
                transform: translateY(-50%);
            }
            
            .logo-container {
                text-align: left;
                padding-left: 3rem;
            }
            
            .nav-mobile {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .promo-code {
                font-size: 1.5rem;
                padding: 0.6rem 1.2rem;
                letter-spacing: 1px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 3rem 1rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }
            
            .content-section {
                padding: 1rem;
            }
            
            .tableblock {
                font-size: 0.9rem;
            }
            
            th, td {
                padding: 0.5rem;
            }
            
            .promo-code {
                font-size: 1.3rem;
                padding: 0.5rem 1rem;
                letter-spacing: 1px;
                max-width: 90%;
            }
        }