/* WePlay Gaming Design System - Pure CSS Version */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.6;
    color: hsl(0, 0%, 9%);
    background: linear-gradient(135deg, hsl(0, 0%, 98%), hsl(0, 0%, 94%));
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.img-desktop {
    display: block;
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.img-mobile {
    display: none;
    border-radius: 10px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Main Container */
.main-container {
    min-height: 100vh;
    background: hsl(0, 0%, 100%);
}

/* Typography */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

/* Navigation Active State */
.nav-link.active {
    color: hsl(45, 100%, 50%);
    font-weight: 600;
}

.mobile-nav-link.active {
    color: hsl(45, 100%, 50%);
    font-weight: 600;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid hsl(0, 0%, 90%);
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-title {
    font-size: 24px;
    font-weight: 900;
    color: hsl(0, 0%, 9%);
    font-family: 'Space Grotesk', sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: hsla(0, 0%, 9%, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: hsl(0, 0%, 9%);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: hsl(0, 0%, 9%);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #dedede; /* Bisa kamu ganti sesuai tema */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-nav-link {
    color: hsla(0, 0%, 9%, 0.7);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 128px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    font-size: 14px;
    color: hsl(0, 0%, 45%);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-divider {
    width: 1px;
    height: 16px;
    background: hsl(0, 0%, 90%);
}

.hero-text {
    text-align: center;
    margin-bottom: 64px;
}

.hero-title {
    font-size: 96px;
    color: hsl(0, 0%, 9%);
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 24px;
    color: hsla(0, 0%, 9%, 0.8);
    margin-bottom: 48px;
    font-weight: 500;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.progress-card {
    max-width: 384px;
    margin: 0 auto;
}

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

.card-element {
    position: absolute;
    font-size: 48px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.card-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.card-element:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.card-element:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.card-element:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; }

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

/* Card Component */
.card {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    box-shadow: 0 8px 30px hsla(0, 0%, 0%, 0.12);
    transform: translateY(-2px);
}

/* Progress Elements */
.progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.level-indicator {
    background: hsl(0, 0%, 9%);
    color: hsl(0, 0%, 98%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.level-title {
    font-weight: 600;
    color: hsl(0, 0%, 9%);
}

.level-subtitle {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
}

.progress-bar {
    background: hsl(0, 0%, 96%);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* Achievement Badge */
.achievement-badge {
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: hsl(0, 0%, 9%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Buttons */
.black-button {
    background: hsl(0, 0%, 9%);
    color: hsl(0, 0%, 98%);
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.black-button:hover {
    background: hsla(0, 0%, 9%, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px hsla(0, 0%, 0%, 0.12);
}

.yellow-button {
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    color: hsl(0, 0%, 9%);
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    border: none;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.yellow-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px hsla(0, 0%, 0%, 0.12);
}

.outline-button {
    background: transparent;
    color: hsl(0, 0%, 9%);
    border: 2px solid hsl(0, 0%, 9%);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.outline-button:hover {
    background: hsl(0, 0%, 9%);
    color: hsl(0, 0%, 100%);
}

/* All-in-One Gaming Section */
.all-in-one-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.all-in-one-content {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 48px;
    color: hsl(0, 0%, 9%);
    margin: 16px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    line-height: 0.9;
}

.section-subtitle {
    font-size: 18px;
    color: hsl(0, 0%, 45%);
}

/* Tier Rolling Section */
.tier-section {
    padding: 80px 0;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tier-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tier-card:hover::before {
    transform: scaleX(1);
}

.tier-icon {
    width: 64px;
    height: 64px;
    background: hsla(45, 100%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.tier-card:hover .tier-icon {
    transform: scale(1.1);
}

.tier-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: hsl(0, 0%, 9%);
}

.tier-description {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
}

/* Downline System Section */
.downline-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    text-align: start;
    padding: 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.step-card img {
    width: 100%;
    
    padding-right: 150px;
    margin-bottom: 30px;
    
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: hsl(0, 0%, 9%);
    font-size: 18px;
    text-align: start;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: hsl(0, 0%, 9%);
    text-align: start;
}

.step-description {
    color: #000;
    line-height: 1.6;
    text-align: start;
}

/* Tutorial Section */
.tutorial-section {
    padding: 80px 0;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tutorial-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.tutorial-video {
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

.tutorial-info {
    padding: 24px 0;
    text-align: center;
}

.tutorial-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: hsl(0, 0%, 9%);
}

.tutorial-description {
    color: hsl(0, 0%, 45%);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.game-card {
    text-align: center;
    padding: 32px;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-icon {
    width: 80px;
    height: 80px;
    background: hsla(45, 100%, 50%, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.game-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: hsl(0, 0%, 9%);
}

.game-description {
    color: hsl(0, 0%, 45%);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid hsl(0, 0%, 90%);
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    color: hsl(0, 0%, 9%);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: hsl(45, 100%, 45%);
}

.faq-answer {
    padding: 0 0 24px;
    color: hsl(0, 0%, 45%);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-icon {
    transition: transform 0.3s ease;
}

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

/* Animated Slider Section */
.slider-section {
    padding: 80px 0;
    background: hsl(0, 0%, 9%);
    overflow: hidden;
}

.slider-container {
    position: relative;
}

.slider-text {
    font-size: 72px;
    font-weight: 900;
    color: hsl(45, 100%, 50%);
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
    animation: slideText 20s linear infinite;
}

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

/* Footer */
.footer {
    background: hsl(0, 0%, 9%);
    color: hsl(0, 0%, 100%);
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 24px;
    font-weight: 900;
    color: hsl(45, 100%, 50%);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.7);
    max-width: 384px;
    line-height: 1.6;
}

.footer-link-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: hsl(0, 0%, 100%);
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(45, 100%, 50%);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    color: hsla(0, 0%, 100%, 0.6);
}

.footer-highlight {
    color: hsl(45, 100%, 50%);
}

.footer-register {
    text-align: center;
    margin-bottom: 32px;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.4s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Additional Animations */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* LIVE CASINO PAGE STYLES */

/* Casino Hero Section */
.casino-hero-section {
    padding: 80px 0 128px;
    position: relative;
    overflow: hidden;
    background: white
}

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

.casino-element {
    position: absolute;
    font-size: 36px;
    opacity: 0.15;
    animation: casinoFloat 8s ease-in-out infinite;
}

.casino-element:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.casino-element:nth-child(2) { top: 25%; right: 12%; animation-delay: 1.5s; }
.casino-element:nth-child(3) { top: 45%; left: 15%; animation-delay: 3s; }
.casino-element:nth-child(4) { top: 65%; right: 8%; animation-delay: 4.5s; }
.casino-element:nth-child(5) { top: 80%; left: 25%; animation-delay: 6s; }
.casino-element:nth-child(6) { top: 35%; right: 25%; animation-delay: 7.5s; }

@keyframes casinoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-15px) rotate(3deg) scale(1.1); 
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-25px) rotate(-2deg) scale(1.05); 
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-10px) rotate(5deg) scale(1.15); 
        opacity: 0.18;
    }
}

.casino-hero-content {
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.casino-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.8);
}

.casino-hero-text {
    text-align: center;
    margin-bottom: 64px;
}

.casino-hero-title {
    font-size: 96px;
    color: black;
    margin-bottom: 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    line-height: 0.9;
}

.casino-hero-subtitle {
    font-size: 24px;
    color: hsla(0, 0%, 9%, 0.8);
    margin-bottom: 48px;
    font-weight: 500;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.casino-live-indicator {
    max-width: 400px;
    margin: 0 auto;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: hsl(120, 100%, 50%);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

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

.live-text {
    font-weight: 700;
    color: hsl(120, 100%, 50%);
}

.live-players {
    color: hsl(0, 0%, 45%);
    font-size: 14px;
}

.live-games {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid hsl(0, 0%, 90%);
}

.live-game-item:last-child {
    border-bottom: none;
}

.game-name {
    font-weight: 600;
    color: hsl(0, 0%, 9%);
}

.game-players {
    font-size: 12px;
    color: hsl(0, 0%, 45%);
}

/* Popular Games Section */
.popular-games-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.popular-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.popular-game-card {
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.15);
}

.game-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, hsla(245, 25%, 8%, 0.9), hsla(0, 0%, 9%, 0.8));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    color: hsl(0, 0%, 9%);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.game-badge.vip {
    background: linear-gradient(135deg, hsl(280, 100%, 50%), hsl(260, 100%, 45%));
    color: hsl(0, 0%, 100%);
}

.game-badge.new {
    background: linear-gradient(135deg, hsl(120, 100%, 50%), hsl(100, 100%, 45%));
}

.game-badge.exclusive {
    background: linear-gradient(135deg, hsl(0, 100%, 50%), hsl(340, 100%, 45%));
    color: hsl(0, 0%, 100%);
}

.game-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px hsla(0, 0%, 0%, 0.3));
}

.game-info {
    padding: 0 8px;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: hsl(0, 0%, 9%);
}

.game-description {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
    margin-bottom: 12px;
    line-height: 1.4;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: hsl(0, 0%, 45%);
}

/* Live Dealer Section */
.live-dealer-section {
    padding: 80px 0;
}

.live-dealer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.dealer-features {
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: hsla(45, 100%, 50%, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: hsl(0, 0%, 9%);
}

.feature-text p {
    color: hsl(0, 0%, 45%);
    font-size: 14px;
    line-height: 1.5;
}

.dealer-showcase {
    display: flex;
    justify-content: center;
}

.dealer-card {
    text-align: center;
    padding: 32px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
}

.dealer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
}

.dealer-avatar {
    width: 80px;
    height: 80px;
    background: hsla(45, 100%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
}

.dealer-name {
    font-weight: 700;
    margin-bottom: 4px;
    color: hsl(0, 0%, 9%);
}

.dealer-specialty {
    color: hsl(0, 0%, 45%);
    font-size: 14px;
    margin-bottom: 8px;
}

.dealer-rating {
    color: hsl(45, 100%, 45%);
    font-weight: 600;
}

.dealer-cta {
    margin-top: 32px;
}

/* WePlay Games Section */
.weplay-games-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.weplay-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.weplay-game-item {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px hsla(0, 0%, 0%, 0.15);
}

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

.game-category {
    background: hsla(45, 100%, 50%, 0.1);
    color: hsl(45, 100%, 35%);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.game-status.live {
    font-size: 10px;
    font-weight: 700;
    color: hsl(0, 100%, 50%);
}

.game-visual {
    text-align: center;
    margin: 24px 0;
}

.game-large-icon {
    font-size: 64px;
    filter: drop-shadow(0 4px 12px hsla(0, 0%, 0%, 0.2));
}

.game-details {
    text-align: center;
}

.game-desc {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
    margin-bottom: 16px;
    line-height: 1.4;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: hsl(0, 0%, 45%);
}

.players-count {
    color: hsl(120, 100%, 35%);
}

.min-bet {
    color: hsl(45, 100%, 35%);
}

/* Join WePlay Section */
.join-weplay-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(260, 30%, 12%), hsl(280, 25%, 8%));
    color: hsl(0, 0%, 100%);
}

.join-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.join-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    color: hsl(0, 0%, 100%);
    font-family: 'Space Grotesk', sans-serif;
}

.join-subtitle {
    font-size: 18px;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.join-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.join-feature {
    color: hsla(0, 0%, 100%, 0.9);
    font-weight: 500;
}

.join-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.yellow-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.join-visual {
    display: flex;
    justify-content: center;
}

.bonus-card {
    background: linear-gradient(135deg, hsla(45, 100%, 50%, 0.1), hsla(35, 100%, 45%, 0.1));
    border: 1px solid hsla(45, 100%, 50%, 0.3);
    text-align: center;
    padding: 32px;
    max-width: 320px;
}

.bonus-amount {
    font-size: 32px;
    font-weight: 900;
    color: hsl(45, 100%, 50%);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.bonus-text {
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 24px;
}

.bonus-progress {
    text-align: left;
}

.progress-text {
    font-size: 12px;
    color: hsla(0, 0%, 100%, 0.6);
    margin-top: 8px;
}

/* SLOTS PAGE STYLES */

/* Slots Hero Section */
.slots-hero-section {
    padding: 80px 0 128px;
    position: relative;
    overflow: hidden;
    background: white
}

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

.slot-element {
    position: absolute;
    font-size: 32px;
    opacity: 0.12;
    animation: slotFloat 10s ease-in-out infinite;
}

.slot-element:nth-child(1) { top: 12%; left: 5%; animation-delay: 0s; }
.slot-element:nth-child(2) { top: 18%; right: 8%; animation-delay: 1.2s; }
.slot-element:nth-child(3) { top: 35%; left: 12%; animation-delay: 2.5s; }
.slot-element:nth-child(4) { top: 50%; right: 15%; animation-delay: 3.8s; }
.slot-element:nth-child(5) { top: 68%; left: 8%; animation-delay: 5s; }
.slot-element:nth-child(6) { top: 75%; right: 5%; animation-delay: 6.3s; }
.slot-element:nth-child(7) { top: 28%; left: 25%; animation-delay: 7.5s; }
.slot-element:nth-child(8) { top: 55%; right: 25%; animation-delay: 8.8s; }

@keyframes slotFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.12;
    }
    20% { 
        transform: translateY(-12px) rotate(2deg) scale(1.05); 
        opacity: 0.2;
    }
    40% { 
        transform: translateY(-20px) rotate(-1deg) scale(1.1); 
        opacity: 0.25;
    }
    60% { 
        transform: translateY(-15px) rotate(3deg) scale(1.08); 
        opacity: 0.18;
    }
    80% { 
        transform: translateY(-8px) rotate(-2deg) scale(1.03); 
        opacity: 0.15;
    }
}

.slots-hero-content {
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.slots-hero-text {
    text-align: center;
    margin-bottom: 64px;
}

.slots-hero-title {
    font-size: 96px;
    color: black;
    margin-bottom: 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    line-height: 0.9;
}

.slots-hero-subtitle {
    font-size: 24px;
    color: black;
    margin-bottom: 48px;
    font-weight: 500;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.jackpot-tracker {
    max-width: 420px;
    margin: 0 auto;
}

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

.jackpot-title {
    font-weight: 700;
    color: hsl(0, 0%, 9%);
}

.jackpot-status {
    background: hsl(120, 100%, 50%);
    color: hsl(0, 0%, 100%);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.jackpot-amount {
    font-size: 28px;
    font-weight: 900;
    color: hsl(45, 100%, 50%);
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    animation: jackpotPulse 3s ease-in-out infinite;
}

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

.jackpot-games {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jackpot-game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid hsl(0, 0%, 90%);
    font-size: 14px;
}

.jackpot-game:last-child {
    border-bottom: none;
}

.game-jackpot {
    font-weight: 600;
    color: hsl(45, 100%, 45%);
}

/* Popular Slots Section */
.popular-slots-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.popular-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.popular-slot-card {
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slots-parallax:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(5deg);
    box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.15);
}

.slot-thumbnail {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, hsla(260, 30%, 12%, 0.9), hsla(280, 25%, 8%, 0.8));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.slot-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.slot-badge.hot {
    background: linear-gradient(135deg, hsl(15, 100%, 50%), hsl(0, 100%, 45%));
    color: hsl(0, 0%, 100%);
}

.slot-badge.jackpot {
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    color: hsl(0, 0%, 9%);
}

.slot-badge.new {
    background: linear-gradient(135deg, hsl(120, 100%, 50%), hsl(100, 100%, 45%));
    color: hsl(0, 0%, 100%);
}

.slot-badge.exclusive {
    background: linear-gradient(135deg, hsl(280, 100%, 50%), hsl(260, 100%, 45%));
    color: hsl(0, 0%, 100%);
}

.slot-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slot-reels {
    display: flex;
    gap: 8px;
}

.reel {
    width: 40px;
    height: 40px;
    background: hsla(45, 100%, 50%, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: slotSpin 2s ease-in-out infinite;
    border: 2px solid hsla(45, 100%, 50%, 0.3);
}

.reel:nth-child(2) {
    animation-delay: 0.3s;
}

.reel:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slotSpin {
    0%, 90%, 100% { 
        transform: translateY(0) rotateX(0deg); 
    }
    25% { 
        transform: translateY(-5px) rotateX(180deg); 
    }
    50% { 
        transform: translateY(-8px) rotateX(360deg); 
    }
    75% { 
        transform: translateY(-5px) rotateX(540deg); 
    }
}

.slot-info {
    padding: 0 8px;
}

.slot-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: hsl(0, 0%, 9%);
}

.slot-provider {
    font-size: 12px;
    color: hsl(0, 0%, 45%);
    margin-bottom: 8px;
}

.slot-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 8px;
}

.slot-rtp {
    color: hsl(120, 100%, 35%);
    font-weight: 600;
}

.slot-volatility {
    color: hsl(0, 100%, 45%);
    font-weight: 600;
}

.slot-features {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.feature-tag {
    background: hsla(45, 100%, 50%, 0.1);
    color: hsl(45, 100%, 35%);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
}

.mobile-menu.active {
    display: flex;
}

/* Provider Section */
.provider-section {
    padding: 80px 0;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.provider-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px hsla(45, 100%, 50%, 0.2);
}

.provider-logo {
    margin-bottom: 20px;
}

.provider-logo img {
   max-width: 150px;
   
}

.provider-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, hsla(45, 100%, 50%, 0.1), hsla(35, 100%, 45%, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.provider-card:hover .provider-icon {
    transform: scale(1.1) rotate(5deg);
}

.provider-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: hsl(0, 0%, 9%);
}

.provider-games {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
    margin-bottom: 12px;
}

.provider-features {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.provider-tag {
    background: hsla(45, 100%, 50%, 0.1);
    color: hsl(45, 100%, 35%);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* WePlay Slots Section */
.weplay-slots-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.weplay-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.weplay-slot-item {
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.slot-hover-effect {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-hover-effect:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.15);
}

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

.slot-category {
    background: hsla(45, 100%, 50%, 0.1);
    color: hsl(45, 100%, 35%);
    padding: 6px 14px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
}

.slot-visual-area {
    text-align: center;
    margin: 32px 0;
}

.slot-machine {
    display: inline-block;
    background: linear-gradient(135deg, hsla(260, 30%, 12%, 0.9), hsla(280, 25%, 8%, 0.8));
    border-radius: 16px;
    padding: 20px;
    border: 3px solid hsla(45, 100%, 50%, 0.3);
    box-shadow: 0 8px 25px hsla(0, 0%, 0%, 0.2);
}

.slot-screen {
    background: hsla(0, 0%, 5%, 0.8);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid hsla(45, 100%, 50%, 0.2);
}

.spinning-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.reel-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.symbol {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsla(45, 100%, 50%, 0.2), hsla(35, 100%, 45%, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid hsla(45, 100%, 50%, 0.3);
    animation: symbolGlow 3s ease-in-out infinite;
}

.symbol:nth-child(2) {
    animation-delay: 0.5s;
}

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

@keyframes symbolGlow {
    0%, 100% { 
        box-shadow: 0 0 5px hsla(45, 100%, 50%, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 15px hsla(45, 100%, 50%, 0.6);
        transform: scale(1.05);
    }
}

.slot-details {
    text-align: center;
}

.slot-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: hsl(0, 0%, 9%);
}

.slot-desc {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
    margin-bottom: 16px;
    line-height: 1.4;
}

.slot-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: hsl(0, 0%, 45%);
}

.jackpot-amount {
    color: hsl(45, 100%, 45%);
    font-weight: 600;
}

.recent-win {
    color: hsl(120, 100%, 35%);
    font-weight: 600;
}

/* Slots Join Section */
.slots-join {
    background: linear-gradient(135deg, hsl(260, 30%, 12%), hsl(280, 25%, 8%));
}

.slots-bonus {
    display: flex;
    justify-content: center;
}

.slots-bonus-card {
    background: linear-gradient(135deg, hsla(45, 100%, 50%, 0.1), hsla(35, 100%, 45%, 0.1));
    border: 1px solid hsla(45, 100%, 50%, 0.3);
    text-align: center;
    padding: 32px;
    max-width: 320px;
}

.bonus-header {
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 16px;
    font-weight: 600;
}

.freespins-amount {
    font-size: 28px;
    font-weight: 900;
    color: hsl(45, 100%, 50%);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.bonus-games {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.bonus-game {
    background: hsla(45, 100%, 50%, 0.1);
    color: hsl(45, 100%, 70%);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-section,
    .casino-hero-section,
    .slots-hero-section {
        padding: 40px 0 80px;
    }
    
    .hero-stats,
    .casino-hero-stats,
    .slots-hero-stats {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-title,
    .casino-hero-title,
    .slots-hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
    
    .hero-subtitle,
    .casino-hero-subtitle,
    .slots-hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .popular-games-grid,
    .popular-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .live-dealer-content,
    .join-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .weplay-games-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .provider-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .weplay-slots-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .join-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .slider-text {
        font-size: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .casino-hero-title,
    .slots-hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tier-grid,
    .popular-games-grid,
    .popular-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-text {
        font-size: 36px;
    }
}

/* 4D Results Hero Styles */
.results-hero {
    background: white;
}

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

.number-element {
    position: absolute;
    font-size: 64px;
    font-weight: 900;
    color: hsl(280, 60%, 70%);
    opacity: 0.15;
    animation: numberFloat 10s ease-in-out infinite;
    font-family: 'Space Grotesk', sans-serif;
}

.number-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.number-element:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.number-element:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; }
.number-element:nth-child(4) { top: 50%; left: 5%; animation-delay: 3s; }
.number-element:nth-child(5) { top: 60%; right: 25%; animation-delay: 4s; }
.number-element:nth-child(6) { top: 70%; left: 60%; animation-delay: 5s; }
.number-element:nth-child(7) { top: 80%; left: 20%; animation-delay: 6s; }
.number-element:nth-child(8) { top: 85%; right: 10%; animation-delay: 7s; }

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

.latest-result-card {
    max-width: 600px;
    margin: 0 auto;
}

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

.result-title {
    font-size: 18px;
    font-weight: 700;
    color: hsl(0, 0%, 9%);
}

.result-date {
    background: hsl(280, 60%, 50%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.winning-numbers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prize-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: hsla(0, 0%, 96%, 0.5);
    border-radius: 8px;
}

.prize-label {
    font-weight: 600;
    color: hsl(0, 0%, 45%);
}

.winning-number {
    font-size: 24px;
    font-weight: 900;
    color: hsl(0, 0%, 9%);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 4px;
}

/* Results Table Section */
.results-table-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.results-filter {
    margin: 32px 0;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid hsl(0, 0%, 90%);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: hsl(0, 0%, 45%);
}

.filter-tab.active {
    background: hsl(280, 60%, 50%);
    border-color: hsl(280, 60%, 50%);
    color: white;
}

.filter-tab:hover:not(.active) {
    border-color: hsl(280, 60%, 50%);
    color: hsl(280, 60%, 50%);
}

.results-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th {
    background: hsl(0, 0%, 96%);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: hsl(0, 0%, 9%);
    border-bottom: 1px solid hsl(0, 0%, 90%);
}

.results-table td {
    padding: 16px;
    border-bottom: 1px solid hsl(0, 0%, 95%);
}

.provider-cell {
    min-width: 150px;
}

.provider-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.provider-name {
    font-weight: 600;
    color: hsl(0, 0%, 9%);
}

.draw-time {
    font-size: 12px;
    color: hsl(0, 0%, 45%);
}

.winning-cell .number {
    background: linear-gradient(135deg, hsl(280, 60%, 50%), hsl(280, 80%, 60%));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
}

.special-cell, .consolation-cell {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
    max-width: 200px;
}

/* Providers Section */
.providers-section {
    padding: 80px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.provider-card {
    text-align: center;
    padding: 32px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.provider-card:hover {
    transform: translateY(-8px);
}

.provider-logo {
    width: 80px;
    height: 80px;

    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.provider-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: hsl(0, 0%, 9%);
}

.provider-description {
    color: hsl(0, 0%, 45%);
    margin-bottom: 24px;
    line-height: 1.6;
}

.provider-stats {
    display: flex;
    justify-content: space-around;
    gap: 16px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 900;
    color: hsl(280, 60%, 50%);
}

.stat-label {
    font-size: 12px;
    color: hsl(0, 0%, 45%);
}

/* How to Play Section */
.how-to-play-section {
    padding: 80px 0;
    background: hsla(0, 0%, 96%, 0.3);
}

.play-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.step-card-4d {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08);
    transition: transform 0.3s ease;
}

.step-card-4d:hover {
    transform: translateY(-4px);
}

.step-number-4d {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, hsl(280, 60%, 50%), hsl(280, 80%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.step-title-4d {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: hsl(0, 0%, 9%);
}

.step-description-4d {
    color: hsl(0, 0%, 45%);
    line-height: 1.6;
}

.prize-structure {
    margin-top: 48px;
    text-align: center;
}

.prize-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: hsl(0, 0%, 9%);
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.prize-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08);
}

.prize-position {
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 45%);
}

.prize-amount {
    font-size: 18px;
    font-weight: 900;
    color: hsl(280, 60%, 50%);
}

/* Winning Stories Section */
.winning-stories-section {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.story-card {
    padding: 32px;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.winner-avatar {
    width: 50px;
    height: 50px;
    background: hsla(280, 60%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-weight: 700;
    color: hsl(0, 0%, 9%);
    margin-bottom: 4px;
}

.winner-location {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
}

.winning-amount {
    background: linear-gradient(135deg, hsl(280, 60%, 50%), hsl(280, 80%, 60%));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.story-text {
    color: hsl(0, 0%, 45%);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid hsl(0, 0%, 90%);
}

.story-date {
    font-size: 12px;
    color: hsl(0, 0%, 45%);
}

.story-game {
    background: hsla(280, 60%, 50%, 0.1);
    color: hsl(280, 60%, 50%);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .img-desktop {
        display: none;
    }

    .img-mobile {
        display: block;
    }

    .step-card img {
    width: 100%;
    padding-right: 30px;
    margin-bottom: 30px;
    
}
}

