/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3 {
    color: #fff;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ff0000;
}

h3 {
    font-size: 1.8rem;
    color: #ff0000;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(0, 0) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

/* Header Styles


/* Hero Section */
.hero {
    height: 100vh;
            background: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-stripes.png');
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    background: #111;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Games Section */
.games {
    background: #000;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/diagmonds.png');
    opacity: 0.05;
    z-index: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.game-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.game-info h3 {
    margin-bottom: 10px;
}

/* Promotions Section */
.promotions {
    background: #111;
    position: relative;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.1;
    z-index: 0;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: #000;
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 0, 0, 0.1),
        rgba(255, 0, 0, 0.05),
        rgba(255, 0, 0, 0.025),
        transparent
    );
    transform: rotate(30deg);
    z-index: 0;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.promo-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Contact Section */
.contact {
    background: #000;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
    opacity: 0.1;
    z-index: 0;
}

.contact-container {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-info ul li:hover {
    transform: translateX(10px);
}

.contact-info ul li i {
    color: #ff0000;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-form {
    flex: 1;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: #111;
    padding: 50px 0 20px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/black-linen.png');
    opacity: 0.2;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
    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.2), transparent);
    transition: 0.5s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: #fff;
    color: #ff0000;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    width: 100%;
}

/* Unique Effects */
/* Glitter Background */
.glitter-bg {
    position: relative;
    overflow: hidden;
}

.glitter-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 255, 0.1) 0%, transparent 2%);
    background-size: 200% 200%;
    animation: glitter 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glitter {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Neon Text */
.neon-text {
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff0000,
        0 0 40px #ff0000,
        0 0 80px #ff0000;
    animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #ff0000,
            0 0 40px #ff0000,
            0 0 80px #ff0000;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Game Animations */
/* Card Dealing */
@keyframes dealCard {
    0% { transform: rotate(-180deg) translateY(-100px); opacity: 0; }
    100% { transform: rotate(0) translateY(0); opacity: 1; }
}

.card-deal {
    animation: dealCard 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Roulette Wheel */
@keyframes spinRoulette {
    0% { transform: rotate(0); }
    100% { transform: rotate(3600deg); }
}

.roulette-spin {
    animation: spinRoulette 5s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
}

/* Slot Machine */
@keyframes slotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

.slot-reel {
    animation: slotSpin 3s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
}

/* Dice Roll */
@keyframes diceRoll {
    0% { transform: rotate(0) scale(1); }
    20% { transform: rotate(180deg) scale(0.8); }
    40% { transform: rotate(360deg) scale(1.1); }
    60% { transform: rotate(540deg) scale(0.9); }
    80% { transform: rotate(720deg) scale(1.05); }
    100% { transform: rotate(900deg) scale(1); }
}

.dice-roll {
    animation: diceRoll 1.5s ease-out forwards;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.card-3d:hover {
    transform: rotateY(15deg) rotateX(10deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

/* Glowing Border */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}

.glow-border:hover::before {
    opacity: 1;
    animation: glow 20s linear infinite;
    filter: blur(5px);
}

@keyframes glow {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Button Explosion Effect */
.btn-explode {
    position: relative;
    overflow: hidden;
}

.btn-explode::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.btn-explode:hover::after {
    transform: scale(4);
    opacity: 1;
}

/* Floating Chips */
.chip {
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Particle Effect */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: gold;
    pointer-events: none;
    z-index: 10;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 20px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .neon-text {
        text-shadow: 
            0 0 3px #fff,
            0 0 6px #fff,
            0 0 12px #ff0000,
            0 0 24px #ff0000;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

     .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #000;
            padding: 15px 0;
            border-bottom: 2px solid #d00;
            position: sticky;
            top: 0;
            z-index: 100;
        }
         .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #d00;
            text-transform: uppercase;
        }
        
        .logo span {
            color: #fff;
        }   

         nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: #fff;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #d00;
        }
          .btn-signup {
            background-color: #d00;
            color: #fff;
            border: 1px solid #d00;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
 
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #000;
                flex-direction: column;
                padding: 20px;
                border-bottom: 2px solid #d00;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .hero {
                height: 60vh;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .btn-hero {
                padding: 10px 20px;
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }

        /* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  margin: 10% auto;
  padding: 30px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  border: 1px solid #00ffff;
  animation: glow 2s infinite alternate;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.modal-content h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.modal-content p {
  color: #ccc;
  font-size: 16px;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #00ffff;
  transform: scale(1.2);
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6);
  }
}
/* Update the existing CSS file with these changes */

/* Change the primary color throughout */
h2::after {
    background: var(--secondary);
}

.game-card:hover {
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.promo-card {
    border: 2px solid var(--primary);
}

/* Update animations for club theme */
@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px var(--secondary),
            0 0 40px var(--secondary),
            0 0 80px var(--secondary);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .neon-text {
        text-shadow: 
            0 0 3px #fff,
            0 0 6px #fff,
            0 0 12px var(--secondary),
            0 0 24px var(--secondary);
    }
}