/* style/promotions-free-spins.css */
.page-promotions-free-spins {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #1A1A1A; /* Main dark background */
    line-height: 1.6;
}

.page-promotions-free-spins__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-free-spins__hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-free-spins__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-promotions-free-spins__hero h1 {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-promotions-free-spins__hero p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions-free-spins__hero-image {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.page-promotions-free-spins__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-free-spins__section {
    padding: 60px 0;
    background-color: #1A1A1A;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-free-spins__section h2 {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-promotions-free-spins__section h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-free-spins__section p {
    font-size: 1.1em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-promotions-free-spins__section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-free-spins__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions-free-spins__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text on gold */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-free-spins__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-free-spins__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-free-spins__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-free-spins__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-free-spins__step {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-promotions-free-spins__step h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-free-spins__step p {
    color: #E0E0E0;
    font-size: 1em;
    flex-grow: 1;
}

.page-promotions-free-spins__step img {
    max-width: 80%;
    margin: 20px auto;
    border-radius: 5px;
}

.page-promotions-free-spins__step .page-promotions-free-spins__btn {
    margin-top: 20px;
}

.page-promotions-free-spins__game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-free-spins__game-card {
    background-color: #2A2A2A;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-free-spins__game-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-promotions-free-spins__game-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-free-spins__game-card p {
    color: #E0E0E0;
    font-size: 0.95em;
}

.page-promotions-free-spins__cta-text {
    text-align: center;
    font-size: 1.3em;
    color: #FFD700;
    margin: 50px 0 30px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}

.page-promotions-free-spins__section--tips ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-free-spins__section--tips ul li {
    background-color: #2A2A2A;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-free-spins__section--tips ul li strong {
    color: #FFD700;
}

.page-promotions-free-spins__list-advantages {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-free-spins__list-advantages li {
    background-color: #2A2A2A;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-free-spins__list-advantages li strong {
    color: #FFD700;
}

.page-promotions-free-spins__faq-item {
    background-color: #2A2A2A;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-free-spins__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-free-spins__faq-item p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-promotions-free-spins__section--final-cta {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-free-spins__hero h1 {
        font-size: 2.5em;
    }

    .page-promotions-free-spins__hero p {
        font-size: 1em;
    }

    .page-promotions-free-spins__section h2 {
        font-size: 2em;
    }

    .page-promotions-free-spins__section h3 {
        font-size: 1.5em;
    }

    .page-promotions-free-spins__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-free-spins__steps, .page-promotions-free-spins__game-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-free-spins__hero h1 {
        font-size: 2em;
    }

    .page-promotions-free-spins__hero p {
        font-size: 0.9em;
    }

    .page-promotions-free-spins__section h2 {
        font-size: 1.8em;
    }

    .page-promotions-free-spins__section h3 {
        font-size: 1.3em;
    }

    .page-promotions-free-spins__btn {
        width: 100%;
        max-width: 280px;
    }
}