
        :root {
            --dark-bg: #0a0a12;
            --card-bg: #131425;
            --accent-purple: #8a2be2;
            --accent-cyan: #00f3ff;
            --accent-pink: #ff00f7;
            --accent-gold: #ffd700;
            --text-primary: #ffffff;
            --text-secondary: #b8b8d2;
            --success: #00ff9d;
            --border-radius: 16px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --neon-glow: 0 0 15px rgba(138, 43, 226, 0.7);
            --neon-glow-cyan: 0 0 15px rgba(0, 243, 255, 0.7);
            --neon-glow-pink: 0 0 15px rgba(255, 0, 247, 0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, var(--dark-bg), #0f0c29, #1a1a2e);
            color: var(--text-secondary);
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 50% 50%, rgba(255, 0, 247, 0.07) 0%, transparent 35%);
            z-index: -2;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--accent-cyan);
            animation: float 15s infinite linear;
        }

        .particle:nth-child(2n) {
            background: var(--accent-pink);
        }

        .particle:nth-child(3n) {
            background: var(--accent-purple);
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 1;
            }
            25% {
                transform: translateY(-20px) translateX(20px) rotate(90deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-40px) translateX(0) rotate(180deg);
                opacity: 0.6;
            }
            75% {
                transform: translateY(-20px) translateX(-20px) rotate(270deg);
                opacity: 0.8;
            }
            100% {
                transform: translateY(0) translateX(0) rotate(360deg);
                opacity: 1;
            }
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(19, 20, 37, 0.92);
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            padding: 0.8rem 8%;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
            letter-spacing: -0.5px;
            position: relative;
        }

        .logo::after {
            content: "ZONE";
            position: absolute;
            bottom: -8px;
            right: -5px;
            font-size: 0.7em;
            color: var(--accent-gold);
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }

        nav a:hover, nav a.active {
            color: var(--accent-cyan);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: var(--transition);
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
            z-index: -1;
            transition: var(--transition);
            transform: scaleX(0);
            transform-origin: right;
        }

        .btn:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .btn-login {
            background: transparent;
            border: 2px solid var(--accent-purple);
            color: var(--accent-purple);
        }

        .btn-login:hover {
            color: white;
            box-shadow: var(--neon-glow);
        }

        .btn-register {
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
            color: white;
            box-shadow: var(--neon-glow);
        }

        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(138, 43, 226, 0.9);
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--accent-cyan), var(--accent-pink));
            color: white;
            box-shadow: var(--neon-glow-cyan);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 243, 255, 0.8);
        }

        .btn-glow {
            position: relative;
        }

        .btn-glow:hover {
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7); }
            70% { box-shadow: 0 0 0 12px rgba(138, 43, 226, 0); }
            100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 8%;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 650px;
            z-index: 10;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 5.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            from { text-shadow: 0 0 10px rgba(138, 43, 226, 0.7), 0 0 20px rgba(0, 243, 255, 0.7); }
            to { text-shadow: 0 0 15px rgba(255, 0, 247, 0.8), 0 0 25px rgba(138, 43, 226, 0.9); }
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: var(--text-primary);
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }

        .hero-img {
            position: absolute;
            right: -5%;
            top: 50%;
            transform: translateY(-50%);
            width: 55%;
            max-width: 900px;
            z-index: 5;
            animation: floatHero 8s ease-in-out infinite;
        }

        @keyframes floatHero {
            0%, 100% { transform: translateY(-50%) rotate(0deg); }
            25% { transform: translateY(-55%) rotate(0.5deg); }
            75% { transform: translateY(-45%) rotate(-0.5deg); }
        }

        .card-deck {
            position: absolute;
            right: 10%;
            top: 15%;
            display: flex;
            gap: 8px;
            animation: cardFloat 6s ease-in-out infinite;
        }

        .card {
            width: 40px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            position: relative;
            transform: rotate(10deg);
        }

        .card:nth-child(2) { transform: rotate(5deg); background: rgba(138, 43, 226, 0.3); }
        .card:nth-child(3) { transform: rotate(0deg); background: rgba(0, 243, 255, 0.3); }
        .card:nth-child(4) { transform: rotate(-5deg); background: rgba(255, 0, 247, 0.3); }
        .card:nth-child(5) { transform: rotate(-10deg); background: rgba(255, 215, 0, 0.3); }

        @keyframes cardFloat {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(-15px, 15px); }
            50% { transform: translate(0, 30px); }
            75% { transform: translate(15px, 15px); }
        }

        .dice {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-family: 'Orbitron', sans-serif;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            animation: diceRoll 12s linear infinite;
        }

        .dice-1 { top: 20%; left: 15%; animation-delay: 0s; }
        .dice-2 { top: 70%; left: 25%; animation-delay: -4s; }
        .dice-3 { top: 40%; right: 15%; animation-delay: -8s; }

        @keyframes diceRoll {
            0% { transform: rotate(0deg) translate(0, 0); }
            25% { transform: rotate(90deg) translate(15px, -15px); }
            50% { transform: rotate(180deg) translate(0, -30px); }
            75% { transform: rotate(270deg) translate(-15px, -15px); }
            100% { transform: rotate(360deg) translate(0, 0); }
        }

        /* Section Base Styles */
        section {
            padding: 100px 8%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            color: var(--text-primary);
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-pink), transparent);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--accent-cyan);
            margin-top: 15px;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.15rem;
            line-height: 1.8;
            position: relative;
            z-index: 10;
        }

        .about-content p {
            margin-bottom: 20px;
            position: relative;
        }

        .about-content p::before {
            content: '"';
            position: absolute;
            left: -25px;
            top: -15px;
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            color: rgba(138, 43, 226, 0.2);
            line-height: 1;
        }

        /* Games Section */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(138, 43, 226, 0.3);
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 243, 255, 0.3);
            border-color: var(--accent-cyan);
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 45%, rgba(138, 43, 226, 0.1), transparent 55%);
            transform: translateX(-100%);
            transition: var(--transition);
            z-index: 1;
        }

        .game-card:hover::before {
            transform: translateX(100%);
        }

        .game-img {
            height: 160px;
            background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .game-img::after {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
            animation: rotate 8s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .game-icon {
            font-size: 4.5rem;
            color: var(--accent-cyan);
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.7);
        }

        .game-details {
            padding: 20px;
            text-align: center;
        }

        .game-details h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--text-primary);
            font-weight: 600;
        }

        .play-btn {
            margin-top: 12px;
            padding: 8px 25px;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--neon-glow);
        }

        .play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 0, 247, 0.8);
        }

        /* Why Choose Us Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }

        .feature-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 35px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(138, 43, 226, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
            z-index: -1;
            transition: var(--transition);
            opacity: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
            transform: scale(1.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.2rem;
            background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(0, 243, 255, 0.2));
            border: 2px solid var(--accent-purple);
            position: relative;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(10deg);
            border-color: var(--accent-cyan);
            box-shadow: var(--neon-glow-cyan);
        }

        .feature-card:nth-child(2) .feature-icon { border-color: var(--accent-cyan); }
        .feature-card:nth-child(3) .feature-icon { border-color: var(--accent-pink); }
        .feature-card:nth-child(4) .feature-icon { border-color: var(--accent-gold); }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        /* Latest Betting Section */
        .betting-ticker {
            background: rgba(19, 20, 37, 0.85);
            border: 1px solid rgba(138, 43, 226, 0.4);
            border-radius: 50px;
            padding: 15px 30px;
            margin-top: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .ticker-container {
            display: flex;
            animation: scroll-left 60s linear infinite;
        }

        @keyframes scroll-left {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .bet-item {
            display: flex;
            align-items: center;
            margin: 0 30px;
            min-width: 250px;
            padding: 10px 20px;
            border-radius: 16px;
            background: rgba(30, 30, 50, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bet-item:nth-child(odd) {
            background: rgba(40, 30, 60, 0.7);
        }

        .winner-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent-gold), #ffaa00);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .bet-details span {
            display: block;
        }

        .bet-details .player {
            font-weight: 600;
            color: var(--text-primary);
        }

        .bet-details .game {
            font-size: 0.85rem;
            color: var(--accent-cyan);
        }

        .bet-details .amount {
            font-weight: 700;
            color: var(--accent-gold);
            font-size: 1.1rem;
        }

        /* Register Section */
        .register-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 50px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(138, 43, 226, 0.4);
        }

        .register-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 243, 255, 0.07) 0%, transparent 70%);
            z-index: -1;
        }

        .register-form .form-group {
            margin-bottom: 25px;
        }

        .register-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .register-form input,
        .register-form select,
        .register-form textarea {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(30, 30, 50, 0.7);
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            transition: var(--transition);
        }

        .register-form input:focus,
        .register-form select:focus,
        .register-form textarea:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.2);
        }

        .register-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 8px;
        }

        .checkbox-group input {
            width: auto;
            margin-top: 4px;
        }

        .checkbox-group a {
            color: var(--accent-cyan);
            text-decoration: underline;
            transition: var(--transition);
        }

        .checkbox-group a:hover {
            color: var(--accent-pink);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .success-message {
            text-align: center;
            padding: 40px;
            background: linear-gradient(45deg, rgba(0, 30, 20, 0.9), rgba(0, 50, 40, 0.95));
            border-radius: var(--border-radius);
            display: none;
        }

        .success-message.show {
            display: block;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .success-icon {
            font-size: 5rem;
            color: var(--success);
            margin-bottom: 20px;
            animation: bounce 1s ease infinite alternate;
        }

        @keyframes bounce {
            from { transform: translateY(0); }
            to { transform: translateY(-15px); }
        }

        .success-message h3 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .success-message p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonials Section */
        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            padding: 30px 0;
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-family: 'Orbitron', sans-serif;
            font-size: 8rem;
            color: rgba(0, 243, 255, 0.1);
            line-height: 1;
            z-index: -1;
        }

        .testimonial-content {
            font-size: 1.25rem;
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 10;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
            margin-bottom: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 2rem;
            color: white;
            border: 3px solid var(--accent-gold);
        }

        .author-name {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--text-primary);
            margin-top: 5px;
        }

        .author-title {
            color: var(--accent-cyan);
            font-weight: 500;
        }

        .rating {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin: 15px 0;
            letter-spacing: 3px;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active {
            background: var(--accent-cyan);
            transform: scale(1.3);
        }

        /* Footer */
        footer {
            background: rgba(10, 10, 18, 0.95);
            padding: 80px 8% 30px;
            border-top: 1px solid rgba(138, 43, 226, 0.3);
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            display: inline-block;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40%;
            height: 3px;
            background: var(--accent-cyan);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            margin-top: 20px;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            padding: 5px 0;
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
            transform: translateX(5px);
        }

        .footer-about p {
            margin-top: 20px;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.3rem;
            transition: var(--transition);
            color: var(--text-secondary);
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--accent-purple);
            transform: translateY(-3px);
            color: white;
            box-shadow: var(--neon-glow);
        }

        .newsletter-form .form-group {
            margin-bottom: 20px;
        }

        .newsletter-form input {
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(30, 30, 50, 0.7);
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form .btn {
            width: 100%;
            padding: 15px;
            margin-top: 10px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .copyright a {
            color: var(--accent-cyan);
            text-decoration: underline;
            transition: var(--transition);
        }

        .copyright a:hover {
            color: var(--accent-pink);
        }

        /* Modals */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 18, 0.92);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--card-bg);
            width: 90%;
            max-width: 700px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            position: relative;
            max-height: 85vh;
            overflow-y: auto;
            border: 1px solid rgba(138, 43, 226, 0.4);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .modal.active .modal-content {
            transform: translateY(0);
            opacity: 1;
        }

        .modal-header {
            padding: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            color: var(--text-primary);
        }

        .close-modal {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .close-modal:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-pink);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
            line-height: 1.7;
        }

        .modal-body h4 {
            color: var(--text-primary);
            margin: 20px 0 10px;
            font-size: 1.5rem;
        }

        .modal-body p {
            margin-bottom: 15px;
        }

        .modal-body ul {
            padding-left: 25px;
            margin-bottom: 15px;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 4.5rem;
            }
            
            .hero-img {
                width: 50%;
                right: 0;
            }
            
            nav ul {
                gap: 1.5rem;
            }
            
            nav a {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --border-radius: 14px;
            }
            
            header {
                padding: 1rem 5%;
            }
            
            header.scrolled {
                padding: 0.7rem 5%;
            }
            
            nav ul {
                display: none;
            }
            
            .hero {
                padding: 0 5%;
                text-align: center;
                min-height: auto;
                padding-top: 120px;
                padding-bottom: 80px;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .hero h1 {
                font-size: 3.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-img {
                display: none;
            }
            
            .card-deck, .dice {
                display: none;
            }
            
            section {
                padding: 70px 5%;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
            .register-container {
                padding: 30px 25px;
            }
            
            .games-grid, .features-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .bet-item {
                min-width: 200px;
                margin: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.9rem;
            }
            
            .logo::after {
                font-size: 0.6em;
                bottom: -6px;
                right: -3px;
            }
            
            .auth-buttons {
                gap: 0.5rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .game-img {
                height: 130px;
            }
            
            .feature-card {
                padding: 25px 20px;
            }
            
            .feature-icon {
                width: 65px;
                height: 65px;
                font-size: 1.8rem;
            }
            
            .register-container, .success-message {
                padding: 25px 20px;
            }
            
            .modal-content {
                width: 95%;
                margin: 20px;
            }
        }
    