@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');

body {
    margin: 0;
    padding: 0;
    font-family: Ubuntu;
    text-align: center;
    padding-top: 80px;
    color: #E4E4E4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Global Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Ensure sections with containers have proper spacing */
.bonus-section .container,
.comparison-section .container,
.game-section .container,
.join-section .container {
    padding: 40px 20px;
}

.faq-bonus .container {
    padding: 60px 20px;
}

.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: 0;
    z-index: 10;
}

.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%;
}
@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    top: 45px;
    border-radius: 150px;
    background-color: #040255;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background-color: #010134;
    color: white;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 999999;
}

.sidebar.active {
    left: 0;
}

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

.close-btn {
    position: absolute;
    padding: 10px;
    top: 20px;
    right: 20px;
    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 {
    border: #e4e4e4 solid 1px;
    padding: 10px 20px;
    color: white;
    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-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);
}
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

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

.login-button {
    background: linear-gradient(to bottom, #f7e48b, #c99c2e); 
    padding: 10px 40px;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.login-button:hover {
    background: linear-gradient(to bottom,#c99c2e ,#f7e48b); 
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 2, 85, 0.9), rgba(0, 0, 0, 0.8));
    z-index: -2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(254, 204, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(254, 204, 0, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    z-index: -1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 204, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.hero-logo {
    position: relative;
    margin-bottom: 40px;
}

.logo-animated {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(254, 204, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(254, 204, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
    z-index: -1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    color: #e4e4e4;
    animation: fadeInUp 1s ease-out;
}

.title-highlight {
    display: block;
    color: #fecc00;
    text-shadow: 0 0 20px rgba(254, 204, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fecc00, transparent);
    animation: underlineSlide 1s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e4e4e4;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 204, 0, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    color: #e4e4e4;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.feature-badge:hover {
    background: rgba(254, 204, 0, 0.1);
    border-color: #fecc00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 204, 0, 0.2);
}

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

.feature-text {
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fecc00, #ffd700);
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(254, 204, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 204, 0, 0.4);
    background: linear-gradient(135deg, #ffd700, #fecc00);
}

.cta-bonus {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.cta-secondary {
    display: flex;
    align-items: center;
    background: transparent;
    color: #e4e4e4;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #e4e4e4;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.cta-secondary:hover {
    background: rgba(228, 228, 228, 0.1);
    border-color: #fecc00;
    color: #fecc00;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(254, 204, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fecc00;
    margin-bottom: 8px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #e4e4e4;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s both;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #fecc00, transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes underlineSlide {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Casino Intro Redesign */
.casino-intro {
    position: relative;
    padding: 80px 0 40px 0;
    z-index: 1;
    overflow: hidden;
}
.casino-intro-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #1e252f 0%, #040255 100%);
    opacity: 0.85;
    z-index: -1;
}
.intro-header.redesigned {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.intro-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px #fecc00aa);
    animation: logoFloat 3s ease-in-out infinite;
}
.intro-header.redesigned h2 {
    color: #fecc00;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}
.intro-description {
    max-width: 700px;
    margin: 0 auto 36px auto;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 22px 28px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
}
.desc-highlight {
    color: #fecc00;
    font-weight: 700;
    font-size: 1.1em;
}
.feature-card-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 40px 0 48px 0;
    flex-wrap: wrap;
}
.feature-card {
    background: rgba(0,0,0,0.35);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    padding: 36px 28px 28px 28px;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    will-change: transform;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}
.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 #fecc0033;
}
.feature-card-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
}
.icon-green { background: linear-gradient(135deg, #2ecc40 60%, #27ae60 100%); color: #fff; }
.icon-blue { background: linear-gradient(135deg, #2980ef 60%, #00c6fb 100%); color: #fff; }
.icon-gold { background: linear-gradient(135deg, #fecc00 60%, #ffd700 100%); color: #333; }
.feature-card-content h3 {
    color: #fecc00;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.feature-card-content p {
    color: #e4e4e4;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}
/* Responsive */
@media (max-width: 900px) {
    .feature-card-grid { flex-direction: column; gap: 24px; align-items: center; }
    .feature-card { max-width: 100%; min-width: 0; width: 100%; }
}
@media (max-width: 600px) {
    .casino-intro { padding: 40px 0 20px 0; }
    .intro-header.redesigned h2 { font-size: 1.3rem; }
    .intro-icon { font-size: 1.5rem; }
    .intro-description { padding: 14px 8px; font-size: 0.98em; }
    .feature-card { padding: 22px 10px 18px 10px; }
    .feature-card-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 10px; }
}
/* Casino Table Modernization */
.casino-table {
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    color: #fff;
    font-size: 1rem;
}
.casino-table th {
    background: linear-gradient(90deg, #fecc00 60%, #ffd700 100%);
    color: #222;
    font-weight: 700;
    font-size: 1.05em;
    border: none;
}
.casino-table td {
    border: none;
    color: #fff;
}
.casino-table tr:hover {
    background: rgba(254,204,0,0.08);
}

.casino-table-container {
    margin-top: 40px;
}

.casino-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #e4e4e4;
}

.casino-table th {
    background: #fecc00;
    color: black;
    padding: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.casino-table tr:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transition: background-color 0.3s ease;
}

.play-btn {
    display: inline-block;
    background-color: #fecc00;
    color: black;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: #ffd700;
}

.bonus-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 20px;
    text-align: center;
}

.bonus-section h2 {
    font-size: 32px;
    color: #fecc00;
    margin-bottom: 40px;
}

.game-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.game-box {
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.description {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    padding: 30px;
    background: linear-gradient(135deg, #1e252f, #2a303d);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.description p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f0f0f0;
    font-weight: 500;
    line-height: 1.7;
}

.description ul {
    list-style: none;
    padding: 0;
}

.description li {
    margin-bottom: 18px;
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.8;
    position: relative;
    padding-left: 32px;
    transition: all 0.3s ease;
}

.description li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #fecc00;
    font-size: 18px;
    top: 0;
    transition: transform 0.3s ease;
}

.description li:hover::before {
    transform: scale(1.3);
    color: #f8ff3a;
}

.description li:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 36px;
}


.why-play {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    animation: patternFloat 35s ease-in-out infinite;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-title-section {
    text-align: center;
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.why-title-section h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.why-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin: 0;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.stat-label {
    font-size: 0.85rem;
    color: #b8b8b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card.primary {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.02);
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.card-banner {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.advantage-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.advantage-card:hover .advantage-banner-img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.banner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.advantage-content {
    padding: 30px;
}

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

.advantage-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    flex: 1;
}

.advantage-badge {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 15px;
}

.advantage-content p {
    font-size: 0.95rem;
    color: #b8b8b8;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.advantage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: #ffd700;
    font-weight: 500;
}

.why-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin: 0 0 40px 0;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

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

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #333;
}

.btn-bonus {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.game-section {
    background: linear-gradient(120deg, #23234b 0%, #1a1a2e 100%);
    position: relative;
    padding: 70px 0 60px 0;
    z-index: 1;
    overflow: hidden;
}
.game-section-header.redesigned {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    margin-bottom: 18px;
}
.game-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffd700 60%, #4ecdc4 100%);
    border-radius: 50%;
    box-shadow: 0 0 18px 4px rgba(255,215,0,0.15);
    padding: 16px;
    color: #23234b;
    animation: iconGlow 2.5s infinite alternate;
}
@keyframes iconGlow {
    from { box-shadow: 0 0 18px 4px rgba(255,215,0,0.15); }
    to { box-shadow: 0 0 32px 10px rgba(78,205,196,0.18); }
}
.game-section-content {
    background: rgba(44, 44, 80, 0.85);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(78,205,196,0.08);
    padding: 38px 36px 32px 36px;
    max-width: 700px;
    margin: 0 auto;
    color: #e4e4e4;
    font-size: 1.13rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    position: relative;
}

.join-section {
    background: linear-gradient(120deg, #1a1a2e 0%, #23234b 100%);
    position: relative;
    padding: 70px 0 60px 0;
    z-index: 1;
    overflow: hidden;
}
.join-header.redesigned {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    margin-bottom: 18px;
}
.join-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4ecdc4 60%, #ffd700 100%);
    border-radius: 50%;
    box-shadow: 0 0 18px 4px rgba(78,205,196,0.15);
    padding: 16px;
    color: #23234b;
    animation: iconGlowJoin 2.5s infinite alternate;
}
@keyframes iconGlowJoin {
    from { box-shadow: 0 0 18px 4px rgba(78,205,196,0.15); }
    to { box-shadow: 0 0 32px 10px rgba(255,215,0,0.18); }
}
.join-content {
    background: rgba(44, 44, 80, 0.85);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(255,215,0,0.08);
    padding: 38px 36px 32px 36px;
    max-width: 700px;
    margin: 0 auto;
    color: #e4e4e4;
    font-size: 1.13rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    position: relative;
}
.join-cta {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
}
.join-cta .cta-btn {
    font-size: 1.08rem;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 18px 0 rgba(78,205,196,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.join-cta .cta-btn.primary {
    background: linear-gradient(90deg, #ffd700 60%, #4ecdc4 100%);
    color: #23234b;
    border: none;
}
.join-cta .cta-btn.primary:hover {
    background: linear-gradient(90deg, #ffe066 60%, #4ecdc4 100%);
    color: #1a1a2e;
    box-shadow: 0 8px 32px 0 rgba(255,215,0,0.18);
}
.join-cta .cta-btn.secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}
.join-cta .cta-btn.secondary:hover {
    background: rgba(255,215,0,0.08);
    color: #fff;
    border-color: #4ecdc4;
}

@media (max-width: 700px) {
    .game-section-content, .join-content {
        padding: 22px 10px 18px 10px;
        font-size: 1rem;
    }
    .game-section-header.redesigned, .join-header.redesigned {
        flex-direction: column;
        gap: 10px;
    }
    .game-icon, .join-icon {
        font-size: 2rem;
        padding: 10px;
    }
    .join-cta {
        flex-direction: column;
        gap: 12px;
    }
}

.footer {
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
  
.footer p {
    margin: 0;
    font-size: 16px;
}

.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;
}

.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;
    }

    /* Container responsive adjustments */
    .container,
    .container-wide,
    .container-narrow {
        padding: 0 15px;
    }
    
    .bonus-section .container,
    .comparison-section .container,
    .game-section .container,
    .join-section .container {
        padding: 30px 15px;
    }
    
    .faq-bonus {
        padding: 40px 0;
    }
    
    .faq-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .faq-title-section {
        text-align: center;
    }
    
    .faq-title-section h2 {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .faq-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .faq-stat {
        padding: 15px;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .faq-card {
        border-radius: 15px;
    }
    
    .faq-question {
        padding: 20px;
        gap: 15px;
    }
    
    .question-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-emoji {
        font-size: 22px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }
    
    .question-content h3 {
        font-size: 1.1rem;
    }
    
    .question-badge {
        padding: 3px 10px;
    }
    
    .question-badge .badge-text {
        font-size: 0.7rem;
    }
    
    .expand-icon {
        font-size: 1.3rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px 75px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .answer-highlights {
        gap: 6px;
    }
    
    .highlight-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .faq-cta {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 100%;
        max-width: 280px;
        padding: 16px 25px;
        font-size: 0.95rem;
    }

    header {
        padding: 10px;
    }

    .header-left {
        padding-left: 5px;
    }
    
    .header-right {
        padding-right: 5px;
    }

    .logo {
        max-width: 100px;
    }

    .login-button {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 500;
    }

    .sidebar {
        left: -280px;
        width: 200px;
    }

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

    .why-choose .text-container h2 {
        font-size: 20px;
    }

    .why-choose .text-container p {
        font-size: 16px;
        line-height: 1.4;
    }

    .why-choose .text-container {
        padding: 0px;
    }

    .casino-intro {
        padding: 40px 0;
    }
  
    .intro-header h2 {
        font-size: 22px;
    }
  
    .feature-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
  
    .feature-item {
        padding: 20px;
    }
  
    .feature-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
  
    .feature-item h3 {
        font-size: 18px;
    }
  
    .feature-item p {
        font-size: 14px;
    }
  
    .casino-table {
        font-size: 14px;
    }
  
    .casino-table th,
    .casino-table td {
        padding: 8px;
    }
  
    .play-btn {
        padding: 6px 16px;
    }

    .game-box {
        width: 35%;
        padding: 5px;
        max-width: 300px;
    }

    .bonus-section h2 {
        font-size: 24px;
    }

    .description p, .description li {
        font-size: 14px;
    }

    .why-play {
        padding: 40px 20px;
    }
    
    .why-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .why-title-section {
        max-width: 100%;
    }
    
    .why-title-section h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .why-subtitle {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .why-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        border-radius: 20px;
    }
    
    .advantage-card.primary {
        transform: scale(1.01);
    }
    
    .card-banner {
        height: 160px;
        border-radius: 20px 20px 0 0;
    }
    
    .banner-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .icon-glow {
        width: 70px;
        height: 70px;
    }
    
    .advantage-content {
        padding: 25px 20px;
    }
    
    .advantage-header h3 {
        font-size: 1.2rem;
    }
    
    .advantage-badge {
        padding: 3px 10px;
        font-size: 0.7rem;
        margin-left: 10px;
    }
    
    .advantage-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .advantage-features {
        gap: 6px;
    }
    
    .feature-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .why-cta {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 100%;
        max-width: 280px;
        padding: 16px 25px;
        font-size: 0.95rem;
    }

    .game-section {
        padding: 30px 20px;
    }
    
    .game-section h2 {
        font-size: 24px;
        color: #fecc00;
        margin-bottom: 20px;
    }
    
    .game-section p {
        font-size: 16px;
        padding: 0px;
        line-height: 1.3;
    }
    
    .join-section {
        padding: 120px 20px;
        text-align: center;
    }
    
    .join-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .join-section p {
        font-size: 16px;
        padding: 0px;
        line-height: 1.3;
    }
    
    .footer {
        padding: 10px 0;
    }
      
    .footer p {
        font-size: 14px;
    } 

    .chat-button {
        bottom: 110px;
    }

    .register-btn {
        padding: 15px 25px;
        font-size: 16px;
        bottom: 50px;
        right: 40px;
    }
    
    /* How-to-claim mobile styles */
    .how-to-claim {
        padding: 40px 20px;
    }
    
    .claim-header-alt h2 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .timeline-container {
        margin-bottom: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-step {
        flex-direction: column !important;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .step-marker {
        margin-bottom: 20px;
    }
    
    .marker-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-num {
        font-size: 1rem;
    }
    
    .step-card {
        margin: 0;
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .card-header {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .step-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-right: 12px;
    }
    
    .step-title h3 {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }
    
    .step-title h3::after {
        bottom: -2px;
        height: 1px;
    }
    
    .step-duration {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        padding: 3px 10px;
        border-radius: 10px;
    }
    
    .step-card p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .step-highlights {
        gap: 6px;
        margin-top: 12px;
        align-items: center;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 3px 0;
        max-width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
    
    .highlight-item::before {
        margin-right: 6px;
        font-size: 0.85rem;
        min-width: 10px;
    }
    
    .bonus-summary {
        padding: 40px 20px;
        margin-bottom: 40px;
        border-radius: 20px;
    }
    
    .summary-header h3 {
        font-size: 1.8rem;
    }
    
    .summary-header p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .total-value {
        padding: 10px 20px;
    }
    
    .value-amount {
        font-size: 1rem;
    }
    
    .bonus-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .bonus-card {
        padding: 25px 20px;
    }
    
    .bonus-card.featured {
        transform: scale(1.02);
    }
    
    .bonus-icon {
        font-size: 2.5rem;
    }
    
    .icon-ring {
        width: 60px;
        height: 60px;
    }
    
    .bonus-content h4 {
        font-size: 1.1rem;
    }
    
    .bonus-content p {
        font-size: 0.9rem;
    }
    
    .bonus-badge {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .bonus-highlights {
        gap: 15px;
    }
    
    .bonus-highlights .highlight-item {
        padding: 10px 15px;
    }
    
    .highlight-icon {
        font-size: 1rem;
    }
    
    .bonus-highlights .highlight-item span {
        font-size: 0.8rem;
    }
    
    .action-section {
        padding: 30px 20px;
    }
    
    .action-content h3 {
        font-size: 1.6rem;
    }
    
    .action-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .action-btn {
        min-width: 100%;
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .btn-bonus {
        font-size: 0.8rem;
    }
}

.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;
}

.comparison-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 12px;
    text-align: center;
}

.comparison-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    color: #e4e4e4;
}

.comparison-table th,
.comparison-table td {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: #fecc00;
    color: black;
    font-weight: bold;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.how-to-claim {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.claim-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: patternFloat 30s ease-in-out infinite;
}

.claim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.9) 100%);
}

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

.claim-header-alt {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    margin: 0 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.claim-header-alt h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.header-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin: 0 0 25px 0;
    font-weight: 400;
}

.time-estimate {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 0.95rem;
    color: #ffd700;
    font-weight: 500;
}

.time-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px auto;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ffd700, #ffed4e, #ffd700);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-step:nth-child(odd) {
    flex-direction: row;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-marker {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.marker-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
}

.step-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.step-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin: 0 40px;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

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

.step-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.3rem;
    color: white;
}

.step-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.step-title h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, transparent);
    border-radius: 1px;
}

.step-duration {
    font-size: 0.8rem;
    color: #4ecdc4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    padding: 4px 12px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.step-duration:hover::before {
    left: 100%;
}

.step-card p {
    font-size: 0.95rem;
    color: #b8b8b8;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.step-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    align-items: center;
}

.highlight-item {
    font-size: 0.85rem;
    color: #4ecdc4;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.4;
    padding: 4px 0;
    text-align: left;
    max-width: 280px;
    width: 100%;
}

.highlight-item::before {
    content: "✓";
    margin-right: 8px;
    font-weight: 700;
    color: #4ecdc4;
    font-size: 0.9rem;
    min-width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.bonus-summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
    padding: 60px 40px;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.summary-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.summary-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(78, 205, 196, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 107, 0.3), transparent);
    background-repeat: repeat;
    background-size: 120px 80px;
    animation: particleFloat 25s linear infinite;
    opacity: 0.4;
}

.summary-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: glowPulse 6s ease-in-out infinite;
}

.summary-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.decoration-star {
    font-size: 1.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.decoration-star:nth-child(3) {
    animation-delay: 1s;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 0 20px;
}

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

.summary-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.summary-header p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin: 0 0 25px 0;
    font-weight: 400;
}

.total-value {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
}

.value-label {
    color: #b8b8b8;
    margin-right: 10px;
    font-size: 0.9rem;
}

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

.bonus-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card.featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.05);
}

.bonus-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover .card-glow {
    opacity: 1;
}

.bonus-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.bonus-icon {
    font-size: 3rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

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

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.bonus-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.bonus-content p {
    font-size: 0.95rem;
    color: #b8b8b8;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-sparkle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #ffd700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkleRotate 3s linear infinite;
}

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

.bonus-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.bonus-highlights .highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.bonus-highlights .highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.bonus-highlights .highlight-item span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.action-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.action-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #fff;
}

.action-content p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin: 0 0 40px 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 300px;
}

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

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

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-bonus {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.btn-arrow {
    font-size: 1.5rem;
    font-weight: 700;
}

.action-btn.secondary {
    background: transparent;
    color: #b8b8b8;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.faq-bonus {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    animation: patternFloat 40s ease-in-out infinite;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-title-section {
    text-align: left;
    flex: 1;
}

.faq-title-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin: 0;
    font-weight: 400;
    max-width: 500px;
}

.faq-stats {
    display: flex;
    gap: 30px;
}

.faq-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.stat-info {
    text-align: left;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #b8b8b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-emoji {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.question-content {
    flex: 1;
    text-align: left;
}

.question-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.question-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 4px 12px;
    display: inline-block;
}

.question-badge .badge-text {
    font-size: 0.75rem;
    color: #ffd700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expand-icon {
    font-size: 1.5rem;
    color: #b8b8b8;
    transition: all 0.3s ease;
}

.faq-card.active .expand-icon {
    transform: rotate(45deg);
    color: #ffd700;
}

/* Enhanced FAQ answer style */
.faq-answer {
    background: linear-gradient(90deg, rgba(78,205,196,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-left: 4px solid #4ecdc4;
    border-radius: 14px;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 22px 28px 22px 32px;
    box-shadow: 0 2px 16px 0 rgba(78,205,196,0.07);
    animation: faqFadeIn 0.7s;
    transition: background 0.3s, box-shadow 0.3s;
}
.faq-answer p {
    font-size: 1.08rem;
    color: #e4f7f6;
    line-height: 1.7;
    margin: 0 0 12px 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.faq-answer p strong, .faq-answer p .highlight {
    color: #ffd700;
    font-weight: 600;
    background: linear-gradient(90deg, #fffbe6 60%, #ffe066 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .faq-answer {
    white-space: normal !important;
    word-break: break-word !important;
    width: 100% !important;
    text-align: left !important;
    display: block !important;
  }
  .faq-answer p {
    white-space: normal !important;
    word-break: break-word !important;
    width: 100% !important;
    text-align: left !important;
    margin: 0 0 10px 0;
  }
}

.game-section-content a, .join-content a {
    color: #4ecdc4;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}
.game-section-content a:hover, .join-content a:hover {
    color: #ffd700;
    text-decoration: underline;
}

@media (max-width: 600px) {
  .comparison-section {
    padding: 30px 2px;
    margin-top: 20px;
    border-radius: 10px;
  }
  .comparison-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    font-size: 0.97rem;
    margin-top: 12px;
    border-radius: 8px;
    background: rgba(0,0,0,0.2);
  }
  .comparison-table th,
  .comparison-table td {
    padding: 8px 10px;
    min-width: 110px;
    font-size: 0.97rem;
  }
  .comparison-table th {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .faq-title-section {
    padding: 0 0.5rem;
    margin-bottom: 1.2rem;
  }
  .faq-title-section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .faq-subtitle {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 600px) {
  .question-content {
    padding: 0 0.2rem;
  }
  .question-content h3 {
    font-size: 1.02rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }
  .question-badge {
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .faq-grid {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .faq-card {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0 0 1.2rem 0;
    padding: 0.5rem 0.2rem;
    border-radius: 14px;
    overflow-x: hidden;
  }
  .faq-answer {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 12px 10px 18px 10px;
    font-size: 1.01rem;
    line-height: 1.6;
    border-radius: 10px;
    margin-top: 0.2rem;
    overflow-x: hidden;
  }
  .faq-answer p {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: left !important;
    margin: 0 0 10px 0;
    overflow-x: hidden;
  }
}

@media (max-width: 600px) {
  .faq-bonus, .faq-grid, .faq-card, .faq-answer, .faq-answer p, .faq-title-section, .container {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .faq-answer, .faq-answer p {
    word-break: break-word !important;
    white-space: normal !important;
    text-align: left !important;
  }
  body {
    overflow-x: hidden !important;
  }
}

@media (max-width: 600px) {
  .faq-cta {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 24px 0 24px 0 !important;
    border-radius: 16px;
    margin: 0 auto 1.2rem auto !important;
  }
  .cta-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .cta-content p {
    font-size: 0.97rem;
    margin-bottom: 1rem;
  }
  .cta-actions {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
  }
  .cta-btn {
    width: 100% !important;
    max-width: 100vw !important;
    font-size: 1rem !important;
    padding: 14px 0 !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 600px) {
  .game-section {
    padding: 32px 0 24px 0;
  }
  .game-section-header.redesigned {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
  }
  .game-icon {
    font-size: 1.5rem;
    padding: 8px;
    margin-bottom: 0.2rem;
  }
  .game-section-header.redesigned h2 {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 0.2rem;
  }
  .game-section-content {
    padding: 16px 8px 14px 8px !important;
    font-size: 0.98rem;
    border-radius: 12px;
    text-align: left !important;
    word-break: break-word !important;
    white-space: normal !important;
  }
}

@media (max-width: 600px) {
  .join-section, .join-content, .container {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .join-content {
    padding: 16px 8px 14px 8px !important;
    font-size: 0.98rem;
    border-radius: 12px;
    text-align: left !important;
    word-break: break-word !important;
    white-space: normal !important;
  }
}
  