* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

body {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #ffffff 100%);
    color: #1b5e20;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(180, 160, 80, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.header {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 250, 240, 0.95));
    border-radius: 20px;
    margin: 15px 20px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    position: relative;
    z-index: 1;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 3px solid #FFD700;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    background: #ffffff;
    position: relative;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.title {
    font-size: 1.6rem;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 5px;
    font-weight: 700;
}

.subtitle {
    font-size: 1rem;
    color: #2e7d32;
    text-shadow: 0 0 10px rgba(200, 184, 122, 0.3);
}

/* Image Gallery */
.image-gallery {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.image-gallery a {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.image-gallery a:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    border-color: #FFED4E;
}

.image-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 13px;
    display: block;
}

/* CTA Buttons */
.cta-button {
    display: block;
    max-width: 350px;
    margin: 15px auto;
    cursor: pointer;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    position: relative;
    z-index: 1;
}

.cta-button-1 {
    animation: pulseButton 2.5s ease-in-out infinite, shakeButton 0.8s ease-in-out 3s infinite;
}

.cta-button-2 {
    animation: pulseButton 2.5s ease-in-out 0.5s infinite, shakeButton 0.8s ease-in-out 3.4s infinite;
}

.cta-button-3 {
    animation: pulseButton 2.5s ease-in-out 1.0s infinite, shakeButton 0.8s ease-in-out 3.8s infinite;
}

.btn-telegram {
    background: linear-gradient(180deg, #2196F3, #0D47A1);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(33, 150, 243, .55), 0 14px 34px rgba(0, 0, 0, .55);
}

.btn-telegram:hover {
    box-shadow: 0 0 0 1px rgba(33, 150, 243, .75), 0 16px 38px rgba(0, 0, 0, .6);
    transform: translateY(-2px);
}

@keyframes pulseButton {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shakeButton {
    0%, 100% { transform: translateX(0) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px) scale(1.03) rotate(-1deg); }
    20%, 40%, 60%, 80% { transform: translateX(4px) scale(1.03) rotate(1deg); }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 22px;
    background: linear-gradient(45deg, rgba(255,215,0,0.4), rgba(180,160,80,0.4), rgba(255,215,0,0.4));
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(0.95); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.cta-button:hover::before {
    opacity: 1;
    animation: glowPulseHover 1.5s ease-in-out infinite;
}

@keyframes glowPulseHover {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.cta-button:hover {
    animation: bounceHover 0.7s ease-out;
    transform: scale(1.12) translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    border-color: #FFED4E;
}

@keyframes bounceHover {
    0% { transform: scale(1) translateY(0); }
    30% { transform: scale(1.15) translateY(-10px); }
    50% { transform: scale(1.08) translateY(-6px); }
    70% { transform: scale(1.12) translateY(-9px); }
    100% { transform: scale(1.12) translateY(-8px); }
}

.cta-button img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover img {
    filter: brightness(1.1) contrast(1.05);
}

.cta-button:active {
    transform: scale(0.98) translateY(2px);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.1s ease;
}

.cta-button:active::before { opacity: 0.3; }

.cta-button::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
    animation: arrowBlink 2s ease-in-out infinite;
}

@keyframes arrowBlink {
    0%, 100% { opacity: 0; right: 20px; }
    50% { opacity: 0.8; right: 15px; }
}

.cta-button:hover::after {
    opacity: 1;
    right: 15px;
    animation: arrowMove 0.8s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

/* Stats Section */
.header-stats {
    display: flex;
    gap: 15px;
    margin: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-box {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 255, 250, 0.9));
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border-color: #FFED4E;
}

.stat-box.updated {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    border-color: #FFA500;
}

.stat-icon {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.stat-value {
    color: #1b5e20;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.stat-value.updated { color: #FFD700; }

.stat-label {
    color: #2e7d32;
    font-size: 0.85rem;
}

/* Jackpot Section */
.jackpot-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 255, 250, 0.95));
    border-radius: 25px;
    padding: 25px;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    position: relative;
    z-index: 1;
}

.jackpot-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.jackpot-amount {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 255, 250, 0.95));
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.jackpot-amount:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.jackpot-amount::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.amount-label {
    color: #2e7d32;
    font-size: 1.1rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.amount-value {
    color: #1b5e20;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    position: relative;
    z-index: 1;
}

.jackpot-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-item {
    background: linear-gradient(135deg, #ffffff, #f1f8e9);
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.info-label {
    color: #2e7d32;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Game Section */
.game-section-title {
    color: #FFD700;
    text-align: center;
    font-size: 24px;
    margin: 35px 20px 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.game-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.game-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 255, 250, 0.9));
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-box::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15), transparent);
    transition: left 0.5s;
}

.game-box:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    border-color: #FFED4E;
}

.game-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;     /* ← เปลี่ยนจาก 4/3 เป็น 16/9 แนวกว้างกว่า */
    object-fit: contain;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
}

.game-name {
    font-size: 15px;
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(200, 184, 122, 0.3);
}

.percent {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Withdrawal Section */
.withdrawal-section {
    max-width: 600px;
    margin: 35px auto 20px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.withdrawal-header {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 255, 250, 0.95));
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
}

.withdrawal-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.withdrawal-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 255, 250, 0.95));
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    overflow: hidden;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 250, 240, 0.95));
    border: 2px solid #FFD700;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(0.98) translateY(10px);
    animation: notificationIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15), transparent);
    animation: shimmer 2.5s infinite;
}

.notification.fade-out {
    animation: notificationOut 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.notification:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border-color: #FFED4E;
}

.notification .icon {
    width: 48px; height: 48px;
    margin: 0 12px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    padding: 4px;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease;
}

.notification:hover .icon { transform: rotate(360deg); }

.notification .title-highlight { flex: 1; }

.notification .highlight {
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.notification p {
    margin: 4px 0;
    color: #2e7d32;
    font-size: 0.9rem;
    font-weight: 400;
}

.status {
    display: flex;
    align-items: center;
    color: #2e7d32;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 12px;
}

.status i {
    margin-right: 6px;
    font-size: 1rem;
    color: #FFD700;
}

.status.processing i { animation: spin 1s linear infinite; }

.withdrawal-footer {
    text-align: center;
    padding: 10px;
    color: #2e7d32;
    font-size: 0.85rem;
    margin-top: 15px;
}

@keyframes notificationIn {
    0% { opacity: 0; transform: scale(0.98) translateY(10px); }
    50% { transform: scale(1.01); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes notificationOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.98) translateY(10px); }
}

@keyframes shimmer { to { left: 100%; } }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Provider Section */
.provider-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.provider-title {
    color: #FFD700;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-weight: 700;
}

.provider-container {
    width: 100%;
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(20,20,20,0.95), rgba(0,0,0,0.95)); /* Updated to black */
    border: 2px solid #FFD700;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.provider-list {
    display: flex;
    gap: 15px;
    animation: providerSlide 25s linear infinite;
    white-space: nowrap;
}

.provider-container:hover .provider-list { animation-play-state: paused; }

.provider-item {
    position: relative;
    display: inline-block;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 250, 240, 0.9));
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.provider-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    border-color: #FFED4E;
}

.provider-item .hot-badge {
    position: absolute;
    top: -8px; right: -8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.8);
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #ff4500, #ff8c00);
}

@keyframes providerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Banner Carousel */
.banner-carousel {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active { opacity: 1; }

.carousel-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    max-height: 500px;
    margin: 0 auto;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255,215,0,0.9), rgba(255,165,0,0.9));
    border: 2px solid #FFD700;
    color: #1b5e20;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7);
}

.carousel-btn:active { transform: translateY(-50%) scale(0.95); }
.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #FFD700;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.carousel-slide.active img { animation: slideIn 0.6s ease; }

/* Activity Section */
.activity-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.activity-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.activity-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    transition: all 0.4s ease;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 255, 250, 0.9));
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
    border-color: #FFED4E;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.activity-card:hover::before { left: 100%; }

.activity-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-image { transform: scale(1.05); }

.activity-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.activity-card:hover .activity-overlay { transform: translateY(0); }

.activity-name {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.activity-description {
    color: #2e7d32;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ==================== RESPONSIVE ==================== */

/* Mobile */
@media (max-width: 768px) {
    .game-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 12px !important;
    }
    .game-name { font-size: 13px; }
    .percent { font-size: 16px; }
}


/* Small Mobile */
@media (max-width: 480px) {
    .game-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }
    .game-name { font-size: 12px; }
    .percent { font-size: 15px; }
}

/* Desktop */
@media (min-width: 1024px) {
    body { padding: 0 60px; }

    .header { max-width: 1000px; margin: 25px auto; padding: 25px; }
    .logo { width: 120px; height: 120px; }
    .title { font-size: 1.8rem; }

    .cta-button { max-width: 385px; }
    .cta-button:hover { transform: scale(1.15) translateY(-10px); }

    .header-stats { max-width: 1000px; margin: 25px auto; gap: 20px; }
    .stat-box { padding: 18px; }
    .stat-value { font-size: 1.3rem; }

    .jackpot-container { max-width: 1000px; margin: 25px auto; padding: 25px; }
    .jackpot-title { font-size: 1.8rem; }
    .amount-value { font-size: 2.2rem; }

    .game-container { max-width: 1000px; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .game-box { padding: 12px; }

    .withdrawal-section { max-width: 700px; }
    .activity-section { max-width: 1000px; }
    .provider-section { max-width: 1000px; }
    .image-gallery { max-width: 1000px; }

    .banner-carousel { max-width: 1000px; }
    .carousel-slide img { max-height: 450px; }
    .carousel-btn { width: 55px; height: 55px; font-size: 1.3rem; }
    .carousel-btn.prev { left: 20px; }
    .carousel-btn.next { right: 20px; }
}
