/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0f1419;
    overflow-x: hidden;
}

a {
    color: #ff3e7f;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 1rem 2rem; */
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ff3e7f;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions a {
    text-decoration: none;
}

.login-btn {
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 127, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    color: #ff3e7f;
    background: rgba(255, 62, 127, 0.1);
}

.mobile-contact-btn {
    background: linear-gradient(45deg, #ff3e7f, #8a2be2) !important;
    color: #fff !important;
    margin: 1rem 2rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    border-bottom: none !important;
}

.mobile-contact-btn:hover {
    background: linear-gradient(45deg, #e0356f, #7a25d2) !important;
    color: #fff !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.play-btn {
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 62, 127, 0.4);
}

.learn-more-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #ff3e7f;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(255, 62, 127, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3e7f;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}


/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, #090b0f 0%, #0f1419 30%, #111521 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.about::before {
    /* subtle radial texture to give depth and differentiate the section */
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.06;
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    width: 90px;
    height: 6px;
    display: block;
    margin: 12px auto 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff3e7f, #8a2be2);
    box-shadow: 0 6px 18px rgba(138,43,226,0.12);
}

.about-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.86);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.6rem;
    line-height: 1.7;
}

/* center panel that contains the description and features so the section reads as a single component */
.about-content {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    padding: 2.25rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    /* border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 18px 48px rgba(2,6,23,0.7); */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 1.25rem;
}

.feature-item {
    /* subtle translucent card so it stands out on the darker about bg */
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
    box-shadow: 0 8px 26px rgba(2,6,23,0.7);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    box-shadow: 0 28px 64px rgba(2,6,23,0.7), 0 0 24px rgba(255,62,127,0.03);
}

.feature-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff3e7f, #8a2be2);
    color: #fff;
    box-shadow: 0 10px 28px rgba(138, 43, 226, 0.14);
    transition: transform 0.28s cubic-bezier(.2,.9,.3,1), box-shadow 0.28s ease;
}

.feature-icon i {
    font-size: 1.9rem;
}

.feature-item:hover .feature-icon {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 20px 46px rgba(138, 43, 226, 0.18), 0 0 18px rgba(255,62,127,0.06);
}

/* animate and stagger the feature items to make the section feel lively */
.feature-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}
.feature-grid .feature-item:nth-child(1) { animation-delay: 0.06s; }
.feature-grid .feature-item:nth-child(2) { animation-delay: 0.12s; }
.feature-grid .feature-item:nth-child(3) { animation-delay: 0.18s; }
.feature-grid .feature-item:nth-child(4) { animation-delay: 0.24s; }

.feature-item h4 {
    color: #ff3e7f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Top Games Section */
.top-games {
    padding: 6rem 0;
    background: #0f1419;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 62, 127, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.game-image {
    height: 200px;
    position: relative;
    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-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.play-game-btn {
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 62, 127, 0.4);
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
   text-align: center;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rtp, .volatility {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(255, 62, 127, 0.1);
    color: #ff3e7f;
    border: 1px solid rgba(255, 62, 127, 0.3);
}

.game-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Popular Games Section */
.popular-games {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
}

.games-carousel {
    overflow-x: auto;
    padding-bottom: 1rem;
}

.carousel-container {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.game-item {
    flex: 0 0 200px;
    text-align: center;
}

.game-thumb {
    width: 200px;
    height: 150px;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.game-item:hover .game-thumb {
    transform: scale(1.05);
}

.game-item h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-rtp {
    color: #ff3e7f;
    font-size: 0.9rem;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background: #0f1419;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    position: relative;
}

.benefit-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 4px;
}

.security-icon::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" /></svg>') center/contain no-repeat;
}

.fair-icon::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>') center/contain no-repeat;
}

.bonus-icon::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1" /></svg>') center/contain no-repeat;
}

.mobile-icon::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z" /></svg>') center/contain no-repeat;
}

.benefit-card h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Call to Action - redesigned full-bleed gradient */
.cta {
    padding: 7rem 0;
    /* background: linear-gradient(90deg, #ff3e7f 0%, #8a2be2 100%); */
    background: url('../images/cta-img.webp'), linear-gradient(90deg, #ff3e7f 0%, #8a2be2 100%);
    background-blend-mode: overlay;
    border-radius: 16px;
    /* margin: 6rem 2rem; */

    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2rem;
    padding: 1.8rem 2rem;
    color: #fff;
    flex-direction: column;
}

.cta-text h2 {
    font-size: 2.4rem;
    margin: 0 0 0.25rem 0;
    font-weight: 800;
}

.cta-text p {
    margin: 0;
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.cta .cta-btn {
    background: #ffffff;
    color: #ff2e72;
    border: none;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 38px rgba(255,62,127,0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta .cta-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(138,43,226,0.22);
}

.cta .cta-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #0f1419;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
     font-size: 1.05rem;
     cursor: pointer;
}

@media (max-width: 960px) {
    .cta-text h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.25rem;
    }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta .cta-btn, .cta .cta-outline { width: 100%; max-width: 420px; }
    .about-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .cta { padding: 2.25rem 0; }
    .cta-text h2 { font-size: 1.6rem; }
    .cta-text p { font-size: 0.98rem; }
}

/* Footer */
.footer {
    background: #0a0f14;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    flex: 1;
}
.age-18{
    height: 4rem !important;
}

.footer-right {
    flex: 1;
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    
}

.footer-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    transition: transform 0.3s ease;
    border: 1px solid #ff3e7f;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
}

.social-link img {
    height: 20px;
    width: 20px;
    filter: brightness(0) invert(1);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 62, 127, 0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff3e7f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ff3e7f;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    /* scale hero image for medium screens */
    .hero-image img {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .login-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    #desktop-contact-btn {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }

    /* make hero less tall on small devices and ensure padding */
    .hero {
        min-height: auto;
        padding: 3rem 0 2.5rem;
    }

    /* show image above text on small screens for better visual balance */
    .hero-image {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .hero-image img {
        width: 82%;
        max-width: 420px;
    }

    /* stack buttons and make them full width */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .play-btn, .learn-more-btn {
        width: 100%;
        max-width: 360px;
    }

    /* hide the stats on very small viewports to reduce clutter */
    .hero-stats {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .game-preview {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .slot-machine {
        width: 250px;
        height: 200px;
    }
    
    .reel {
        width: 60px;
        height: 120px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 2rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.3rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .mobile-nav a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .play-btn, .learn-more-btn {
        width: 100%;
        max-width: 250px;
    }

    .hero-image img {
        width: 100%;
        max-width: 320px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .game-thumb {
        width: 150px;
        height: 120px;
    }
    
    .carousel-container {
        gap: 1rem;
    }
    
    .game-item {
        flex: 0 0 150px;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.game-card:nth-child(2) {
    animation-delay: 0.1s;
}

.game-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f1419;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff3e7f, #8a2be2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #e0356f, #7a25d2);
}


        /* game page */

    .game-section {
        padding: 4rem 0;
        background: #0f1419;
    }

    .game-section .game-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
        text-align: center;
        margin-bottom: 3rem;
    }

    .game-container {
        position: relative;
        width: 100%;
        padding-bottom: 50.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 15px;
        border: 2px solid #00d4aa;
    }

    .game-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


          /* policy page */
        .policy-content{
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
             box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        color:#f4f4f4 ;
        border: 1px solid #00d4aa;
        }

          .policy-content h3 {
        color: #e6dede;
      
        padding-bottom: 0.5rem;
        margin-top: 1.5rem;
      }
      .policy-content p {
        margin-bottom: 1rem;
        text-align: justify;
      }
      .policy-content ul {
        list-style: disc;
        margin-left: 2rem;
        margin-bottom: 1rem;
      }
      .policy-content ul li {
        margin-bottom: 0.5rem;
      }

      /* contact us */

        .contact-section {
            padding: 6rem 0;
            background: #0f1419;
            color: #fff;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
           background: linear-gradient(45deg, #ff3e7f, #8a2be2);
            color: #0f1419;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1.1rem;
        }

        .submit-btn:hover {
            background: #00b894;
        }

        .success-message {
            display: none;
            text-align: center;
            color: #00d4aa;
            font-size: 1.2rem;
            margin-top: 1.5rem;
        }

      @media screen and (max-width: 768px) {
         .contact-form {
            padding: 1.5rem;
        
         }
      }