/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #ff0033;
            --secondary-color: #0a0a2a;
            --accent-color: #00ffcc;
            --gold-color: #ffd700;
            --dark-color: #0a0a0a;
            --light-color: #f0f0f0;
            --text-color: #333;
            --text-light: #777;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --border-radius: 12px;
            --glow: 0 0 20px var(--accent-color);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 51, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundPulse 15s ease-in-out infinite alternate;
        }
        
        @keyframes backgroundPulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.8rem;
            color: var(--gold-color);
            text-align: center;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            animation: textGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
            100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6); }
        }
        
        h2 {
            font-size: 2.2rem;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            border-radius: 2px;
            animation: lineGrow 2s ease-out;
        }
        
        @keyframes lineGrow {
            0% { width: 0; }
            100% { width: 100px; }
        }
        
        h3 {
            font-size: 1.7rem;
            color: var(--gold-color);
            background: linear-gradient(45deg, var(--gold-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--light-color);
        }
        
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(255, 0, 51, 0.5);
        }
        
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
            color: var(--light-color);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.6s;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-5px) scale(1.05) rotateX(10deg);
            box-shadow: 0 15px 30px rgba(255, 0, 51, 0.4), 0 0 30px rgba(0, 255, 204, 0.3);
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
        }
        
        .btn:active {
            transform: translateY(-2px) scale(0.98);
        }
        
        .btn-secondary {
            background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
        }
        
        .btn-secondary:hover {
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
        }
        
        /* Floating Particles Animation */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 50%;
            animation: floatParticle 20s linear infinite;
            opacity: 0.7;
        }
        
        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Header & Navigation */
        header {
            background: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            height: 100px;
            display: flex;
            align-items: center;
            overflow: visible !important;
        }
        
        /* Fix for logo container - prevents overflow beyond header */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            height: 100%;
            overflow: visible;
        }
        
        /* 3D Logo Styles - CONTAINED WITHIN HEADER */
        .logo-container {
            perspective: 1000px;
            transform-style: preserve-3d;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            overflow: visible;
            z-index: 1001;
        }
        
        .logo-3d {
            display: flex;
            flex-direction: column;
            align-items: center;
            transform-style: preserve-3d;
            animation: logoFloat 6s ease-in-out infinite;
            position: relative;
            z-index: 1;
            transform-origin: center center;
            overflow: visible;
            height: auto;
            max-height: 80px;
        }
        
        /* Logo animation stays within bounds */
        @keyframes logoFloat {
            0%, 100% { 
                transform: translateY(0) rotateX(0); 
            }
            50% { 
                transform: translateY(-5px) rotateX(5deg); 
            }
        }
        
        .logo-text-3d {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 
                0 1px 0 #ccc,
                0 2px 0 #c9c9c9,
                0 3px 0 #bbb,
                0 4px 0 #b9b9b9,
                0 5px 0 #aaa,
                0 6px 1px rgba(0,0,0,.1),
                0 0 5px rgba(0,0,0,.1),
                0 1px 3px rgba(0,0,0,.3),
                0 3px 5px rgba(0,0,0,.2),
                0 5px 10px rgba(0,0,0,.25),
                0 10px 10px rgba(0,0,0,.2),
                0 20px 20px rgba(0,0,0,.15),
                0 0 10px var(--primary-color),
                0 0 20px var(--primary-color);
            position: relative;
            animation: textFire 3s ease-in-out infinite alternate;
            line-height: 1;
        }
        
        @keyframes textFire {
            0% { 
                text-shadow: 
                    0 1px 0 #ccc,
                    0 2px 0 #c9c9c9,
                    0 3px 0 #bbb,
                    0 4px 0 #b9b9b9,
                    0 5px 0 #aaa,
                    0 6px 1px rgba(0,0,0,.1),
                    0 0 5px rgba(0,0,0,.1),
                    0 1px 3px rgba(0,0,0,.3),
                    0 3px 5px rgba(0,0,0,.2),
                    0 5px 10px rgba(0,0,0,.25),
                    0 10px 10px rgba(0,0,0,.2),
                    0 20px 20px rgba(0,0,0,.15),
                    0 0 10px var(--primary-color),
                    0 0 20px var(--primary-color);
            }
            100% { 
                text-shadow: 
                    0 1px 0 #ccc,
                    0 2px 0 #c9c9c9,
                    0 3px 0 #bbb,
                    0 4px 0 #b9b9b9,
                    0 5px 0 #aaa,
                    0 6px 1px rgba(0,0,0,.1),
                    0 0 5px rgba(0,0,0,.1),
                    0 1px 3px rgba(0,0,0,.3),
                    0 3px 5px rgba(0,0,0,.2),
                    0 5px 10px rgba(0,0,0,.25),
                    0 10px 10px rgba(0,0,0,.2),
                    0 20px 20px rgba(0,0,0,.15),
                    0 0 15px var(--primary-color),
                    0 0 30px var(--primary-color),
                    0 0 40px var(--primary-color);
            }
        }
        
        .logo-subtitle-3d {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: var(--accent-color);
            letter-spacing: 3px;
            margin-top: 3px;
            text-shadow: 
                0 0 5px var(--accent-color),
                0 0 10px var(--accent-color);
            animation: subtitlePulse 2s ease-in-out infinite alternate;
            line-height: 1;
        }
        
        @keyframes subtitlePulse {
            0% { opacity: 0.7; text-shadow: 0 0 5px var(--accent-color); }
            100% { opacity: 1; text-shadow: 0 0 10px var(--accent-color), 0 0 15px var(--accent-color); }
        }
        
        /* Logo sparkle effect - CONTAINED */
        .logo-sparkle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: sparkle 1.5s linear infinite;
            opacity: 0;
            z-index: 2;
        }
        
        @keyframes sparkle {
            0% { transform: scale(0) rotate(0deg); opacity: 0; }
            50% { transform: scale(1) rotate(180deg); opacity: 1; }
            100% { transform: scale(0) rotate(360deg); opacity: 0; }
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .nav-menu li a {
            font-weight: 500;
            position: relative;
            padding: 8px 0;
            color: var(--light-color);
            font-family: 'Poppins', sans-serif;
        }
        
        .nav-menu li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-menu li a:hover:after {
            width: 100%;
        }
        
        .nav-menu li a:hover {
            color: var(--accent-color);
            text-shadow: 0 0 15px var(--accent-color);
        }
        
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--accent-color);
            cursor: pointer;
            transition: var(--transition);
            padding: 10px;
            border-radius: 5px;
        }
        
        .hamburger:hover {
            color: var(--primary-color);
            transform: rotate(90deg);
            text-shadow: 0 0 15px var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(10, 10, 42, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid rgba(255, 215, 0, 0.2);
            margin-top: 0;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 0, 51, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 204, 0.2) 0%, transparent 50%);
            animation: heroBackground 20s ease-in-out infinite alternate;
        }
        
        @keyframes heroBackground {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero h1 {
            color: var(--gold-color);
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: heroTitleEnter 1.5s ease-out, titleFloat 4s ease-in-out infinite 1.5s;
        }
        
        @keyframes heroTitleEnter {
            0% { 
                opacity: 0; 
                transform: translateY(-50px) scale(0.8); 
                filter: blur(10px);
            }
            100% { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
                filter: blur(0);
            }
        }
        
        @keyframes titleFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.5s both;
            color: var(--light-color);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 30px;
            animation: fadeInUp 1s ease 0.8s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Main Content */
        main {
            padding: 80px 0;
        }
        
        /* Text Blocks - Different Styles */
        .text-block {
            background: rgba(10, 10, 42, 0.7);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: blockAppear 1s ease-out;
            border: 1px solid rgba(255, 215, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .text-block:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: 0.8s;
        }
        
        .text-block:hover:before {
            left: 100%;
        }
        
        @keyframes blockAppear {
            0% { 
                opacity: 0; 
                transform: translateY(30px) scale(0.95); 
            }
            100% { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }
        
        .text-block:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 0, 51, 0.2);
            border-color: rgba(0, 255, 204, 0.3);
        }
        
        .text-block-primary {
            border-left: 5px solid var(--primary-color);
        }
        
        .text-block-secondary {
            border-left: 5px solid var(--accent-color);
        }
        
        .text-block-accent {
            border-left: 5px solid var(--gold-color);
        }
        
        .tableblock {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.2);
            animation: tableSlideIn 1s ease-out;
        }
        
        @keyframes tableSlideIn {
            0% { 
                opacity: 0; 
                transform: translateX(-50px); 
            }
            100% { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        
        th {
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 18px;
            text-align: left;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        th:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        th:hover:after {
            left: 100%;
        }
        
        td {
            padding: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-color);
            transition: var(--transition);
        }
        
        tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.05);
        }
        
        tr {
            transition: var(--transition);
        }
        
        tr:hover {
            background: rgba(0, 255, 204, 0.1);
            transform: translateX(5px);
        }
        
        /* Animated Lists */
        .text-block ul, .text-block ol {
            position: relative;
            overflow: hidden;
        }
        
        .text-block ul li, .text-block ol li {
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            position: relative;
            padding-left: 10px;
        }
        
        .text-block ul li:before, .text-block ol li:before {
            content: '';
            position: absolute;
            left: -5px;
            top: 50%;
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
            transform: translateY(-50%);
            animation: bulletPulse 2s infinite;
        }
        
        @keyframes bulletPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
            50% { box-shadow: 0 0 0 10px rgba(0, 255, 204, 0); }
        }
        
        .text-block ul li:nth-child(1) { animation-delay: 0.1s; }
        .text-block ul li:nth-child(2) { animation-delay: 0.2s; }
        .text-block ul li:nth-child(3) { animation-delay: 0.3s; }
        .text-block ul li:nth-child(4) { animation-delay: 0.4s; }
        .text-block ul li:nth-child(5) { animation-delay: 0.5s; }
        
        .text-block ol li:nth-child(1) { animation-delay: 0.1s; }
        .text-block ol li:nth-child(2) { animation-delay: 0.2s; }
        .text-block ol li:nth-child(3) { animation-delay: 0.3s; }
        .text-block ol li:nth-child(4) { animation-delay: 0.4s; }
        .text-block ol li:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Promo Cards Section */
        .promo-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            margin: 80px 0;
        }
        
        .promo-card {
            background: rgba(10, 10, 42, 0.8);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 215, 0, 0.1);
            transform-style: preserve-3d;
            perspective: 1000px;
            animation: cardFloat 6s ease-in-out infinite;
        }
        
        @keyframes cardFloat {
            0%, 100% { transform: translateY(0) rotateX(0); }
            50% { transform: translateY(-15px) rotateX(5deg); }
        }
        
        .promo-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .promo-card:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        .promo-card:hover {
            transform: translateY(-20px) scale(1.05) rotateY(10deg);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 51, 0.4);
            border-color: rgba(0, 255, 204, 0.5);
            animation-play-state: paused;
        }
        
        .promo-header {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .promo-header: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: 0.6s;
        }
        
        .promo-card:hover .promo-header:before {
            left: 100%;
        }
        
        .promo-body {
            padding: 30px;
        }
        
        .promo-body p {
            color: var(--light-color);
        }
        
        /* Sidebar */
        aside {
            background: rgba(10, 10, 42, 0.7);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 50px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 215, 0, 0.1);
            animation: slideInLeft 1s ease-out;
        }
        
        @keyframes slideInLeft {
            0% { 
                opacity: 0; 
                transform: translateX(-50px); 
            }
            100% { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }
        
        .sidebar-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--accent-color);
            border-bottom: 2px solid rgba(0, 255, 204, 0.3);
            padding-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .sidebar-menu {
            list-style: none;
        }
        
        .sidebar-menu li {
            margin-bottom: 12px;
            position: relative;
            overflow: hidden;
        }
        
        .sidebar-menu li a {
            display: block;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: var(--transition);
            color: var(--light-color);
            border-left: 3px solid transparent;
        }
        
        .sidebar-menu li a:hover {
            background: rgba(0, 255, 204, 0.1);
            padding-left: 30px;
            border-left: 3px solid var(--accent-color);
            transform: translateX(10px);
            color: var(--accent-color);
        }
        
        /* Footer */
        footer {
            background: rgba(5, 5, 20, 0.95);
            color: white;
            padding: 80px 0 40px;
            border-top: 2px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 90%, rgba(255, 0, 51, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(0, 255, 204, 0.1) 0%, transparent 50%);
            animation: footerBackground 15s ease-in-out infinite alternate;
        }
        
        @keyframes footerBackground {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-links h3 {
            color: var(--accent-color);
            font-size: 1.4rem;
            margin-bottom: 25px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #aaa;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
            text-shadow: 0 0 10px var(--accent-color);
        }
        
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.3rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .social-links a: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: 0.5s;
        }
        
        .social-links a:hover:before {
            left: 100%;
        }
        
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-10px) rotate(360deg);
            box-shadow: 0 10px 20px rgba(255, 0, 51, 0.4);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 
                0 5px 20px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(255, 0, 51, 0.3);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            transform-style: preserve-3d;
            animation: buttonPulse 2s infinite;
        }
        
        @keyframes buttonPulse {
            0%, 100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 51, 0.3); }
            50% { box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 51, 0.5); }
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            transform: translateY(-10px) scale(1.1) rotate(180deg);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(0, 255, 204, 0.5);
            animation-play-state: paused;
        }
        
        /* Floating Coins Animation */
        .floating-coins {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .coin {
            position: absolute;
            width: 30px;
            height: 30px;
            background: radial-gradient(circle at 30% 30%, var(--gold-color), #daa520);
            border-radius: 50%;
            animation: coinFloat 20s linear infinite;
            opacity: 0.7;
            box-shadow: 0 0 10px var(--gold-color);
        }
        
        @keyframes coinFloat {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(720deg);
                opacity: 0;
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .promo-cards {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .logo-text-3d {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 100px);
                background: rgba(10, 10, 42, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                z-index: 999;
                border-top: 1px solid rgba(255, 215, 0, 0.2);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
                opacity: 0;
                transform: translateY(20px);
                animation: menuItemFade 0.5s ease forwards;
            }
            
            .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
            .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
            .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
            .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
            .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
            .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
            
            @keyframes menuItemFade {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 10px;
            }
            
            .logo-text-3d {
                font-size: 1.6rem;
            }
            
            .logo-subtitle-3d {
                font-size: 0.7rem;
                letter-spacing: 2px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .text-block {
                padding: 25px;
            }
            
            .promo-cards {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .logo-text-3d {
                font-size: 1.4rem;
            }
            
            header {
                height: 90px;
            }
        }