:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --light-bg: #f8fafc;
    --white-bg: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

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

header {
    background: var(--gradient-primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo-section {
    flex: 0 0 auto;
}

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

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

.btn-login,
.btn-register {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-login:hover {
    background: #ffffff;
    color: var(--primary-color);
}

.btn-register {
    background: var(--gradient-success);
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hero-section {
    position: relative;
    height: 65vh;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

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

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

.hero-slide.active {
    opacity: 1;
}

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

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

.hero-content h1,
.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gradient-success);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    font-size: 2.5rem;
    width: 55px;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-weight: bold;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

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

.indicator.active {
    background: #ffffff;
    width: 35px;
    border-radius: 6px;
}

.trust-badges {
    background: var(--white-bg);
    padding: 50px 0;
    box-shadow: var(--shadow-sm);
}

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

.badge-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.badge-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.badge-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.badge-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.games-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.game-card {
    background: var(--white-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.game-info {
    padding: 20px;
    text-align: center;
}

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

.game-play-btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--gradient-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.bonuses-section {
    padding: 80px 0;
    background: var(--white-bg);
}

.bonus-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.bonus-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.bonus-box {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 35px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.bonus-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.bonus-header {
    margin-bottom: 25px;
}

.bonus-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bonus-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.bonus-amount {
    text-align: center;
    padding: 25px;
    background: var(--white-bg);
    border-radius: 12px;
    margin-bottom: 25px;
}

.amount-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.amount-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.bonus-details {
    background: var(--white-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 700;
}

.bonus-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.bonus-claim-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--gradient-success);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.terms-section {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    border-left: 5px solid var(--primary-color);
}

.terms-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.registration-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.registration-process {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: var(--white-bg);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    flex: 0 0 80px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-info {
    flex: 1;
}

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

.step-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.security-features {
    background: var(--white-bg);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.security-features h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.feature-item {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-container {
    text-align: center;
}

.primary-cta {
    display: inline-block;
    padding: 20px 60px;
    background: var(--gradient-success);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

footer {
    background: var(--white-bg);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-color);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    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: 25px;
}

.payment-methods img,
.game-providers img {
    height: 35px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payment-methods img:hover,
.game-providers img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .logo {
        height: 35px;
    }

    .header-buttons {
        gap: 10px;
    }

    .btn-login,
    .btn-register {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-section {
        height: 50vh;
        max-height: 450px;
    }

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

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

    .hero-cta {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .features-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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