/* style/promotions-free-spins.css */
.page-promotions-free-spins {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-promotions-free-spins__hero-section {
    background: linear-gradient(135deg, #0A2239 0%, #2a4a6b 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-free-spins__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-free-spins__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B400; /* Golden yellow for emphasis */
    position: relative;
    z-index: 1;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-free-spins__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-promotions-free-spins__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: none;
}

.page-promotions-free-spins__btn--primary {
    background-color: #E0B400; /* Golden yellow */
    color: #0A2239; /* Dark blue */
}

.page-promotions-free-spins__btn--primary:hover {
    background-color: #ffc800;
}

.page-promotions-free-spins__btn--secondary {
    background-color: #0A2239; /* Dark blue */
    color: #E0B400; /* Golden yellow */
    border: 2px solid #E0B400;
}

.page-promotions-free-spins__btn--secondary:hover {
    background-color: #1a3a5c;
    color: #ffc800;
}

.page-promotions-free-spins__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-promotions-free-spins__article {
    line-height: 1.7;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-free-spins__section-title {
    font-size: 2.5em;
    color: #0A2239; /* Dark blue */
    margin-top: 50px;
    margin-bottom: 25px;
    border-left: 5px solid #E0B400;
    padding-left: 15px;
    font-weight: bold;
}

.page-promotions-free-spins__subsection-title {
    font-size: 1.8em;
    color: #0A2239;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-free-spins__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-free-spins__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-promotions-free-spins__list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-promotions-free-spins__list strong {
    color: #0A2239;
}

.page-promotions-free-spins__related-content {
    background-color: #f0f4f7;
    padding: 60px 0;
}

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

.page-promotions-free-spins__card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions-free-spins__card:hover {
    transform: translateY(-5px);
}

.page-promotions-free-spins__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-promotions-free-spins__card-title {
    font-size: 1.4em;
    color: #0A2239;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-promotions-free-spins__card-title a {
    text-decoration: none;
    color: #0A2239;
    transition: color 0.3s ease;
}

.page-promotions-free-spins__card-title a:hover {
    color: #E0B400;
}

.page-promotions-free-spins__card-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-promotions-free-spins__card-link {
    display: inline-block;
    color: #E0B400;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 20px 20px;
    transition: color 0.3s ease;
}

.page-promotions-free-spins__card-link:hover {
    color: #0A2239;
}

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

    .page-promotions-free-spins__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-promotions-free-spins__subsection-title {
        font-size: 1.5em;
    }

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

    .page-promotions-free-spins__card-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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