/* Glass & Dark Corporate Styling */
.glass-panel {
    background: rgba(14, 12, 34, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 4.5rem;
    box-shadow: var(--shadow-lg);
}

.neon-glow {
    position: relative;
}

.neon-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    z-index: -1;
    border-radius: 14px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.neon-glow:hover::before {
    opacity: 0.6;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 20%, var(--accent-color) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section Refinements */
.hero {
    position: relative;
    padding: 12rem 0 6rem;
    background: transparent;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-text-content {
    flex: 1.2;
    max-width: 650px;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-glass-card {
    background: rgba(14, 12, 34, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg), var(--cyan-glow);
    animation: floating 6s ease-in-out infinite;
    width: 100%;
    max-width: 450px;
}

.jackpot-counter-text {
    font-size: 3.2rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.pulse-animation {
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-green {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    font-size: 1.02rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.45);
    filter: brightness(1.08);
}

.btn-secondary {
    padding: 1.1rem 2.8rem;
    font-size: 1.02rem;
    border-radius: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

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

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Feature Grid Improvements */
.game-features {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.dark-panel-bg {
    background: rgba(14, 12, 34, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    padding: 5rem 4.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background: rgba(14, 12, 34, 0.5);
    border: 1px solid var(--border-color);
}

.game-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), var(--cyan-glow);
}

.game-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.game-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card-modern:hover .game-card-bg {
    transform: scale(1.06);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.95) 0%, rgba(11, 37, 69, 0.5) 45%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.6rem;
    transition: var(--transition);
    z-index: 2;
}

.game-card-modern:hover .game-card-overlay {
    background: linear-gradient(to top, rgba(11, 37, 69, 0.98) 0%, rgba(11, 37, 69, 0.8) 50%, rgba(0, 242, 254, 0.15) 100%);
}

.game-card-title {
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.game-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1.6;
    transition: var(--transition);
    transform: translateY(10px);
    opacity: 0.8;
}

.game-card-modern:hover .game-card-desc {
    opacity: 1;
    transform: translateY(0);
}

.game-card-action {
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
    margin-top: 1.2rem;
}

.game-card-modern:hover .game-card-action {
    opacity: 1;
    transform: translateY(0);
}

.game-card-action .btn-primary {
    background: var(--accent-color);
    color: #0b2545;
    font-weight: 800;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.3);
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.game-card-action .btn-primary:hover {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.35);
}

/* Live Wins Section Split Dashboard */
.live-wins-section {
    position: relative;
    z-index: 2;
}

.wins-split-layout {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
}

.featured-winner-card {
    flex: 0.8;
    background: linear-gradient(135deg, rgba(23, 19, 58, 0.65) 0%, rgba(14, 12, 34, 0.45) 100%);
    border: 1px solid #e2b755;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg), var(--gold-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.champion-badge {
    position: absolute;
    top: -14px;
    background: #e2b755;
    color: #0b0904;
    padding: 0.4rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(226, 183, 85, 0.2);
}

.champion-avatar {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(226, 183, 85, 0.4));
    animation: pulse-gold 2s infinite ease-in-out;
}

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

.champion-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.champion-game {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.champion-game strong {
    color: var(--accent-color);
}

.champion-prize {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    width: 100%;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.champion-prize .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.champion-prize .value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e2b755;
    text-shadow: 0 0 15px rgba(226, 183, 85, 0.3);
}

.champion-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

.live-wins-ticker-wrapper {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.live-wins-ticker {
    flex-grow: 1;
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.8rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.wins-feed {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.win-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 0.9rem 1.4rem;
    animation: slideInWin 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: var(--transition);
}

.win-card:hover {
    background: rgba(0, 242, 254, 0.05);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: var(--cyan-glow);
}

@keyframes slideInWin {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.win-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 242, 254, 0.2);
    flex-shrink: 0;
}

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

.win-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-game {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-amount {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--accent-color);
    flex-shrink: 0;
    white-space: nowrap;
}

.win-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    min-width: 75px;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

/* VIP Section */
.vip-section {
    position: relative;
    z-index: 2;
}

.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.vip-tier-card {
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.vip-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Highlight Gold Tier in corporate blue/dark mode card */
.vip-tier-card.tier-gold.is-popular {
    background: rgba(23, 19, 58, 0.65);
    border-color: #e2b755;
    box-shadow: var(--shadow-lg), var(--gold-glow);
}

.vip-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #e2b755;
    color: #0b0904;
    padding: 0.4rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(226, 183, 85, 0.2);
    z-index: 5;
    white-space: nowrap;
}

.vip-tier-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.vip-tier-card.tier-gold .vip-tier-icon {
    color: #e2b755;
}

.vip-tier-card.tier-diamond .vip-tier-icon {
    color: var(--accent-color);
}

.vip-tier-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.vip-tier-xp {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.vip-perks {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.vip-perks li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-tier-card.tier-gold.is-popular .vip-perks li {
    color: rgba(255, 255, 255, 0.88);
}

.vip-perks li i {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.vip-tier-card.tier-gold.is-popular .vip-perks li i {
    color: #e2b755;
}

.vip-tier-card.tier-diamond .vip-perks li i {
    color: var(--accent-color);
}

.vip-tier-card .btn-green {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    border-radius: 12px;
    justify-content: center;
    margin-top: auto;
}

.vip-tier-card.tier-gold.is-popular .btn-green {
    background: #e2b755;
    color: #0b0904;
    box-shadow: 0 4px 12px rgba(226, 183, 85, 0.2);
    border: none;
}

.vip-tier-card.tier-gold.is-popular .btn-green:hover {
    background: #ffffff;
    color: #0b0904;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.vip-tier-card.tier-diamond .btn-green {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
}

/* How to Play Section */
.how-to-play-section {
    position: relative;
    z-index: 2;
}

.htp-steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
}

.htp-step {
    flex: 1;
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.htp-step:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), var(--cyan-glow);
}

.htp-step-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
}

.htp-step:hover .htp-step-num {
    color: rgba(255, 255, 255, 0.04);
}

.htp-step-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.8rem;
    transition: var(--transition);
}

.htp-step:hover .htp-step-icon {
    background: var(--accent-color);
    color: #0c0a21;
    box-shadow: 0 6px 15px rgba(0, 242, 254, 0.3);
}

.htp-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.htp-step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.htp-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}

.htp-connector span {
    width: 100%;
    height: 2px;
    background: var(--border-color);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--accent-color);
    border: 1px solid var(--border-color);
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.testimonial-rating i {
    font-size: 0.78rem;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* FB Share Section */
.fb-share-section {
    position: relative;
    z-index: 2;
}

.fb-share-inner {
    background: rgba(14, 12, 34, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.fb-share-body {
    padding: 5rem 4rem;
}

.fb-share-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
}

.countdown .cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown .num {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.countdown .label {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.countdown .colon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    line-height: 1;
}

.fb-share-btn {
    display: inline-block;
    min-width: 240px;
    background: #1877f2;
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fb-share-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

/* Testimonials & Campaign Split Layout */
.feedback-campaign-section {
    position: relative;
    z-index: 2;
}

.feedback-campaign-split {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
}

.testimonial-slider-column {
    flex: 1.1;
    display: flex;
    flex-direction: column;
}

.campaign-share-column {
    flex: 0.9;
    display: flex;
    flex-direction: column;
}

.active-testimonial-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.active-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.border-top-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-color);
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.testimonial-rating {
    font-size: 0.8rem;
    color: #f1c40f;
    display: flex;
    gap: 0.15rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    z-index: 2;
}

.why-choose-section .glass-panel {
    padding: 4.5rem 3rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.why-grid {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.why-col {
    flex: 1;
    min-width: 340px;
}

.why-card {
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.why-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-icon-wrapper {
    width: 68px;
    height: 68px;
    background: rgba(0, 242, 254, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.6rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.why-card:hover .why-icon-wrapper {
    background: var(--accent-color);
    color: #0c0a21;
    transform: rotate(5deg);
}

.why-card h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.why-card h4.text-accent {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 5px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.list-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.payment-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 2rem;
}

.pay-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.pay-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.why-card:hover .pay-icon {
    border-color: var(--accent-color);
    background: rgba(0, 242, 254, 0.08);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 2;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Info Section Split Layout (SEO & Features) */
.info-section {
    position: relative;
    z-index: 2;
}

.info-split-layout {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.info-text-col {
    flex: 1.1;
    display: flex;
    flex-direction: column;
}

.info-features-col {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seo-long-content {
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.seo-long-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* Feature Row styling */
.feature-box-row {
    display: flex;
    gap: 1.5rem;
    background: rgba(14, 12, 34, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    align-items: flex-start;
}

.feature-box-row:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md), var(--cyan-glow);
}

.feature-row-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 242, 254, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-box-row:hover class {
    background: var(--accent-color);
    color: #0c0a21;
}

.feature-row-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.feature-row-text p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Register Banner */
.footer-register-banner {
    border-radius: 24px;
    width: 100%;
    margin-top: auto;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    background: rgba(14, 12, 34, 0.45);
    z-index: 2;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.footer-register-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 136, 145, 0.1), rgba(0, 242, 254, 0.1));
    z-index: 1;
}

.footer-register-banner > div {
    position: relative;
    z-index: 2;
    padding: 2.2rem;
}

.footer-register-banner h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-register-banner .btn-green {
    border-radius: 12px;
    padding: 1rem 2.5rem;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .htp-steps-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .htp-step {
        flex: none;
        width: 45%;
    }

    .htp-connector {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 3.5rem;
    }

    .hero-text-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .hero-desc {
        text-align: center;
        margin: 0 auto 2.2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
        gap: 3rem;
    }

    .glass-panel {
        padding: 3rem 2rem;
        border-radius: 20px;
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .fb-share-body {
        padding: 3.5rem 2rem;
    }

    .why-grid {
        flex-direction: column;
    }

    .why-col {
        min-width: 100%;
    }

    .info-split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .wins-split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .feedback-campaign-split {
        flex-direction: column;
        gap: 2rem;
    }

    .featured-winner-card {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 4rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-green,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .hero-stats {
        gap: 1.8rem;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 90px;
    }

    .stat-item h4 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.72rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vip-tiers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .htp-step {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .countdown .cd-item {
        min-width: 60px;
    }

    .countdown .num {
        font-size: 2.2rem;
    }

    .countdown .colon {
        font-size: 1.8rem;
    }

    .fb-share-btn {
        width: 100%;
        padding: 1rem;
    }

    .footer-register-banner {
        width: 100%;
        margin-top: 2rem;
    }

    .footer-register-banner > div {
        padding: 1.5rem;
        text-align: center;
        align-items: center !important;
    }

    .footer-register-banner h3 {
        font-size: 1.25rem;
    }

    .jackpot-counter-text {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .why-card {
        padding: 2.2rem 1.8rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.2rem;
        font-size: 0.88rem;
    }

    .seo-long-content {
        padding: 1.8rem;
    }

    .feature-box-row {
        padding: 1.2rem;
        gap: 1rem;
    }

    .feature-row-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .testimonial-carousel-inner {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.2rem;
        padding: 0.2rem 0.2rem 0.8rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonial-carousel-inner::-webkit-scrollbar {
        display: none;
    }

    .active-testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-top: 0 !important;
        border-top: none !important;
        background: rgba(14, 12, 34, 0.45) !important;
        border: 1px solid var(--border-color) !important;
        padding: 1.5rem 1.2rem !important;
    }

    .win-card {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .win-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .win-name {
        font-size: 0.88rem;
    }

    .win-game {
        font-size: 0.78rem;
    }

    .win-amount {
        font-size: 0.95rem;
    }

    .win-time {
        font-size: 0.72rem;
        min-width: 65px;
    }
}

@media (max-width: 480px) {
    .jackpot-counter-text {
        font-size: 1.7rem;
    }
}

/* Premium Section Spacing */
.live-wins-section,
.vip-section,
.how-to-play-section,
.feedback-campaign-section,
.why-choose-section,
.faq-section,
.info-section {
    margin-bottom: 7.5rem !important;
}

@media (max-width: 768px) {
    .live-wins-section,
    .vip-section,
    .how-to-play-section,
    .feedback-campaign-section,
    .why-choose-section,
    .faq-section,
    .info-section {
        margin-bottom: 4.5rem !important;
    }
}

