* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header */
.main-header {
    background: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.header-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 3px;
}

.logo-subtitle {
    font-size: 14px;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: #ffd700;
    color: #000;
}


/* Hero Section */
.hero-area {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 0;
}

.hero-background {
    background: url('https://tse-mm.bing.com/th?q=casino+gaming+lights.jpg') center/cover;
    background-blend-mode: overlay;
}

.hero-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 90px 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 19px;
    color: #ddd;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 18px;
}

.btn-download,
.btn-play {
    padding: 16px 38px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download {
    background: #ffd700;
    color: #000;
}

.btn-download:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.5);
}

.btn-play {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-play:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.hero-visual img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 15px 40px rgba(255,215,0,0.3));
}

/* Features */
.features-area {
    padding: 85px 28px;
    background: #f9f9f9;
}

.section-intro {
    text-align: center;
    margin-bottom: 55px;
}

.section-intro h2 {
    font-size: 44px;
    font-weight: 900;
    color: #000;
    margin-bottom: 14px;
}

.section-intro p {
    font-size: 18px;
    color: #666;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    background: #fff;
    padding: 38px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffd700;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 14px;
    font-weight: 800;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}


/* Categories */
.categories-area {
    padding: 85px 28px;
    background: #fff;
}

.categories-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    padding: 32px 22px;
    color: #fff;
}

.category-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.category-info p {
    font-size: 14px;
    margin-bottom: 18px;
    opacity: 0.9;
}

.category-btn {
    padding: 10px 28px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Jackpot Banner */
.jackpot-banner {
    padding: 85px 28px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.jackpot-content {
    text-align: center;
}

.jackpot-content h2 {
    font-size: 38px;
    font-weight: 900;
    color: #000;
    margin-bottom: 18px;
}

.jackpot-amount {
    font-size: 68px;
    font-weight: 900;
    color: #000;
    margin-bottom: 18px;
    text-shadow: 3px 3px 0 rgba(255,255,255,0.5);
}

.jackpot-content p {
    font-size: 20px;
    color: #333;
    margin-bottom: 28px;
    font-weight: 600;
}

.jackpot-btn {
    padding: 18px 45px;
    background: #000;
    color: #ffd700;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.jackpot-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Winners */
.winners-area {
    padding: 85px 28px;
    background: #f9f9f9;
}

.winners-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.winner-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.winner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.winner-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffd700;
    flex-shrink: 0;
}

.winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-details h4 {
    font-size: 19px;
    color: #000;
    margin-bottom: 4px;
    font-weight: 700;
}

.winner-details p {
    font-size: 14px;
    color: #666;
}

.winner-prize {
    margin-left: auto;
    text-align: right;
}

.prize-amount {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 4px;
}

.prize-game {
    display: block;
    font-size: 13px;
    color: #666;
}


/* Footer */
.main-footer {
    background: #000;
    color: #fff;
    padding: 65px 28px 28px;
}

.footer-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-bottom: 42px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 22px;
    color: #ffd700;
    font-weight: 800;
}

.footer-col p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
    color: #ccc;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

.footer-base {
    border-top: 1px solid #333;
    padding-top: 28px;
    text-align: center;
}

.footer-base p {
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 18px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 28px;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-download,
    .btn-play {
        width: 100%;
    }
    
    .hero-visual img {
        max-width: 100%;
    }
    
    .section-intro h2 {
        font-size: 34px;
    }
    
    .features-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .categories-display {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .jackpot-amount {
        font-size: 48px;
    }
    
    .winners-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 15px;
    }
    
    .btn-download,
    .btn-play {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .section-intro h2 {
        font-size: 28px;
    }
    
    .feature-item {
        padding: 32px 22px;
    }
    
    .jackpot-amount {
        font-size: 38px;
    }
    
    .jackpot-btn {
        padding: 16px 38px;
        font-size: 16px;
    }
    
    .winner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .winner-prize {
        margin-left: 0;
        text-align: center;
    }
}
