:root {
    --primary-color: #6c4ab0;
    --secondary-color: #8b5cf6;
    --dark-bg: #0f172a;
    --darker-bg: #0a0f1d;
    --text-light: #e2e8f0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
}

.dark-theme {
    color: var(--text-light);
}

.age-disclaimer {
    background-color: var(--darker-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-item span {
    color: var(--text-light);
    font-weight: 500;
}

.update-bar {
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.listing-section {
    background-color: var(--dark-bg);
}

.text-section {
    background-color: var(--darker-bg);
}

.back-home {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.back-home:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-5px);
}

.footer {
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.age-disclaimer-box,
.responsible-gaming-box {
    background: var(--dark-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-disclaimer-box i,
.responsible-gaming-box i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.partners-section img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partners-section a:hover img {
    opacity: 1;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.text-card {
    background: var(--dark-bg);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.text-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.75rem;
    color: white;
}

.offer-card {
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-info h3 {
    font-size: 1.25rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.bonus-extra {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pros-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-list i {
    color: var(--secondary-color);
}

.score-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.votes {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
}

.offer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }

    .hero-section img {
        margin-top: 2rem;
    }

    .offer-card {
        padding: 1rem;
    }

    .score-box {
        margin: 1rem 0;
    }

    .btn-primary {
        width: 100%;
    }

    .text-card {
        margin: 1rem 0;
        text-align: center;
    }

    .text-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .text-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer {
        margin-top: 2rem;
    }
}
