/* style/promotions-live-casino-offers.css */

/* Base styles for the page content */
.page-promotions-live-casino-offers {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #F5F5F5; /* Light text on dark background for readability */
    background-color: #0A1931; /* Main brand color as background */
    line-height: 1.6;
}

.page-promotions-live-casino-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-live-casino-offers__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-live-casino-offers__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for titles */
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions-live-casino-offers__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
}

.page-promotions-live-casino-offers__hero {
    background: linear-gradient(135deg, #0A1931 0%, #3a4a61 100%); /* Gradient background for hero */
    padding: 100px 0;
    color: #F5F5F5;
}

.page-promotions-live-casino-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-promotions-live-casino-offers__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-live-casino-offers__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-live-casino-offers__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-promotions-live-casino-offers__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

.page-promotions-live-casino-offers__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-live-casino-offers__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-live-casino-offers__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-promotions-live-casino-offers__btn--link {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    text-decoration: underline;
}

.page-promotions-live-casino-offers__btn--link:hover {
    color: #e6c200;
    text-decoration: none;
}

.page-promotions-live-casino-offers__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions-live-casino-offers__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions-live-casino-offers__btn--centered {
    margin-top: 30px;
    display: inline-block;
}

.page-promotions-live-casino-offers__section--intro p {
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 1.1em;
    color: #CCCCCC;
}

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

.page-promotions-live-casino-offers__feature-item {
    background-color: #1A2A44; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-live-casino-offers__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions-live-casino-offers__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-promotions-live-casino-offers__feature-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-live-casino-offers__feature-item p {
    color: #B0B0B0;
    font-size: 0.95em;
}

.page-promotions-live-casino-offers__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-promotions-live-casino-offers__promo-card {
    background-color: #1A2A44;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.page-promotions-live-casino-offers__promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #FFD700;
}

.page-promotions-live-casino-offers__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions-live-casino-offers__promo-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-live-casino-offers__promo-content p {
    color: #CCCCCC;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-live-casino-offers__promo-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-live-casino-offers__promo-content ul li {
    color: #E0E0E0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-live-casino-offers__promo-content ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promotions-live-casino-offers__promo-content .page-promotions-live-casino-offers__btn {
    align-self: flex-start;
    margin-top: auto;
}

.page-promotions-live-casino-offers__section--how-to .page-promotions-live-casino-offers__section-title {
    margin-bottom: 40px;
}

.page-promotions-live-casino-offers__steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-live-casino-offers__steps li {
    background-color: #1A2A44;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions-live-casino-offers__step-icon {
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-promotions-live-casino-offers__step-icon img {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

.page-promotions-live-casino-offers__steps h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-live-casino-offers__steps p {
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-live-casino-offers__tips-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions-live-casino-offers__tips-list li {
    background-color: #1A2A44;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: #E0E0E0;
    font-size: 1.05em;
    border-left: 5px solid #FFD700;
}

.page-promotions-live-casino-offers__tips-list li strong {
    color: #FFD700;
}

.page-promotions-live-casino-offers__responsible-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions-live-casino-offers__responsible-list li {
    background-color: #1A2A44;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 1em;
    border-left: 4px solid #FFD700;
}

.page-promotions-live-casino-offers__image {
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-live-casino-offers__image--full-width {
    max-width: 100%;
    height: auto;
}

.page-promotions-live-casino-offers__faq-item {
    background-color: #1A2A44;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-live-casino-offers__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-live-casino-offers__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-live-casino-offers__faq-item.active h3::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-live-casino-offers__faq-item p {
    color: #B0B0B0;
    font-size: 1em;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-promotions-live-casino-offers__faq-item.active p {
    display: block;
}

.page-promotions-live-casino-offers__cta {
    background-color: #1A2A44;
    padding: 80px 0;
    color: #F5F5F5;
}

.page-promotions-live-casino-offers__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions-live-casino-offers__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #CCCCCC;
}

.page-promotions-live-casino-offers__cta-small-text {
    margin-top: 20px;
    font-size: 0.9em;
    color: #B0B0B0;
}

.page-promotions-live-casino-offers__text-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-live-casino-offers__text-link:hover {
    color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-live-casino-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-live-casino-offers__section-title {
        font-size: 2em;
    }
    .page-promotions-live-casino-offers__promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-live-casino-offers__hero {
        padding: 80px 0;
    }
    .page-promotions-live-casino-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-live-casino-offers__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-live-casino-offers__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-live-casino-offers__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-promotions-live-casino-offers__section {
        padding: 40px 0;
    }
    .page-promotions-live-casino-offers__feature-grid, .page-promotions-live-casino-offers__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-live-casino-offers__promo-content h3 {
        font-size: 1.5em;
    }
    .page-promotions-live-casino-offers__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions-live-casino-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-live-casino-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-live-casino-offers__container {
        padding: 0 15px;
    }
    .page-promotions-live-casino-offers__btn--large {
        padding: 15px 30px;
        font-size: 1em;
    }
    .page-promotions-live-casino-offers__feature-item, .page-promotions-live-casino-offers__promo-card, .page-promotions-live-casino-offers__steps li, .page-promotions-live-casino-offers__faq-item {
        padding: 20px;
    }
    .page-promotions-live-casino-offers__promo-img {
        height: 150px;
    }
    .page-promotions-live-casino-offers__faq-item h3 {
        font-size: 1.2em;
    }
}