:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #c1328e;
    --purple-accent: #8b5cf6;
    --bg-gradient-start: #1a0b2e;
    --bg-gradient-end: #2d1b4e;
    --card-bg: #2a1a4a;
    --light-card: #3d2a5f;
    --text-primary: #ffffff;
    --text-secondary: #d1c4e9;
    --border-glow: rgba(255, 107, 53, 0.3);
    --gradient-vibrant: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #c1328e 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #c1328e 100%);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.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: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-login:hover {
    background: var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
    transform: scale(1.05);
}

.btn-register {
    background: var(--gradient-vibrant);
    color: var(--text-primary);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-register:hover {
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.7);
    transform: scale(1.05);
}

.promo-slider {
    position: relative;
    height: 65vh;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

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

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

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

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

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.7) 0%, rgba(193, 50, 142, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-text {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.promo-text h1,
.promo-text h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    }
}

.promo-tagline {
    font-size: 1.5rem;
    margin-bottom: 35px;
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--gradient-vibrant);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.promo-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.8);
}

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

.nav-btn {
    background: rgba(255, 107, 53, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-weight: bold;
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

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

.pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 7px;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

.showcase-title,
.rewards-title,
.join-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showcase-intro,
.rewards-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.9;
}

.games-showcase {
    padding: 80px 0;
    background: rgba(45, 27, 78, 0.5);
}

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

.showcase-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.showcase-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-card:hover .card-image img {
    transform: scale(1.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-vibrant);
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.play-now-btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--gradient-vibrant);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.play-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7);
}

.rewards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(45, 27, 78, 0.8) 100%);
}

.rewards-intro p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.9;
}

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

.reward-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reward-card:hover::before {
    opacity: 1;
}

.reward-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.reward-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.reward-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.reward-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 800;
}

.reward-highlight {
    background: var(--gradient-vibrant);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.highlight-amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.highlight-text {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.reward-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding: 0 10px;
}

.reward-features li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
    padding-left: 5px;
}

.reward-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.reward-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gradient-vibrant);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.reward-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7);
}

.bonus-info-box {
    background: var(--light-card);
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bonus-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.bonus-info-box p {
    color: var(--text-secondary);
    line-height: 1.9;
}

.join-section {
    padding: 80px 0;
    background: rgba(45, 27, 78, 0.5);
}

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

.join-steps {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.join-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.join-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.3);
    transform: translateX(10px);
}

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

.badge-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-vibrant);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.step-details {
    flex: 1;
}

.step-details h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 800;
}

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

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

.join-cta-button {
    display: inline-block;
    padding: 22px 55px;
    background: var(--gradient-vibrant);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.join-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.8);
}

.cta-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

footer {
    background: rgba(26, 11, 46, 0.95);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

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

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

.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.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.payment-methods img:hover,
.game-providers img:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: brightness(1) invert(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    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;
    }

    .promo-slider {
        height: 50vh;
        max-height: 450px;
    }

    .promo-text h1,
    .promo-text h2 {
        font-size: 2.2rem;
    }

    .promo-tagline {
        font-size: 1.1rem;
    }

    .promo-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .showcase-title,
    .rewards-title,
    .join-title {
        font-size: 2.2rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .promo-text h1,
    .promo-text h2 {
        font-size: 1.8rem;
    }

    .promo-tagline {
        font-size: 1rem;
    }

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