:root {
    --primary-color: #ff0080;
    --secondary-color: #00d4ff;
    --accent-color: #ffd700;
    --success-color: #00ff88;
    --dark-bg: #0d0221;
    --card-bg: #1a0b2e;
    --gradient-bg: linear-gradient(135deg, #0d0221 0%, #1a0b2e 50%, #16213e 100%);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --gradient-1: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    --gradient-3: linear-gradient(135deg, #ffd700 0%, #ff6b00 100%);
    --shadow-neon: 0 0 20px rgba(255, 0, 128, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.4);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--gradient-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, rgba(13, 2, 33, 0.95) 0%, rgba(26, 11, 46, 0.9) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 0, 128, 0.3);
    backdrop-filter: blur(10px);
}

.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;
    filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.5));
}

.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: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

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

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

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

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

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

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.6) 0%, rgba(0, 212, 255, 0.5) 100%);
}

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

.slide-text h1,
.slide-text h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.8), 0 0 40px rgba(0, 212, 255, 0.6);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h1-text {
  position: relative;
  z-index: 1;
  width: min(90%, 900px);
  margin: 0 auto;
}

.h1-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 900;
  margin: 0 0 16px;
  color: #ffffff; /* fallback if gradient-clip not supported */
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}

.slide-tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.promo-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.highlight-text {
    background: var(--gradient-3);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 800;
    box-shadow: var(--shadow-neon);
}

.highlight-plus {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.slide-cta:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.8);
}

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

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
    transform: translateY(-50%) scale(1.15);
}

.slider-arrow.left {
    left: 25px;
}

.slider-arrow.right {
    right: 25px;
}

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

.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;
    box-shadow: var(--shadow-neon);
}

.games-showcase,
.rewards-section,
.join-section {
    padding: 80px 0;
}

.games-showcase h2,
.rewards-section h2,
.join-section h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

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

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

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

.game-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

.game-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

.game-tag.hot {
    background: var(--gradient-1);
    box-shadow: var(--shadow-neon);
}

.game-tag.jackpot {
    background: var(--gradient-3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.game-tag.new {
    background: var(--gradient-2);
    box-shadow: var(--shadow-glow);
}

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

.game-details {
    padding: 15px;
}

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

.game-provider {
    font-size: 13px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 10px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.stat {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.stat.win {
    background: var(--gradient-1);
}

.stat.jackpot {
    background: var(--gradient-3);
}

.games-info {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-card);
}

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

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

.rewards-section {
    background: linear-gradient(180deg, rgba(13, 2, 33, 0.5) 0%, rgba(26, 11, 46, 0.8) 100%);
}

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

.reward-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    position: relative;
}

.reward-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-glow);
}

.reward-card.mega {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 0, 128, 0.2) 100%);
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.reward-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow-neon);
}

.reward-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

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

.reward-amount {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.reward-bonus {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.reward-limit {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.reward-perks li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

.reward-perks li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 10px;
}

.reward-perks li:last-child {
    border-bottom: none;
}

.reward-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gradient-2);
    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;
}

.reward-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.reward-btn.primary {
    background: var(--gradient-1);
    font-size: 18px;
    padding: 18px;
}

.reward-btn.primary:hover {
    box-shadow: var(--shadow-neon);
}

.bonus-info-box {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow-card);
}

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

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

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

.join-steps {
    max-width: 900px;
    margin: 0 auto 50px;
}

.join-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-circle {
    flex-shrink: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    box-shadow: var(--shadow-neon);
}

.step-content {
    flex: 1;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

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

.join-cta-box {
    background: var(--gradient-1);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-neon);
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 900;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

.join-cta-btn {
    display: inline-block;
    padding: 20px 60px;
    background: #ffffff;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-decoration: none;
}

.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: 12px;
    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-neon);
}

.join-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 24px;
}

.feature-text {
    font-weight: 700;
    font-size: 14px;
}

footer {
    background: linear-gradient(180deg, rgba(13, 2, 33, 0.8) 0%, #000000 100%);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 0, 128, 0.3);
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 800;
}

.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.6);
    transition: all 0.3s ease;
}

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

.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) {
    .promo-slider {
        height: 60vh;
        max-height: 500px;
    }

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

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

    .promo-highlight {
        gap: 10px;
    }

    .highlight-text {
        padding: 10px 20px;
        font-size: 1.2rem;
    }

    .slide-cta {
        padding: 15px 40px;
        font-size: 16px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 26px;
    }

    .slider-arrow.left {
        left: 15px;
    }

    .slider-arrow.right {
        right: 15px;
    }

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

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

    .reward-card.mega {
        grid-column: span 1;
    }

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

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

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .cta-features {
        gap: 15px;
    }

    .games-showcase,
    .rewards-section,
    .join-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-display {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-text {
        width: 95%;
    }

    .join-cta-box {
        padding: 35px 20px;
    }

    .join-cta-btn {
        padding: 15px 40px;
        font-size: 16px;
    }
}