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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    overflow-x: hidden;
}

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

a:hover {
    color: #ffb74d;
}

.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 #ff9800;
    color: #ff9800;
}

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

.btn-register {
    background-color: #ff9800;
    border: 2px solid #ff9800;
    color: #121212;
}

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

.hero-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;
    padding: 0 50px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 600px;
    padding: 30px;
    background-color: rgba(18, 18, 18, 0.8);
    border-radius: 10px;
    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: 2.5rem;
    margin-bottom: 15px;
    color: #ff9800;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

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

.section {
    padding: 80px 0;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff9800;
    border-radius: 2px;
}

.why-choose-us {
    background-color: #1a1a1a;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    padding: 30px;
    background-color: #212121;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff9800;
}

.popular-games {
    background-color: #121212;
}

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

.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;
}

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

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

.game-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.3s ease;
}

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

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

.game-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-play {
    background-color: #ff9800;
    color: #121212;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

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

.how-to-start {
    background-color: #1a1a1a;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #ff9800;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff9800;
    color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff9800;
}

.cta {
    text-align: center;
    margin-top: 50px;
}

.btn-cta {
    background-color: #ff9800;
    color: #121212;
    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, 152, 0, 0.3);
    transition: all 0.3s ease;
}

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

footer {
    background-color: #0a0a0a;
    padding: 50px 0 20px;
}

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

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

.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.7;
    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: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content {
        max-width: 100%;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .header-buttons .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .hero-slider {
        height: 50vh;
    }
    
    .slide {
        padding: 0 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}