@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* 1. Reset and responsive box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent layout shifts during page load */
.hero-stats .stat-number {
    min-width: 60px; /* Prevent width changes during counting */
    display: inline-block;
}

.hero-visual {
    min-height: 300px; /* Prevent height changes */
}

/* 2. Prevent unwanted horizontal scroll */
html, body {
    margin: 0;
    padding: 0;
    font-family: Ubuntu;
    text-align: center;
    padding-top: 90px; /* Reduced to minimize impact on other sections */
    color: #E4E4E4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

/* 3. Responsive typography */
body {
    font-size: 16px;
    line-height: 1.5;
}

/* 4. Make sure images and videos scale properly */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 5. Mobile-friendly sidebar and overlay */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #0f1b2b;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    z-index: 9998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

/* 6. Buttons spacing and tap target */
button,
a {
    min-height: 44px;
    padding: 10px 16px;
    text-align: center;
    display: inline-block;
}

/* 7. Ensure all sections have proper width */
section,
header,
footer,
div {
    width: 100%;
    overflow-x: hidden;
}

/* 8. Responsive grid fallback */
.games-grid,
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.game-card,
.info-card {
    flex: 1 1 100%;
    max-width: 95vw;
}

/* 9. Prevent sticky headers from covering content */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* 10. Improve accessibility */
.auth-login-btn,
.auth-register-btn,
.register-button,
.login-button {
    font-size: 1rem;
    border-radius: 8px;
    background: #f9d342;
    color: #000;
}

/* Professional paragraph styling for better readability */
p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 1.2em;
    text-justify: inter-word;
    word-spacing: 0.05em;
    letter-spacing: 0.02em;
}

/* Center-align specific data titles */
p.title {
    text-align: center;
    margin-bottom: 0.5em;
    text-justify: auto;
    word-spacing: normal;
    letter-spacing: normal;
}

/* Enhanced paragraph styling for different contexts */
.section-subtitle,
.section-description,
.data-description,
.join-subtitle,
.faq-subtitle,
.category-description,
.pokie-description p,
.cta-main p,
.cta-content p,
.benefit-text p,
.quote,
.faq-answer p {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 1.5em;
    text-justify: inter-word;
    word-spacing: 0.08em;
    letter-spacing: 0.03em;
    font-size: 1.05em;
}

/* Hero section subtitle special styling */
.subtitle {
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 2em;
    text-justify: inter-word;
    word-spacing: 0.1em;
    letter-spacing: 0.04em;
    font-size: 1.1em;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial quotes special styling */
.quote {
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 1.8em;
    text-justify: inter-word;
    word-spacing: 0.06em;
    letter-spacing: 0.03em;
    font-style: italic;
    font-size: 1.05em;
}

/* FAQ answers special styling */
.faq-answer p {
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 1.5em;
    text-justify: inter-word;
    word-spacing: 0.07em;
    letter-spacing: 0.03em;
    font-size: 1.05em;
}

/* Game category descriptions */
.category-description {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 1.8em;
    text-justify: inter-word;
    word-spacing: 0.08em;
    letter-spacing: 0.03em;
    font-size: 1.05em;
}

/* CTA paragraphs */
.cta-main p,
.cta-content p {
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 2em;
    text-justify: inter-word;
    word-spacing: 0.08em;
    letter-spacing: 0.03em;
    font-size: 1.1em;
}

/* Benefit card descriptions */
.benefit-text p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 1.2em;
    text-justify: inter-word;
    word-spacing: 0.06em;
    letter-spacing: 0.02em;
    font-size: 1em;
}

/* Mobile responsive paragraph adjustments */
@media (max-width: 768px) {
    p {
        text-align: justify;
        line-height: 1.7;
        margin-bottom: 1em;
        text-justify: inter-word;
        word-spacing: 0.03em;
        letter-spacing: 0.01em;
        font-size: 0.95em;
    }
    
    .section-subtitle,
    .section-description,
    .data-description,
    .join-subtitle,
    .faq-subtitle,
    .category-description,
    .pokie-description p,
    .cta-main p,
    .cta-content p,
    .benefit-text p,
    .quote,
    .faq-answer p {
        text-align: justify;
        line-height: 1.8;
        margin-bottom: 1.3em;
        text-justify: inter-word;
        word-spacing: 0.05em;
        letter-spacing: 0.02em;
        font-size: 1em;
    }
    
    .subtitle {
        text-align: justify;
        line-height: 1.9;
        margin-bottom: 1.5em;
        text-justify: inter-word;
        word-spacing: 0.06em;
        letter-spacing: 0.02em;
        font-size: 1em;
        max-width: 95%;
    }
    
    .quote {
        text-align: justify;
        line-height: 1.8;
        margin-bottom: 1.5em;
        text-justify: inter-word;
        word-spacing: 0.04em;
        letter-spacing: 0.02em;
        font-size: 1em;
    }
    
    .faq-answer p {
        text-align: justify;
        line-height: 1.8;
        margin-bottom: 1.3em;
        text-justify: inter-word;
        word-spacing: 0.05em;
        letter-spacing: 0.02em;
        font-size: 1em;
    }
    
    .category-description {
        text-align: justify;
        line-height: 1.8;
        margin-bottom: 1.5em;
        text-justify: inter-word;
        word-spacing: 0.06em;
        letter-spacing: 0.02em;
        font-size: 1em;
    }
    
    .cta-main p,
    .cta-content p {
        text-align: justify;
        line-height: 1.9;
        margin-bottom: 1.5em;
        text-justify: inter-word;
        word-spacing: 0.06em;
        letter-spacing: 0.02em;
        font-size: 1em;
    }
    
    .benefit-text p {
        text-align: justify;
        line-height: 1.7;
        margin-bottom: 1em;
        text-justify: inter-word;
        word-spacing: 0.04em;
        letter-spacing: 0.01em;
        font-size: 0.95em;
    }
    
    /* Mobile responsive center-align for data titles */
    p.title {
        text-align: center;
        margin-bottom: 0.5em;
        text-justify: auto;
        word-spacing: normal;
        letter-spacing: normal;
        font-size: 1em;
    }
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/images/dee-back2.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.notice {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, #f7e48b, #c99c2e); /* gold gradient */
    position: fixed;
    top: 70px; /* Position below the header */
    z-index: 9998; /* Below header but above other content */
    height: 40px; /* Fixed height for the notice */
    display: flex;
    align-items: center;
}

.notice p {
    display: inline-block;
    white-space: nowrap;
    color: black;
    font-size: 16px;
    margin: 5px;
    font-weight: 500;
    animation: slide-left 30s linear infinite;
    padding-left: 5%;
}

@media (max-width: 768px) {
    .notice {
        top: 70px; /* Keep below header on mobile */
        z-index: 9998;
        height: 35px; /* Slightly smaller on mobile */
    }
    
    .notice p {
        font-size: 12px;
        margin: 3px;
        padding-left: 3%;
    }
}


@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Clean Header CSS - Fixed and Working */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
  background: #001f4d;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-left, .header-center, .header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-left {
  justify-content: flex-start;
  flex: 1;
}

.header-center {
  justify-content: center;
  flex: 1;
}

.header-right {
  justify-content: flex-end;
  flex: 1;
  gap: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px;
  transition: color 0.3s;
}

.menu-toggle:hover {
  color: #FFD700;
}

.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.login-button {
  background: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.login-button:hover {
  background: #fff;
  color: #001f4d;
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.register-button {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.register-button:hover {
  background: linear-gradient(45deg, #FFA500, #FFD700);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.partnership-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership-button img {
  max-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    min-height: 60px;
    height: auto;
    gap: 0.5rem;
  }
  
  .header-left, .header-center, .header-right {
    display: flex;
    align-items: center;
    min-width: 0;
  }
  
  .header-left {
    flex: 0 0 auto;
    justify-content: flex-start;
    order: 1;
  }
  
  .header-center {
    flex: 1;
    justify-content: center;
    order: 2;
  }
  
  .header-right {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0.5rem;
    order: 3;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    max-height: 36px;
    width: auto;
  }
  
  .mobile-logo {
    display: block;
    max-height: 36px;
    width: auto;
  }
  
  .desktop-logo {
    display: none;
  }
  
  .login-button, .register-button {
    padding: 6px 12px;
    font-size: 13px;
    white-space: nowrap;
    max-width: 100%;
  }
  
  .partnership-button img {
    max-height: 32px;
  }
}

/* Ensure body has padding for fixed header */
body {
  padding-top: 90px; /* Reduced to minimize impact on other sections */
}

/* Ensure overlays don't block header */
.background-img,
.sidebar-overlay {
  z-index: 0 !important;
  pointer-events: none;
}

.sidebar-overlay.active {
  pointer-events: auto;
  z-index: 1500 !important;
}

.logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
}

.mobile-logo {
    display: none;
}

.desktop-logo {
    display: block;
}

/* Mobile logo display */
@media (max-width: 768px) {
    .mobile-logo {
        display: block !important;
        max-height: 36px;
        width: auto;
    }
    
    .desktop-logo {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-logo {
        max-height: 28px;
    }
}

@media (max-width: 360px) {
    .mobile-logo {
        max-height: 24px;
    }
}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: white;
    display: block;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #0f1b2b;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    transform: translateX(0%);
}

.sidebar-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
}

.close-btn {
    position: absolute;
    padding: 10px;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #e4e4e4;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s;
}

.close-btn:hover {
    color: red;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar li {
    margin: 10px 0;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    transition: background-color 0.3s;
}

.sidebar li a {
    color: white;
    text-decoration: none;
    display: block;
}

.sidebar li a i {
    margin-right: 8px;
    font-size: 18px;
}

.sidebar li:hover {
    background-color: #444;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
}

.auth-login-btn,
.auth-register-btn,
.login-button,
.register-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    background-color: #f9d342;
    color: #000;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.auth-login-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
}

.auth-login-btn:hover {
    background-color: #f7e48b;
    color: black;
}

.auth-register-btn {
    background: linear-gradient(45deg, #f7e48b, #c99c2e);
    padding: 10px 20px;
    color: black;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
}

.auth-register-btn:hover {
    background: linear-gradient(45deg, #c99c2e, #f7e48b);
}

.hero-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 40px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Prevent layout shift */
    box-sizing: border-box;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/main-background.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.badge-icon {
    font-size: 16px;
    animation: iconBounce 1s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-line {
    display: block;
    animation: titleSlideIn 1s ease-out;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e4e4e4;
    margin-bottom: 40px;
    text-align: left;
    animation: descriptionFadeIn 1.5s ease-out 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-stats .stat-item {
    text-align: center;
    animation: statSlideIn 1s ease-out 1s both;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: actionsSlideIn 1s ease-out 1.5s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    animation: iconFloat 2s ease-in-out infinite;
}

.hero-visual {
    flex: 1;
    position: relative;
    max-width: 600px;
    margin-top: -30px;
    transform: translateY(-20px);
    z-index: 10;
}

/* Simple Carousel Styles */
.simple-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: scale(1.05);
}

.carousel-img.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-img.active {
    opacity: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 215, 0, 0.8);
    color: #1a1a2e;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffd700;
    transform: scale(1.2);
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  max-height: 300px;
  border-radius: 12px;
  position: relative;
  background: rgba(255, 0, 0, 0.1); /* Debug: red background to see container */
  min-height: 300px; /* Ensure minimum height */
}

.carousel-track {
  display: flex;
  width: 500%; /* 5 slides */
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  background: rgba(0, 0, 255, 0.1); /* Debug: blue background to see track */
  min-height: 300px; /* Ensure track has height */
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  background: rgba(255, 255, 0, 0.1); /* Debug: yellow background to see slides */
  min-height: 300px; /* Ensure slides have height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(0, 255, 0, 0.1); /* Debug: green background to see images */
  border: 2px solid blue; /* Debug: blue border to see image boundaries */
}

/* Carousel Navigation Dots */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffd700;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.dot:hover {
  background: rgba(255, 215, 0, 0.8);
  transform: scale(1.1);
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: rgba(255, 215, 0, 0.8);
  color: #1a1a2e;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 20%; right: 15%; animation-delay: 1s; }
.card-3 { bottom: 30%; left: 5%; animation-delay: 2s; }
.card-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.card-5 { top: 50%; left: 50%; animation-delay: 4s; }

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

@keyframes badgeGlow {
    0% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6); }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes titleSlideIn {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 50px rgba(255, 215, 0, 0.8); }
}

@keyframes descriptionFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes statSlideIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes actionsSlideIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes tickerGlow {
    0% { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
    100% { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
}

.carousel-slide img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-slide img:active {
    transform: scale(0.98);
}



.register {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.register-btn {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999;
    background: linear-gradient(45deg, #ffe761, #ff9e00);
    padding: 12px 40px;
    color: black;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 10px #ffae00,
        0 0 20px #ffae00;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.register-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px #ffae00,
        0 0 30px #ffae00;
    background: linear-gradient(45deg, #ff9e00, #ffe761);
}


.register-btn:active {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.register-btn:focus {
    outline: none;
}

@keyframes pop-effect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.register-btn {
    animation: pop-effect 1.5s infinite;
}

.data {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 2rem 1rem;
}

.data-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.data-left {
    flex: 1;
    text-align: left;
    max-width: 400px;
}

.data-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    text-align: left;
    animation: titleSlideIn 2s ease-out;
    position: relative;
    overflow: hidden;
}

.data-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: titleShimmer 3s ease-in-out infinite;
}

.data-description {
    font-size: 1.4rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
    animation: descriptionFadeIn 2.5s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes titleSlideIn {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    50% {
        transform: translateX(20px);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes titleShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.data-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

/* Pie Chart Styles */
.pie-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(15, 52, 96, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 183, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 183, 0.1);
    min-height: 350px;
    justify-content: center;
}

.pie-chart {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, #00ffb7 0%, #00d4ff 50%, #00ffb7 100%),
        conic-gradient(
            #00ffb7 0deg 342deg,
            #444 342deg 360deg
        );
    animation: donutRotate 4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 0 40px rgba(0, 255, 183, 0.5),
        0 0 80px rgba(0, 255, 183, 0.3),
        inset 0 0 30px rgba(0, 255, 183, 0.2);
    border: 4px solid rgba(0, 255, 183, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #0f3460, #1a1a2e);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 255, 183, 0.3);
    border: 2px solid rgba(0, 255, 183, 0.3);
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: linear-gradient(145deg, #0f3460, #1a1a2e);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(0, 255, 183, 0.3);
    border: 3px solid rgba(0, 255, 183, 0.4);
    animation: centerFloat 3s ease-in-out infinite;
    z-index: 10;
}

.pie-center .percentage {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00ffb7;
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 255, 183, 0.6);
    animation: numberPulse 2.5s ease-in-out infinite;
    font-family: 'Arial', sans-serif;
}

.pie-center .label {
    font-size: 1rem;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    margin-top: 0.3rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    animation: labelGlow 3s ease-in-out infinite;
}

.subtitle {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
}

@keyframes donutRotate {
    0% {
        transform: rotate(-360deg) scale(0.2);
        opacity: 0;
    }
    20% {
        transform: rotate(-270deg) scale(0.5);
        opacity: 0.4;
    }
    40% {
        transform: rotate(-180deg) scale(0.8);
        opacity: 0.7;
    }
    60% {
        transform: rotate(-90deg) scale(1.1);
        opacity: 0.9;
    }
    80% {
        transform: rotate(-45deg) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes centerFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
        box-shadow: 
            inset 0 0 20px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(0, 255, 183, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px);
        box-shadow: 
            inset 0 0 20px rgba(0, 0, 0, 0.5),
            0 0 35px rgba(0, 255, 183, 0.5);
    }
}

@keyframes numberPulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 255, 183, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 255, 183, 0.9), 0 0 40px rgba(0, 255, 183, 0.4);
        transform: scale(1.08);
    }
}

@keyframes labelGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        opacity: 0.9;
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        opacity: 1;
    }
}

.pie-chart:hover {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 0 50px rgba(0, 255, 183, 0.7),
        0 0 100px rgba(0, 255, 183, 0.4),
        inset 0 0 40px rgba(0, 255, 183, 0.3);
    border-color: rgba(0, 255, 183, 0.8);
}

/* Graph Chart Styles */
.graph-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(15, 52, 96, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 183, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 183, 0.1);
    min-height: 350px;
    justify-content: center;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    width: 120px;
    min-width: 100px;
    color: #fff;
    font-family: 'Arial', sans-serif;
    flex: 1 1 100px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f9d342;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ccc;
}

.stats-icon {
    font-size: 3rem;
    color: #00ffb7;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.stats-content {
    text-align: center;
    z-index: 2;
}

.stats-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffb7;
    text-shadow: 0 0 15px rgba(0, 255, 183, 0.6);
}

.plus {
    font-size: 1.5rem;
    color: #00ffb7;
    font-weight: bold;
    animation: plusBlink 1.5s ease-in-out infinite;
}

.stats-label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stats-trend {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.trend-up {
    color: #00ffb7;
    font-weight: bold;
    font-size: 1rem;
    animation: trendGlow 2s ease-in-out infinite;
}

.trend-period {
    color: #ccc;
    font-size: 0.9rem;
}



@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(0, 255, 183, 0.8);
    }
}

@keyframes plusBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes trendGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(0, 255, 183, 0.4);
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 255, 183, 0.8);
    }
}



.pie-chart::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffb7, #00d4ff, #00ffb7, #00ffb7);
    z-index: -1;
    opacity: 0;
    animation: borderGlow 4s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.08) rotate(180deg);
    }
}

.data-item {
    flex: 1;
    min-width: 200px;
    margin: 0.5rem;
    padding: 1rem;
    background: #0f3460;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease-in-out;
}

.data-item:hover {
    transform: translateY(-8px);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #f9d342;
}

.emoji-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.title {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.value {
    font-size: 2rem;
    font-weight: bold;
    color: #00ffb7;
}

/* Live Jackpot Styles */
.live-jackpot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.live-indicator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 68, 68, 0.3);
    animation: livePulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

.jackpot-counter {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00ffb7;
    text-shadow: 0 0 15px rgba(0, 255, 183, 0.6);
    animation: jackpotGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.jackpot-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.jackpot-particles::before,
.jackpot-particles::after {
    content: '💰';
    position: absolute;
    font-size: 1rem;
    animation: particleFloat 3s linear infinite;
    opacity: 0;
}

.jackpot-particles::before {
    left: 20%;
    animation-delay: 0s;
}

.jackpot-particles::after {
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
    }
}

@keyframes jackpotGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 255, 183, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 255, 183, 0.9), 0 0 40px rgba(0, 255, 183, 0.4);
        transform: scale(1.02);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) rotate(360deg);
        opacity: 0;
    }
}

.section-heading {
    padding: 2rem 1rem 1rem;
    text-align: justify;
    background: #111927;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    animation: titleGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.3;
}

.subtitle {
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 2em;
    text-justify: inter-word;
    word-spacing: 0.1em;
    letter-spacing: 0.04em;
    font-size: 1.1em;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Timer Section */
.countdown-section {
    padding: 40px 20px;
    margin: 30px auto;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    animation: countdownGlow 3s ease-in-out infinite alternate;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
}

.countdown-header {
    text-align: center;
    margin-bottom: 30px;
}

.countdown-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: titlePulse 2s ease-in-out infinite;
}

.countdown-subtitle {
    font-size: 1.2rem;
    color: #E4E4E4;
    margin: 0;
    opacity: 0.9;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(145deg, rgba(4, 2, 85, 0.9), rgba(1, 1, 52, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: countdownItemFloat 2s ease-in-out infinite;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.8);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    margin-bottom: 5px;
    animation: numberGlow 1.5s ease-in-out infinite alternate;
}

.countdown-label {
    font-size: 0.9rem;
    color: #E4E4E4;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: separatorBlink 1s ease-in-out infinite;
}

.countdown-message {
    text-align: center;
    margin-top: 20px;
}

.countdown-message p {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: messagePulse 2s ease-in-out infinite;
}

/* Countdown Animations */
@keyframes countdownGlow {
    0% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    }
    100% {
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

@keyframes countdownItemFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes numberGlow {
    0% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
    100% {
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
    }
}

@keyframes separatorBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes messagePulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes emojiBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

@keyframes emojiGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15);
        filter: brightness(1.3) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes emojiPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.subtitle {
    font-size: 1.1rem;
    color: #ccc;
    text-align: justify;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.count {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.count.visible {
    opacity: 1;
    transform: translateY(0);
}

.casino-info-section {
    padding: 3rem 1rem;
    background: #0f1b2b;
    color: #fff;
}

.casino-info-section .container {
    text-align: center;
    margin-bottom: 3rem;
}

.casino-info-section .section-title {
    font-size: 2.5rem;
    color: #00ffb7;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

.casino-info-section .section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    background: #162940;
    padding: 1.5rem;
    border-radius: 1rem;
    flex: 1 1 300px;
    max-width: 360px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ffb7;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.3rem;
}

.info-list strong {
    font-weight: 600;
    color: #f9d342;
}



.hero-showcase {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

/* Animated Background */
.hero-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 20%; right: 15%; animation-delay: 1s; }
.card-3 { bottom: 30%; left: 5%; animation-delay: 2s; }
.card-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.card-5 { top: 50%; left: 50%; animation-delay: 4s; }

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

/* Main Content */
.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left Side */
.showcase-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.showcase-title {
    font-size: 4rem;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.title-line {
    display: block;
    font-weight: 300;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.showcase-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #E4E4E4;
    text-align: justify;
    max-width: 500px;
}

.showcase-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #E4E4E4;
    margin-top: 5px;
    opacity: 0.8;
}

.showcase-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn.primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.action-btn.secondary {
    background: transparent;
    color: #E4E4E4;
    border: 2px solid #E4E4E4;
}

.action-btn.secondary:hover {
    background: #E4E4E4;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 228, 228, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Right Side */
.showcase-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-showcase {
    width: 100%;
    max-width: 500px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 2rem;
}

.feature-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.feature-item h3 {
    color: #FFD700;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.feature-item p {
    color: #E4E4E4;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Bottom CTA */
.showcase-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.showcase-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cta-content p {
    font-size: 1.1rem;
    color: #E4E4E4;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.cta-btn:not(.outline) {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.cta-btn:not(.outline):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-btn.outline {
    background: transparent;
    color: #E4E4E4;
    border: 2px solid #E4E4E4;
}

.cta-btn.outline:hover {
    background: #E4E4E4;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 228, 228, 0.3);
}

.why-choose .logo {
    max-width: 500px;
}

.why-choose h1 {
    color: #fecc00;
}

.why-choose p {
    color: #e4e4e4;
    padding-right: 0;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(228, 228, 228, 0.1);
}

.why-choose-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.why-title {
    font-size: 2.5rem;
    color: #00ffb7;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.why-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.why-choose-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background-color: black;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cardSlideIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover span {
    animation: emojiPulse 0.6s ease-in-out;
}

.benefit-card h4 {
    margin: 0 0 12px;
    color: #ffd700;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-card h4 span {
    font-size: 24px;
    animation: emojiFloat 3s ease-in-out infinite;
}

.benefit-card p {
    margin: 0;
    color: #e4e4e4;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.benefit-card p span {
    font-size: 18px;
    animation: emojiGlow 4s ease-in-out infinite;
    margin-top: 2px;
}

.benefit-card p {
    margin: 0;
    color: #e4e4e4;
    font-size: 16px;
    line-height: 1.5;
}

.benefit-card .icon {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 15px;
}

.games-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f1b2b 0%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 183, 0.03) 50%, transparent 100%);
    animation: gamesGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.games-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.games-section .section-title {
    font-size: 2.5rem;
    color: #00ffb7;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

.games-section .section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.games-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-badge {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.1), rgba(0, 204, 147, 0.05));
    border: 1px solid rgba(0, 255, 183, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: statBadgeSlideIn 0.8s ease-out;
}

.stat-badge:nth-child(1) { animation-delay: 0.1s; }
.stat-badge:nth-child(2) { animation-delay: 0.2s; }
.stat-badge:nth-child(3) { animation-delay: 0.3s; }

.stat-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 183, 0.4);
    box-shadow: 0 10px 25px rgba(0, 255, 183, 0.2);
}

.stat-badge .stat-number {
    display: block;
    color: #00ffb7;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.stat-badge .stat-label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffb7;
    margin-bottom: 0.75rem;
    animation: titleSlideIn 1.5s ease-out;
}

.section-title span {
    animation: emojiBounce 2s ease-in-out infinite;
    display: inline-block;
    margin-right: 8px;
}

.section-description {
    font-size: 1.05rem;
    color: #e0e0e0;
    line-height: 1.6;
    animation: descriptionFadeIn 2s ease-out;
}

.section-description span {
    animation: emojiGlow 3s ease-in-out infinite;
    display: inline-block;
    margin: 0 2px;
}

.section-description {
    font-size: 1.05rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.games-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.game-category-card {
    background: linear-gradient(145deg, #162940, #1a1a2e);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 255, 183, 0.1);
    animation: cardSlideIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: calc(33.333% - 1rem);
}

.game-category-card:nth-child(1) { animation-delay: 0.4s; }
.game-category-card:nth-child(2) { animation-delay: 0.5s; }
.game-category-card:nth-child(3) { animation-delay: 0.6s; }

.game-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 183, 0.3);
}

.game-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 183, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-category-card:hover::before {
    opacity: 1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    position: relative;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #00ffb7, #00cc93);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 255, 183, 0.3);
    animation: emojiFloat 3s ease-in-out infinite;
}

.category-emoji {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(0, 255, 183, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s ease-in-out infinite;
}

.category-badge {
    background: rgba(0, 255, 183, 0.2);
    color: #00ffb7;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.category-content {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.4rem;
    color: #00ffb7;
    margin: 0 0 0.8rem 0;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(0, 255, 183, 0.3);
}

.category-description {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    text-align: justify;
    hyphens: auto;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-item {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.15), rgba(0, 255, 183, 0.05));
    color: #00ffb7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 183, 0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 255, 183, 0.1);
}

.feature-item:hover {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.25), rgba(0, 255, 183, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 183, 0.2);
}

.feature-icon {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.feature-text {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.category-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.category-stats .stat-item {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    color: #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.category-stats .stat-item:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.category-stats .stat-label {
    display: block;
    color: #00ffb7;
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
}

.category-stats .stat-value {
    display: block;
    color: #00ffb7;
    font-size: 0.9rem;
    font-weight: bold;
}

.category-action {
    text-align: center;
}

.play-now-btn {
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.play-now-btn:hover::before {
    left: 100%;
}

.play-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(145deg, #f7931e, #ff6b35);
}

.btn-text {
    font-weight: bold;
}

.btn-icon {
    font-size: 1rem;
}

.games-cta {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.1), rgba(0, 204, 147, 0.05));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(0, 255, 183, 0.2);
    position: relative;
    overflow: hidden;
}

.games-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 183, 0.05) 50%, transparent 100%);
    animation: ctaGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: #00ffb7;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    line-height: 1.3;
    font-weight: bold;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.05rem;
    margin-bottom: 2.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: justify;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    position: relative;
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-bonus {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.cta-secondary-btn {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.2), rgba(0, 204, 147, 0.1));
    color: #00ffb7;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid rgba(0, 255, 183, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.3), rgba(0, 204, 147, 0.2));
    transform: translateY(-2px);
    color: #00ffb7;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 255, 183, 0.3);
}

/* New Join Section Styles */
.join-section {
    padding: 4rem 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.join-container {
    position: relative;
    background: linear-gradient(135deg, rgba(4, 2, 85, 0.95), rgba(1, 1, 52, 0.95));
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.join-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.join-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.1) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: particleFloat 20s linear infinite;
}

.join-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: glowRotate 10s linear infinite;
}

.join-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.join-header {
    text-align: center;
    margin-bottom: 3rem;
}

.join-title {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.join-subtitle {
    font-size: 1.1rem;
    color: #E4E4E4;
    opacity: 0.9;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text h4 {
    font-size: 1rem;
    color: #FFD700;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.benefit-text p {
    font-size: 0.8rem;
    color: #E4E4E4;
    margin: 0;
    opacity: 0.8;
}

.join-cta {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.cta-main h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.cta-main p {
    font-size: 1.1rem;
    color: #E4E4E4;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.cta-secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #FFD700;
    padding: 1rem 2rem;
    border: 2px solid #FFD700;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-secondary-btn:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.join-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.6);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #E4E4E4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E4E4E4;
    font-size: 0.9rem;
}

.guarantee-icon {
    color: #00FF88;
    font-size: 1.1rem;
    animation: checkPulse 2s ease-in-out infinite;
}

/* Join Section Animations */
@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes benefitSlideIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes contentGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.footer {
    color: #e4e4e4;
    padding: 20px 0;
    text-align: center;
    background: rgba(15, 27, 43, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    margin-top: 50px;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
  
.footer p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.chat-button {
    position: fixed;
    bottom: 100px;
    right: 40px;
    background-color: #fecc00;
    color: black;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-button:hover {
    background-color: #ffd700;
    transform: scale(1.05);
}


@media (max-width: 768px) {
    body {
        padding-top: 60px;
        font-size: 14px;
        line-height: 1.5;
        overflow-x: hidden;
    }

    header {
        padding: 8px 10px;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(4, 2, 85, 0.95);
        backdrop-filter: blur(10px);
    }

    .header-left {
        padding-left: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
    }
    
    .header-center {
        display: none;
    }
    
    .header-right {
        padding-right: 5px;
        flex: 1;
        justify-content: flex-end;
    }

    .logo {
        max-width: 80px;
    }
    
    .mobile-logo {
        display: block;
        max-width: 60px;
    }
    
    .desktop-logo {
        display: none;
    }
    
    /* Mobile sidebar optimizations */
    .sidebar {
        width: 85%;
        max-width: 300px;
        padding: 15px;
    }
    
    .sidebar-logo {
        max-width: 110px;
        padding: 15px;
    }
    
    .sidebar ul {
        margin-top: 35px;
    }
    
    .sidebar li {
        font-size: 17px;
        padding: 10px;
        margin: 8px 0;
    }
    
    .auth-buttons {
        gap: 12px;
        margin-top: 25px;
    }
    
    .auth-login-btn,
    .auth-register-btn {
        padding: 10px 18px;
        font-size: 15px;
    }
    
    .close-btn {
        top: 10px;
        right: 10px;
        font-size: 20px;
        padding: 8px;
    }

    .hero-container {
        padding: 20px 15px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-stats {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .hero-stats .stat-item {
        min-width: 80px;
        padding: 10px 8px;
    }

    .hero-stats .stat-number {
        font-size: 1.3rem;
    }

    .hero-stats .stat-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-visual {
        max-width: 100%;
        margin-top: 0;
        transform: none;
        order: 2;
    }

    .carousel-container {
        max-height: 200px;
    }
    .carousel-slide img {
        max-height: 200px;
        height: 200px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }

    .floating-card {
        font-size: 1.2rem;
        display: none;
    }

    .data {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .data-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .data-left {
        max-width: 100%;
        text-align: center;
        order: 2;
    }
    
    .data-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .data-description {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .data-right {
        max-width: 100%;
        order: 1;
    }

    .data-item {
        flex: 1;
        min-width: 80px;
        margin: 5px;
    }

    .data-item .title {
        font-size: 14px;
        text-wrap: wrap;
        line-height: 1.3;
    }
    
    .data-item .value {
        font-size: 16px;
    }

    /* Mobile optimizations for data animated section */
    .data-right {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .pie-chart-container {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 1rem;
        min-height: 250px;
    }

    .pie-chart {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        position: relative;
        border-radius: 50%;
        background: 
            radial-gradient(circle at 30% 30%, #00ffb7 0%, #00d4ff 50%, #00ffb7 100%),
            conic-gradient(
                #00ffb7 0deg 342deg,
                #444 342deg 360deg
            );
        animation: donutRotate 4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 
            0 0 30px rgba(0, 255, 183, 0.5),
            0 0 60px rgba(0, 255, 183, 0.3),
            inset 0 0 20px rgba(0, 255, 183, 0.2);
        border: 3px solid rgba(0, 255, 183, 0.4);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-style: preserve-3d;
    }

    .pie-chart::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100px;
        height: 100px;
        background: linear-gradient(145deg, #0f3460, #1a1a2e);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 
            inset 0 0 15px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(0, 255, 183, 0.3);
        border: 2px solid rgba(0, 255, 183, 0.3);
    }

    .pie-chart::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90px;
        height: 90px;
        background: linear-gradient(145deg, #0f3460, #1a1a2e);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 
            inset 0 0 10px rgba(0, 0, 0, 0.5),
            0 0 8px rgba(0, 255, 183, 0.2);
        border: 1px solid rgba(0, 255, 183, 0.2);
    }

    .pie-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        background: linear-gradient(145deg, #0f3460, #1a1a2e);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 
            inset 0 0 15px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(0, 255, 183, 0.3);
        border: 2px solid rgba(0, 255, 183, 0.4);
        animation: centerFloat 3s ease-in-out infinite;
        z-index: 10;
    }

    .pie-center .percentage {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .pie-center .label {
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .stats-container {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 1.5rem;
        min-height: 280px;
    }

    .stats-icon {
        font-size: 2.5rem;
    }

    .counter {
        font-size: 2rem;
    }

    .plus {
        font-size: 1.2rem;
    }

    .stats-label {
        font-size: 1rem;
    }

    .trend-up {
        font-size: 0.9rem;
    }

    .trend-period {
        font-size: 0.8rem;
    }

    .data-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
        min-width: auto;
        width: 100%;
        max-width: 320px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .data-item .title {
        font-size: 1.1rem;
        text-wrap: wrap;
        word-break: break-word;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .data-item .value {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .data-item .icon {
        text-align: center;
        display: block;
        margin: 0 auto 0.5rem auto;
    }

    .data-item .emoji-icon {
        text-align: center;
        display: block;
        margin: 0 auto 0.5rem auto;
        font-size: 2rem;
    }

    .live-jackpot {
        padding: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .live-indicator {
        margin-top: 0.5rem;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
        text-align: center;
        align-self: center;
    }

    .jackpot-counter {
        font-size: 1.8rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .jackpot-particles {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .jackpot-particles {
        width: 100%;
        height: 100%;
    }

    .jackpot-particles::before,
    .jackpot-particles::after {
        width: 4px;
        height: 4px;
    }

    .section-heading {
        padding: 2rem 1rem 1rem;
        text-align: justify;
        background: #111927;
        color: white;
        max-width: 1200px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .main-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
        animation: titleGlow 3s ease-in-out infinite alternate;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
        text-align: center;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 20px;
        text-justify: inter-word;
        word-spacing: 0.06em;
        letter-spacing: 0.02em;
        max-width: 100%;
    }

    .casino-info-section {
        padding: 2rem 1rem;
    }

    .casino-info-section .container {
        margin-bottom: 2rem;
    }

    .casino-info-section .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .casino-info-section .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .info-grid {
        gap: 1rem;
        padding: 0 10px;
    }

    .info-card {
        flex: 1 1 100%;
        max-width: 95vw;
        margin: 0 auto;
    }

    .info-card h2 {
        font-size: 1.2rem;
    }

    .info-list li {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .info-list strong {
        align-self: flex-end;
    }

    .hero-showcase {
        min-height: auto;
        padding: 60px 15px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .showcase-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .showcase-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .showcase-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .showcase-cta {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Header buttons mobile responsive */
    .header-right {
        justify-content: flex-end;
        gap: 3px;
        flex: 1;
        max-width: 180px;
    }
    
    .header-auth-buttons {
        gap: 2px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }
    
    .header-login-btn,
    .header-register-btn {
        padding: 3px 6px;
        font-size: 8px;
        min-width: 35px;
        text-align: center;
        white-space: nowrap;
    }
    
    .partner-logo {
        max-width: 30px;
        margin-left: 1px;
        flex-shrink: 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .games-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-header {
        padding: 0 8px;
        gap: 0.25rem;
        min-height: 50px;
    }
    
    .header-right {
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .header-auth-buttons {
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .header-login-btn,
    .header-register-btn {
        padding: 4px 6px;
        font-size: 11px;
        white-space: nowrap;
        min-width: auto;
    }
    
    .partner-logo {
        max-width: 24px;
        margin-left: 0;
    }
    
    .logo img {
        max-height: 28px;
    }
    
    .mobile-logo {
        max-height: 28px;
    }
    
    .partnership-button img {
        max-height: 24px;
    }
}

/* Extra extra small mobile devices */
@media (max-width: 360px) {
    .main-header {
        padding: 0 6px;
        gap: 0.2rem;
        min-height: 45px;
    }
    
    .header-right {
        gap: 0.2rem;
        flex-wrap: wrap;
    }
    
    .header-auth-buttons {
        gap: 0.2rem;
        flex-wrap: wrap;
    }
    
    .header-login-btn,
    .header-register-btn {
        padding: 3px 5px;
        font-size: 10px;
        white-space: nowrap;
        min-width: auto;
    }
    
    .partner-logo {
        max-width: 20px;
        margin-left: 0;
    }
    
    .logo img {
        max-height: 24px;
    }
    
    .mobile-logo {
        max-height: 24px;
    }
    
    .partnership-button img {
        max-height: 20px;
    }
    
    .mobile-logo {
        max-width: 50px;
    }
    
    /* Mobile sidebar optimizations */
    .sidebar {
        width: 85%;
        max-width: 280px;
        padding: 15px;
    }
    
    .sidebar-logo {
        max-width: 100px;
        padding: 15px;
    }
    
    .sidebar ul {
        margin-top: 30px;
    }
    
    .sidebar li {
        font-size: 16px;
        padding: 8px;
        margin: 8px 0;
    }
    
    .auth-buttons {
        gap: 10px;
        margin-top: 20px;
    }
    
    .auth-login-btn,
    .auth-register-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .close-btn {
        top: 8px;
        right: 8px;
        font-size: 18px;
        padding: 6px;
    }
}

    .why-choose .logo {
        max-width: 400px;
    }

    .why-choose h3 {
        padding-right: 0px;
        font-size: 16px;
    }

    .why-choose-left {
        text-align: center;
    }

    .why-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .why-choose p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .why-choose-right {
        grid-template-columns: 1fr;
    }

    .benefit-card h4 {
        font-size: 18px;
    }
    
    

    .games-section {
        padding: 40px 0;
    }

    .games-section img {
        max-width: 100px;
    }
  
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

    .trending-pokies {
        padding: 2rem 1rem;
    }

    .trending-pokies .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .trending-pokies .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .pokies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .pokie-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 95vw;
    }

    .pokie-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .pokie-icon {
        width: 60px;
        height: 60px;
    }

    .pokie-info h3 {
        font-size: 1.3rem;
    }

    .pokie-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pokie-features {
        justify-content: center;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    .feature {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 15px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
  
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
  
    .game-card {
        padding: 20px;
        margin: 0 auto;
        max-width: 95vw;
    }
  
    .game-title {
        font-size: 18px;
    }
  
    .game-description {
        font-size: 14px;
    }



    /* FAQ Mobile Responsive */
    .faq-section {
        padding: 2rem 1rem;
        margin: 20px 0;
    }

    .faq-container {
        border-radius: 15px;
    }

    .faq-content {
        padding: 1rem;
    }

    .faq-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .faq-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .faq-search {
        margin-bottom: 20px;
    }

    .faq-search-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .faq-categories {
        gap: 8px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        flex: 1;
        min-width: 0;
    }

    .category-icon {
        font-size: 0.9rem;
    }

    .faq-grid {
        gap: 12px;
        margin: 20px 0;
    }

    .faq-question-container {
        padding: 12px;
        gap: 8px;
        border-radius: 10px;
    }

    .faq-icon {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .faq-meta {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }

    .faq-category {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    .faq-time {
        font-size: 0.75rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .toggle-icon {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 12px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-highlight {
        margin: 0 12px 12px 12px;
        padding: 8px 12px;
    }

    .highlight-icon {
        font-size: 0.9rem;
    }

    .highlight-text {
        font-size: 0.85rem;
    }

    .faq-cta {
        padding: 2rem 1rem;
        margin: 20px 0;
    }

    .cta-content h3 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-chat-btn,
    .cta-email-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 15px 20px;
    }
      
    .footer p {
        font-size: 14px;
        line-height: 1.4;
    }

    .chat-button {
        bottom: 110px;
    }

    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
        bottom: 50px;
        right: 40px;
    }
.highlight {
    color: #ffd700; /* Gold-like highlight */
    background-color: transparent;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.highlight:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.7); /* Soft glow effect */
    text-decoration: none;
}
  
.testimonial-section, .promo-teaser, .faq-section {
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
}

/* New Testimonial Section Styles */
.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header .section-title {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
    line-height: 1.3;
    font-weight: bold;
}

.testimonial-header .section-subtitle {
    font-size: 1.05rem;
    color: #E4E4E4;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    text-align: justify;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.testimonial-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    min-width: 120px;
    animation: statFloat 3s ease-in-out infinite;
}

.testimonial-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 5px;
}

.testimonial-stats .stat-label {
    font-size: 0.9rem;
    color: #E4E4E4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(4, 2, 85, 0.9), rgba(1, 1, 52, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    color: #E4E4E4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.8s ease-out;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.testimonial-card::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: left 0.5s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-card.featured {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    position: relative;
}

.testimonial-card.featured::after {
    content: '⭐ FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: featuredGlow 2s ease-in-out infinite;
}

.testimonial-header-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.player-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: avatarPulse 2s ease-in-out infinite;
}

.player-info {
    flex: 1;
}

.player-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    margin: 0 0 5px 0;
}

.player-location {
    font-size: 0.9rem;
    color: #E4E4E4;
    margin: 0 0 8px 0;
    opacity: 0.8;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 0.9rem;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

.verified-badge {
    background: linear-gradient(45deg, #00FF88, #00CC6A);
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    animation: verifiedPulse 2s ease-in-out infinite;
}

.testimonial-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.quote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    flex: 1;
}

.quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: #FFD700;
    font-family: serif;
}

.testimonial-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 15px;
    border-radius: 10px;
    border-left: 3px solid #FFD700;
    margin-top: auto;
    min-height: 50px;
}

.highlight-icon {
    font-size: 1.2rem;
    animation: iconBounce 2s ease-in-out infinite;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.highlight-text {
    font-size: 0.9rem;
    color: #FFD700;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}



/* Testimonial Animations */
@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes verifiedPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.6); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.promo-list li {
    font-size: 18px;
    color: #ffd700;
    margin: 10px 0;
}

/* New FAQ Section Styles */
.faq-section {
    padding: 4rem 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.faq-container {
    position: relative;
    background: linear-gradient(135deg, rgba(4, 2, 85, 0.95), rgba(1, 1, 52, 0.95));
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.faq-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 2px, transparent 2px);
    background-size: 120px 120px, 180px 180px, 100px 100px;
    animation: faqParticleFloat 25s linear infinite;
}

.faq-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: faqGlowRotate 15s linear infinite;
}

.faq-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: titleGlow 3s ease-in-out infinite;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #E4E4E4;
    opacity: 0.9;
}

.faq-search {
    margin-bottom: 2rem;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #FFD700;
    z-index: 3;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: #E4E4E4;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search-input::placeholder {
    color: #E4E4E4;
    opacity: 0.7;
}

.faq-search-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #E4E4E4;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: none;
}

.search-clear:hover {
    opacity: 1;
    color: #FFD700;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    color: #E4E4E4;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.category-btn.active {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.category-icon {
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: faqSlideIn 0.8s ease-out;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.faq-question-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-container:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-icon {
    font-size: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.faq-question-content {
    flex: 1;
}

.faq-question {
    font-size: 1.2rem;
    color: #FFD700;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.faq-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #E4E4E4;
    opacity: 0.8;
}

.faq-category {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    color: #FFD700;
}

.faq-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #E4E4E4;
    line-height: 1.6;
}

.faq-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 3px solid #FFD700;
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-text {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-content h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cta-content p {
    font-size: 1.1rem;
    color: #E4E4E4;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-chat-btn,
.cta-email-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-chat-btn {
    background: linear-gradient(45deg, #00FF88, #00D4FF);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.cta-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.5);
}

.cta-email-btn {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-email-btn:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* FAQ Section Animations */
@keyframes faqParticleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes faqGlowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes faqSlideIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.cta-new-btn {
    display: inline-block;
    max-width: 90vw;
    background: linear-gradient(90deg, #ffe761, #ff9e00);
    color: #000000;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
    margin-top: 30px;
    white-space: nowrap;
}

.cta-new-btn:hover {
    background: linear-gradient(90deg, #ff9e00, #ffe761);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
}

.live-win-feed {
    background: linear-gradient(135deg, #0f1b2b 0%, #1a1a2e 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.live-win-feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 183, 0.05) 50%, transparent 100%);
    animation: winFeedGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.win-feed-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.live-win-feed .section-title {
    font-size: 2.5rem;
    color: #00ffb7;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

.live-win-feed .section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.live-indicator-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    animation: livePulse 2s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: liveBlink 1.5s ease-in-out infinite;
}

.live-text {
    color: #ff0000;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.win-feed-container {
    background: linear-gradient(145deg, #162940, #1a1a2e);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 183, 0.1);
    margin-bottom: 2rem;
}

.win-feed-scroll {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00ffb7 #1a1a2e;
}

.win-feed-scroll::-webkit-scrollbar {
    width: 6px;
}

.win-feed-scroll::-webkit-scrollbar-track {
    background: #1a1a2e;
    border-radius: 3px;
}

.win-feed-scroll::-webkit-scrollbar-thumb {
    background: #00ffb7;
    border-radius: 3px;
}

.win-feed-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.win-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: winItemSlideIn 0.6s ease-out;
}

.win-item:nth-child(1) { animation-delay: 0.1s; }
.win-item:nth-child(2) { animation-delay: 0.2s; }
.win-item:nth-child(3) { animation-delay: 0.3s; }
.win-item:nth-child(4) { animation-delay: 0.4s; }
.win-item:nth-child(5) { animation-delay: 0.5s; }
.win-item:nth-child(6) { animation-delay: 0.6s; }

.win-item:hover {
    transform: translateX(5px);
    background: rgba(0, 255, 183, 0.1);
    border-color: rgba(0, 255, 183, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 183, 0.2);
}

.win-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #00ffb7, #00cc93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 255, 183, 0.3);
}

.avatar-emoji {
    font-size: 1.5rem;
}

.win-details {
    flex: 1;
    min-width: 0;
}

.win-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.player-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.win-amount {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-name {
    color: #00ffb7;
    font-weight: 500;
    font-size: 0.9rem;
}

.win-time {
    color: #888;
    font-size: 0.8rem;
}

.win-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.win-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: linear-gradient(145deg, #162940, #1a1a2e);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 255, 183, 0.1);
    transition: all 0.3s ease;
    animation: statSlideIn 0.8s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.7s; }
.stat-item:nth-child(2) { animation-delay: 0.8s; }
.stat-item:nth-child(3) { animation-delay: 0.9s; }

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 183, 0.3);
    box-shadow: 0 10px 25px rgba(0, 255, 183, 0.2);
}

.stat-icon {
    font-size: 2rem;
    background: linear-gradient(145deg, #00ffb7, #00cc93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: #00ffb7;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

@keyframes winFeedGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes liveBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes winItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gamesGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes statBadgeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gameCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.spin-result {
    font-size: 20px;
    color: #ffd700;
    margin-top: 20px;
    font-weight: bold;
    min-height: 30px;
    transition: opacity 0.3s ease;
}

.spin-reward-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0f1b2b 0%, #1a1a2e 100%);
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.spin-reward-section .section-title {
    font-size: 2.5rem;
    color: #00ffb7;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

.spin-reward-section .section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slot-machine {
    background: linear-gradient(145deg, #162940, #1a1a2e);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 183, 0.1);
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 255, 183, 0.2);
}

.slot-info h3 {
    color: #00ffb7;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.slot-stats {
    display: flex;
    gap: 1rem;
}

.demo-rtp, .demo-volatility {
    background: rgba(0, 255, 183, 0.2);
    color: #00ffb7;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.balance-display {
    text-align: right;
}

.balance-label {
    color: #ccc;
    font-size: 0.9rem;
    display: block;
}

.balance-amount {
    color: #00ffb7;
    font-size: 1.2rem;
    font-weight: bold;
}

.slot-reels {
    display: flex;
    gap: 0.5rem;
    background: #0a0a0a;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 3px solid #333;
    position: relative;
    overflow: hidden;
}

.slot-reels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 183, 0.1) 50%, transparent 100%);
    animation: slotGlow 2s ease-in-out infinite;
    pointer-events: none;
}

.reel-container {
    flex: 1;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    background: #1a1a1a;
    position: relative;
}

.reel {
    display: flex;
    flex-direction: column;
    transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.symbol {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.symbol.winning {
    background: linear-gradient(145deg, #00ffb7, #00cc93);
    color: #000;
    animation: symbolWin 0.5s ease-in-out;
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bet-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(145deg, #00ffb7, #00cc93);
    color: #000;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
}

.bet-amount {
    color: #00ffb7;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
}

.spin-btn {
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.spin-text {
    font-size: 1.1rem;
}

.spin-icon {
    font-size: 1.5rem;
    animation: spinIcon 2s linear infinite;
}

.win-display {
    text-align: right;
}

.win-label {
    color: #ccc;
    font-size: 0.9rem;
    display: block;
}

.win-amount {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
}

.slot-result {
    text-align: center;
    min-height: 60px;
    position: relative;
}

.result-message {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ffb7;
    margin-bottom: 0.5rem;
}

.result-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.slot-info-panel {
    background: rgba(0, 255, 183, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0, 255, 183, 0.2);
}

.slot-info-panel h4 {
    color: #00ffb7;
    margin: 0 0 1rem 0;
    text-align: center;
}

.symbol-values {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.symbol-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.symbol-value .symbol {
    font-size: 1.5rem;
    height: auto;
    background: none;
    border: none;
}

.symbol-value .value {
    color: #ffd700;
    font-weight: bold;
}

@keyframes slotGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes symbolWin {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes spinIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slot-machine {
        padding: 1rem;
    }
    
    .slot-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .slot-reels {
        gap: 0.3rem;
        padding: 0.5rem;
    }
    
    .symbol {
        font-size: 2rem;
        height: 80px;
    }
    
    .slot-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bet-controls {
        order: 2;
    }
    
    .spin-btn {
        order: 1;
    width: 100%;
        justify-content: center;
    }
    
    .win-display {
        order: 3;
        text-align: center;
    }
    
    .symbol-values {
        flex-direction: column;
        align-items: center;
    }
    
    /* Live Win Feed Mobile Styles */
    .live-win-feed {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }
    
    .live-win-feed .section-title {
        font-size: 2rem;
    }
    
    .live-win-feed .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .win-feed-container {
        padding: 1rem;
    }
    
    .win-feed-scroll {
        max-height: 300px;
    }
    
    .win-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .win-avatar {
        width: 40px;
        height: 40px;
    }
    
    .avatar-emoji {
        font-size: 1.2rem;
    }
    
    .win-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .player-name {
        font-size: 0.9rem;
    }
    
    .win-amount {
        font-size: 1rem;
    }
    
    .game-info {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .game-name {
        font-size: 0.8rem;
    }
    
    .win-time {
        font-size: 0.7rem;
    }
    
    .win-badge {
        width: 35px;
        height: 35px;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .win-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Games Section Mobile Styles */
    .games-section {
        padding: 2rem 1rem;
        margin: 20px 0;
    }
    
    .games-section .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .games-section .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .games-stats {
        flex-direction: row;
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-badge {
        padding: 12px;
        min-width: 90px;
        flex: 1;
        min-width: 0;
    }
    
    .stat-badge .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-badge .stat-label {
        font-size: 0.75rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }
    
    .game-category-card {
        padding: 15px;
        max-width: 100%;
        border-radius: 15px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
    }
    
    .category-emoji {
        font-size: 1.5rem;
    }
    
    .category-content {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .category-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .category-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .category-features {
        gap: 8px;
        justify-content: center;
        margin-bottom: 15px;
    }

    .feature-item {
        gap: 5px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .feature-icon {
        font-size: 0.9rem;
        width: 18px;
    }

    .feature-text {
        font-size: 0.8rem;
    }
    
    .category-stats {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .category-stats .stat-item {
        padding: 8px;
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
    }
    
    .play-now-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .games-cta {
        padding: 2rem 1rem;
        margin: 20px 0;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

.trending-pokies {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f1b2b 0%, #1a1a2e 100%);
    color: #fff;
}

.trending-pokies .container {
    text-align: center;
    margin-bottom: 3rem;
}

.trending-pokies .section-title {
    font-size: 2.5rem;
    color: #00ffb7;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

.trending-pokies .section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pokies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pokie-card {
    background: linear-gradient(145deg, #162940, #1a1a2e);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 255, 183, 0.1);
    animation: cardSlideIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.pokie-card:nth-child(1) { animation-delay: 0.1s; }
.pokie-card:nth-child(2) { animation-delay: 0.2s; }
.pokie-card:nth-child(3) { animation-delay: 0.3s; }
.pokie-card:nth-child(4) { animation-delay: 0.4s; }
.pokie-card:nth-child(5) { animation-delay: 0.5s; }
.pokie-card:nth-child(6) { animation-delay: 0.6s; }

.pokie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 183, 0.3);
}

.pokie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pokie-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: emojiFloat 3s ease-in-out infinite;
}

.game-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.pokie-info h3 {
    font-size: 1.5rem;
    color: #00ffb7;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.pokie-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.rtp {
    background: rgba(0, 255, 183, 0.2);
    color: #00ffb7;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status.hot {
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
}

.status.trending {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.status.popular {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

.status.new {
    background: rgba(0, 255, 127, 0.2);
    color: #00ff7f;
}

.pokie-description p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pokie-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
    align-items: center;
}

.feature {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.15), rgba(0, 255, 183, 0.05));
    color: #00ffb7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 183, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    min-width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 255, 183, 0.1);
}

.feature:hover {
    background: linear-gradient(145deg, rgba(0, 255, 183, 0.25), rgba(0, 255, 183, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 183, 0.2);
}

.benefit-card, .game-card, .testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.benefit-card.visible, .game-card.visible, .testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-teaser {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1b2b 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.promo-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.promo-teaser .section-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
    line-height: 1.3;
    font-weight: bold;
}
.promo-teaser .section-subtitle {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: justify;
}
.promo-countdown-card {
    background: linear-gradient(145deg, #162940, #1a1a2e);
    border-radius: 15px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,255,183,0.08);
    border: 2px solid rgba(0,255,183,0.1);
    text-align: center;
    margin: 0 auto 2.5rem auto;
    max-width: 500px;
    position: relative;
}
.countdown-title {
    color: #00ffb7;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: bold;
}
.countdown-timer {
    font-size: 2.2rem;
    font-family: 'Roboto Mono', monospace;
    color: #ffd700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.countdown-label {
    font-size: 1.1rem;
    color: #00ffb7;
    margin: 0 0.2rem 0 0.1rem;
}
.countdown-event {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.promo-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 2rem 0;
}
.promo-card {
    background: linear-gradient(145deg, #23234a, #1a1a2e);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,255,183,0.08);
    border: 2px solid rgba(0,255,183,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.8s ease-out;
}
.promo-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #ffd700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}
.promo-icon {
    font-size: 2.2rem;
    color: #ffd700;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px #ffd70044);
    margin-top: 0.2rem;
}
.promo-content {
    flex: 1;
}
.promo-title {
    color: #00ffb7;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(0, 255, 183, 0.3);
}
.promo-desc {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}
.promo-cta-btn {
    display: inline-block;
    margin: 0 auto;
    margin-top: 2rem;
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.promo-cta-btn:hover {
    background: linear-gradient(145deg, #f7931e, #ff6b35);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}
@media (max-width: 768px) {
    .promo-teaser {
        padding: 2rem 1rem;
        margin: 20px 0;
    }
    .promo-header .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .promo-header .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .promo-countdown-card {
        padding: 1rem 0.7rem;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .countdown-timer {
        font-size: 1.2rem;
        gap: 0.2rem;
    }
    .promo-list-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0 1rem 0;
    }
    .promo-card {
        padding: 1rem 0.7rem;
        gap: 0.7rem;
        border-radius: 15px;
    }
    .promo-icon {
        font-size: 1.3rem;
    }
    .promo-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    .promo-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .promo-cta-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Mobile styles for countdown section */
    .countdown-section {
        padding: 20px 15px;
        margin: 20px 10px;
    }
    
    .countdown-title {
        font-size: 1.8rem;
    }
    
    .countdown-subtitle {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 10px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .countdown-message p {
        font-size: 1rem;
    }
    
    /* Mobile styles for testimonial section */
    .testimonial-section {
        padding: 2rem 1rem;
        margin: 20px 0;
    }
    
    .testimonial-header .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .testimonial-header .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .testimonial-stats {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .testimonial-stats .stat-item {
        padding: 12px;
        min-width: 90px;
        flex: 1;
        min-width: 0;
    }
    
    .testimonial-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .testimonial-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }
    
    .testimonial-card {
        padding: 15px;
        min-height: auto;
    }
    
    .testimonial-header-card {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .player-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .verified-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .quote {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .testimonial-highlight {
        padding: 8px 12px;
    }
    
    .highlight-text {
        font-size: 0.85rem;
    }
    

}
@keyframes cardSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    header, .header-left, .header-right {
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    .header-auth-buttons {
        min-width: 0;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: 2px;
    }
    .header-login-btn,
    .header-register-btn,
    .partner-logo {
        min-width: 0;
        flex-shrink: 1;
        font-size: 10px;
        padding: 2px 4px;
    }
    .partner-logo {
        max-width: 22px;
        height: auto;
    }
}
@media (max-width: 360px) {
    .header-right {
        flex-direction: column;
        align-items: flex-end;
    }
}

/* Override casino-info-section to ensure visibility */
.casino-info-section {
    padding: 3rem 2rem !important;
    background: linear-gradient(135deg, #0f1b2b, #1a2332) !important;
    color: #fff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    margin: 2rem auto !important;
    max-width: 1200px !important;
    border: 2px solid rgba(255, 215, 0, 0.1) !important;
}

.casino-info-section .container {
    text-align: center !important;
    margin-bottom: 3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.casino-info-section .section-title {
    font-size: 2.5rem !important;
    color: #00ffb7 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5) !important;
    animation: titleGlow 3s ease-in-out infinite !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.casino-info-section .section-subtitle {
    font-size: 1.1rem !important;
    color: #ccc !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.info-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.info-card {
    background: linear-gradient(145deg, #162940, #1a2332) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    flex: 1 1 300px !important;
    max-width: 360px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.3s ease !important;
    border: 2px solid rgba(0, 255, 183, 0.1) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.info-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 40px rgba(0, 255, 183, 0.2) !important;
    border-color: rgba(0, 255, 183, 0.3) !important;
}

.info-card h2 {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #00ffb7 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.info-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.info-list li {
    display: flex !important;
    justify-content: space-between !important;
    margin: 0.8rem 0 !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 0.5rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
}

.info-list strong {
    font-weight: 600 !important;
    color: #f9d342 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Modern section-heading design */
.section-heading {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 2rem auto;
    line-height: 1.6;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.section-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f9d342, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite alternate, gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f9d342, transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 900px;
    color: #e2e8f0;
    text-align: center;
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 10px rgba(249, 211, 66, 0.3); }
    100% { box-shadow: 0 0 20px rgba(249, 211, 66, 0.6); }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .section-heading {
        padding: 3rem 1.5rem 2rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .main-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

/* Modern data animated-section design */
.data.animated-section {
    background: linear-gradient(145deg, #0f1b2b 0%, #1a2332 50%, #16213e 100%);
    color: #fff;
    padding: 4rem 2rem 3rem;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin: 2rem auto;
    max-width: 1200px;
    border: 2px solid rgba(0, 255, 183, 0.2);
    overflow: hidden;
}

.data.animated-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 183, 0.05) 50%, transparent 70%);
    animation: dataShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.data-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.data-left {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 183, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.data-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ffb7, #00d4ff, #00ffb7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dataGradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 183, 0.5);
    position: relative;
}

.data-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00ffb7, #00d4ff);
    border-radius: 2px;
    animation: dataUnderlineGlow 2s ease-in-out infinite alternate;
}

.data-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.data-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1.5rem;
}

.data-item {
    background: linear-gradient(145deg, #162940, #1a2332);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 183, 0.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.data-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 183, 0.1), transparent);
    transition: left 0.5s ease;
}

.data-item:hover::before {
    left: 100%;
}

.data-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 255, 183, 0.2);
    border-color: rgba(0, 255, 183, 0.3);
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #00ffb7;
    text-shadow: 0 0 25px rgba(0, 255, 183, 0.6);
    animation: dataIconFloat 3s ease-in-out infinite;
}

.emoji-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 183, 0.4));
    animation: dataEmojiBounce 2s ease-in-out infinite;
}

.title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ffb7;
    text-shadow: 0 0 20px rgba(0, 255, 183, 0.5);
    animation: dataValuePulse 2s ease-in-out infinite;
}

@keyframes dataGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes dataShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes dataUnderlineGlow {
    0% { box-shadow: 0 0 10px rgba(0, 255, 183, 0.3); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 183, 0.6); }
}

@keyframes dataIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes dataEmojiBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes dataValuePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Mobile responsive design for data section */
@media (max-width: 768px) {
    .data.animated-section {
        padding: 3rem 1.5rem 2rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .data-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .data-left {
        padding: 1.5rem;
    }
    
    .data-title {
        font-size: 2rem;
    }
    
    .data-description {
        font-size: 1rem;
    }
    
    .data-right {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .data-item {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .icon, .emoji-icon {
        font-size: 3rem;
    }
    
    .title {
        font-size: 1.3rem;
    }
    
    .value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .data.animated-section {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .data-title {
        font-size: 1.8rem;
    }
    
    .data-right {
        grid-template-columns: 1fr;
    }
}

/* Modern promo-teaser design */
.promo-teaser {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 2rem 3rem;
    color: #fff;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 10;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    margin: 2rem auto;
    max-width: 1200px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    overflow: hidden;
}

.promo-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 105, 180, 0.05) 50%, transparent 70%);
    animation: promoShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.promo-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.promo-teaser .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #ff69b4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: promoGradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    position: relative;
}

.promo-teaser .section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 2px;
    animation: promoUnderlineGlow 2s ease-in-out infinite alternate;
}

.promo-teaser .section-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-countdown-card {
    background: linear-gradient(145deg, #162940, #1a2332);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 105, 180, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.countdown-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ff69b4;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: linear-gradient(145deg, #1a2332, #16213e);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.4);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff69b4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.promo-card {
    background: linear-gradient(145deg, #162940, #1a2332);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 105, 180, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    transition: left 0.5s ease;
}

.promo-card:hover::before {
    left: 100%;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.3);
}

.promo-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #ff69b4;
    text-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
    animation: promoIconFloat 3s ease-in-out infinite;
}

.promo-content {
    flex: 1;
}

.promo-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.promo-cta-btn {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
    background: linear-gradient(45deg, #ff1493, #ff69b4);
}

@keyframes promoGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes promoShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes promoUnderlineGlow {
    0% { box-shadow: 0 0 15px rgba(255, 105, 180, 0.4); }
    100% { box-shadow: 0 0 25px rgba(255, 105, 180, 0.7); }
}

@keyframes promoIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Clean, legible FAQ section design */
.faq-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 3rem 2rem;
    color: #ffffff;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.faq-title::before {
    content: "❓";
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    animation: subtle-glow 2s ease-in-out infinite alternate;
}

@keyframes subtle-glow {
    0% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)); }
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Search section */
.faq-search {
    margin-bottom: 2.5rem;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #a0aec0;
    z-index: 2;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-search-input::placeholder {
    color: #a0aec0;
}

.faq-search-input:focus {
    outline: none;
    border-color: #00ffb7;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 255, 183, 0.2);
}

/* Category buttons */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-btn.active {
    background: #00ffb7;
    color: #1a202c;
    border-color: #00ffb7;
    box-shadow: 0 4px 16px rgba(0, 255, 183, 0.3);
}

.category-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ items */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

/* Remove all drop-down/accordion/toggle styles */
.faq-question-container,
.faq-toggle,
.toggle-icon,
.faq-item.active,
.faq-answer.active {
    all: unset;
    display: revert;
}

/* Responsive design */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 12px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-title::before {
        font-size: 1.5rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-categories {
        gap: 0.5rem;
        padding: 0;
    }
    
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1.5rem 1rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .faq-search-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
  .promo-list-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 1rem 0;
  }
  .promo-card {
    padding: 1.3rem 1rem;
    gap: 1rem;
    border-radius: 18px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,255,183,0.10);
  }
  .promo-icon {
    font-size: 1.7rem;
    margin-top: 0.1rem;
  }
  .promo-title {
    font-size: 1.08rem;
    line-height: 1.35;
  }
  .promo-desc {
    font-size: 0.97rem;
    line-height: 1.55;
  }
}

@media (max-width: 600px) {
  .trending-pokies {
    padding: 2rem 0.5rem;
  }
  .trending-pokies .container {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  .trending-pokies .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }
  .trending-pokies .section-subtitle {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }
  .pokies-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 0.5rem 0 1rem 0;
    max-width: 100%;
  }
  .pokie-card {
    padding: 1.1rem 0.7rem;
    border-radius: 16px;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 10px rgba(0,255,183,0.08);
  }
  .pokie-header {
    gap: 0.7rem;
    margin-bottom: 1rem;
  }
  .pokie-icon {
    width: 56px;
    height: 56px;
  }
  .pokie-info h3 {
    font-size: 1.08rem;
  }
  .pokie-description p {
    font-size: 0.97rem;
    margin-bottom: 1rem;
  }
  .pokie-features {
    gap: 0.4rem;
  }
  .feature {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }
}



