:root {
    --primary-color: #ff6b00;
    --secondary-color: #ffd700;
    --accent-color: #00d4ff;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-1: linear-gradient(135deg, #ff6b00 0%, #ff0844 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    --shadow-1: 0 4px 20px rgba(255, 107, 0, 0.3);
    --shadow-2: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section .logo {
    height: 45px;
    width: auto;
}

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

.btn-login,
.btn-register {
    display: inline-block;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-1);
}

.btn-register {
    background: var(--gradient-1);
    color: var(--text-primary);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-1);
}

.hero-slider {
    position: relative;
    height: 70vh;
    max-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-content h1,
.slide-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-1);
    color: var(--text-primary);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-1);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 107, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

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

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

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.games-section,
.bonuses-section,
.registration-section {
    padding: 80px 0;
}

.games-section h2,
.bonuses-section h2,
.registration-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.game-provider {
    font-size: 14px;
    color: var(--text-secondary);
}

.games-description {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.games-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.games-description p:last-child {
    margin-bottom: 0;
}

.bonuses-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2);
}

.bonus-card.featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
    border: 2px solid var(--primary-color);
}

.bonus-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.bonus-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.bonus-extra {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.bonus-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.bonus-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.bonus-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gradient-1);
    color: var(--text-primary);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.bonus-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-1);
}

.bonus-terms {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.bonus-terms h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.bonus-terms p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.bonus-terms p:last-child {
    margin-bottom: 0;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: var(--shadow-1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-content p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.registration-cta {
    text-align: center;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.cta-text {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.cta-button.large {
    padding: 20px 60px;
    font-size: 20px;
}

.game-play-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: var(--gradient-1);
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-1);
}

footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.payment-methods img:hover,
.game-providers img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        max-height: 500px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

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

    .game-card img {
        height: 150px;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .games-section,
    .bonuses-section,
    .registration-section {
        padding: 50px 0;
    }

    .payment-methods img,
    .game-providers img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        gap: 10px;
    }

    .btn-login,
    .btn-register {
        padding: 8px 15px;
        font-size: 12px;
    }

    .logo-section .logo {
        height: 35px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content {
        width: 95%;
    }
}