* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0d0d0d;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #ffd700;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffeb3b;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.btn-login:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.btn-register {
    background-color: #ffd700;
    border: 2px solid #ffd700;
    color: #1a1a1a;
}

.btn-register:hover {
    background-color: #ffeb3b;
    border-color: #ffeb3b;
}

.big-win-slider {
    position: relative;
    height: 75vh;
    max-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
    color: #fff;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-slide {
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-slide:hover {
    background-color: #ffeb3b;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ffd700;
    transform: scale(1.3);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffd700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffd700, #ffeb3b);
    border-radius: 2px;
}

.jackpot-section {
    background-color: #1a1a1a;
    color: #fff;
}

.jackpot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.jackpot-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.jackpot-image img {
    width: 100%;
    height: auto;
    display: block;
}

.jackpot-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
}

.jackpot-text h3 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 25px;
}

.jackpot-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.jackpot-features {
    margin-top: 30px;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.jackpot-games {
    background-color: #0d0d0d;
    color: #fff;
}

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

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-card img {
    width: 100%;
    height: auto;
    display: block;
}

.jackpot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(70%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-overlay h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.game-overlay p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

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

.jackpot-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.15s;
}

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

.btn-play {
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

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

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

.next-winner {
    background-color: #1a1a1a;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.next-winner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.winner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.winner-content h3 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.winner-content p {
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.jackpot-counter {
    background-color: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    display: inline-block;
}

.jackpot-counter h4 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.jackpot-amount-display {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-jackpot {
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-jackpot:hover {
    background-color: #ffeb3b;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

footer {
    background-color: #0d0d0d;
    padding: 50px 0 20px;
    color: #fff;
    border-top: 1px solid #333;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffd700;
}

.payment-methods, .game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.payment-methods img, .game-providers img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.payment-methods img:hover, .game-providers img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .jackpot-content {
        grid-template-columns: 1fr;
    }
    
    .jackpot-image {
        order: -1;
    }
    
    .winner-content h3 {
        font-size: 2.5rem;
    }
    
    .jackpot-amount-display {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .big-win-slider {
        height: 60vh;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .jackpot-text h3 {
        font-size: 1.8rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .winner-content h3 {
        font-size: 2.2rem;
    }
    
    .jackpot-amount-display {
        font-size: 2.2rem;
    }
    
    .btn-jackpot {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .header-buttons .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .big-win-slider {
        height: 50vh;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn-slide {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .jackpot-text h3 {
        font-size: 1.6rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .winner-content h3 {
        font-size: 1.8rem;
    }
    
    .jackpot-amount-display {
        font-size: 1.8rem;
    }
}

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

.jackpot-amount-display {
    animation: pulse 2s infinite;
}