/* style/promotions-holiday-specials.css */

:root {
    --aw8-primary: #007BFF;
    --aw8-secondary: #FFC107;
    --aw8-dark: #212529;
    --aw8-light: #f8f9fa;
    --aw8-gray: #6c757d;
    --text-on-dark: #ffffff;
    --text-on-light: #343a40;
}

.page-promotions-holiday-specials {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--aw8-light);
}

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

.page-promotions-holiday-specials__hero-section {
    background: linear-gradient(135deg, var(--aw8-primary), var(--aw8-secondary));
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-holiday-specials__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatEffect 10s infinite ease-in-out;
}

.page-promotions-holiday-specials__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.page-promotions-holiday-specials__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--text-on-dark);
}

.page-promotions-holiday-specials__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-on-dark);
}

.page-promotions-holiday-specials__section-title {
    font-size: 2.5em;
    color: var(--aw8-primary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
}

.page-promotions-holiday-specials__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--aw8-secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-holiday-specials__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--aw8-dark);
}

.page-promotions-holiday-specials__content-section {
    padding: 60px 0;
}

.page-promotions-holiday-specials__promotion-grid,
.page-promotions-holiday-specials__feature-grid,
.page-promotions-holiday-specials__game-grid,
.page-promotions-holiday-specials__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions-holiday-specials__promotion-card,
.page-promotions-holiday-specials__feature-card,
.page-promotions-holiday-specials__game-card,
.page-promotions-holiday-specials__testimonial-card {
    background-color: var(--aw8-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
}

.page-promotions-holiday-specials__promotion-card:hover,
.page-promotions-holiday-specials__feature-card:hover,
.page-promotions-holiday-specials__game-card:hover,
.page-promotions-holiday-specials__testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-holiday-specials__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-holiday-specials__card-title {
    font-size: 1.8em;
    color: var(--aw8-primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-holiday-specials__card-description {
    font-size: 1em;
    color: var(--aw8-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-holiday-specials__card-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    color: var(--aw8-dark);
}

.page-promotions-holiday-specials__card-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-holiday-specials__card-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--aw8-secondary);
}

.page-promotions-holiday-specials__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-promotions-holiday-specials__feature-title {
    font-size: 1.6em;
    color: var(--aw8-primary);
    margin-bottom: 10px;
}

.page-promotions-holiday-specials__feature-description {
    font-size: 1em;
    color: var(--aw8-gray);
}

.page-promotions-holiday-specials__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-promotions-holiday-specials__step-list li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-holiday-specials__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--aw8-secondary);
    color: var(--aw8-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-specials__step-title {
    font-size: 1.5em;
    color: var(--aw8-primary);
    margin-bottom: 10px;
    margin-left: 30px;
}

.page-promotions-holiday-specials__step-list p {
    color: var(--aw8-gray);
    margin-left: 30px;
}

.page-promotions-holiday-specials__step-list p a {
    color: var(--aw8-primary);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-holiday-specials__step-list p a:hover {
    text-decoration: underline;
}

.page-promotions-holiday-specials__note {
    text-align: center;
    font-style: italic;
    color: var(--aw8-gray);
    margin-top: 30px;
    padding: 20px;
    background-color: #e9ecef;
    border-left: 5px solid var(--aw8-secondary);
    border-radius: 5px;
}

.page-promotions-holiday-specials__game-card .page-promotions-holiday-specials__card-title {
    font-size: 1.6em;
}

.page-promotions-holiday-specials__game-card .page-promotions-holiday-specials__card-description {
    font-size: 0.95em;
}

.page-promotions-holiday-specials__game-card a {
    font-size: 0.9em;
}

.page-promotions-holiday-specials__game-card a.page-promotions-holiday-specials__button--small {
    padding: 8px 15px;
}

.page-promotions-holiday-specials__testimonials {
    background-color: #f0f4f8;
}

.page-promotions-holiday-specials__testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-holiday-specials__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--aw8-secondary);
}

.page-promotions-holiday-specials__quote {
    font-style: italic;
    color: var(--aw8-dark);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-holiday-specials__author {
    font-weight: bold;
    color: var(--aw8-primary);
    font-size: 0.95em;
}

.page-promotions-holiday-specials__cta-section {
    background-color: var(--aw8-primary);
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
}

.page-promotions-holiday-specials__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-on-dark);
}

.page-promotions-holiday-specials__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-on-dark);
}

.page-promotions-holiday-specials__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
}

.page-promotions-holiday-specials__button--primary {
    background-color: var(--aw8-secondary);
    color: var(--aw8-dark);
    border: 2px solid var(--aw8-secondary);
}

.page-promotions-holiday-specials__button--primary:hover {
    background-color: #e0ac00;
    transform: translateY(-3px);
    color: var(--aw8-dark);
}

.page-promotions-holiday-specials__button--secondary {
    background-color: var(--aw8-primary);
    color: var(--text-on-dark);
    border: 2px solid var(--aw8-primary);
}

.page-promotions-holiday-specials__button--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    color: var(--text-on-dark);
}

.page-promotions-holiday-specials__button--large {
    padding: 15px 35px;
    font-size: 1.3em;
}

.page-promotions-holiday-specials__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-promotions-holiday-specials__button--text {
    background: none;
    border: 2px solid var(--text-on-dark);
    color: var(--text-on-dark);
    padding: 10px 20px;
}

.page-promotions-holiday-specials__button--text:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 2em;
    }
    .page-promotions-holiday-specials__cta-title {
        font-size: 2.5em;
    }
    .page-promotions-holiday-specials__promotion-grid,
    .page-promotions-holiday-specials__feature-grid,
    .page-promotions-holiday-specials__game-grid,
    .page-promotions-holiday-specials__testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-holiday-specials__hero-description {
        font-size: 1em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-specials__cta-title {
        font-size: 2em;
    }
    .page-promotions-holiday-specials__promotion-card,
    .page-promotions-holiday-specials__feature-card,
    .page-promotions-holiday-specials__game-card,
    .page-promotions-holiday-specials__testimonial-card {
        padding: 20px;
    }
    .page-promotions-holiday-specials__card-title {
        font-size: 1.5em;
    }
    .page-promotions-holiday-specials__step-title {
        font-size: 1.3em;
        margin-left: 0;
    }
    .page-promotions-holiday-specials__step-list li::before {
        left: 50%;
        top: -20px;
        transform: translate(-50%, -50%);
    }
    .page-promotions-holiday-specials__step-list li {
        padding-top: 50px;
        text-align: center;
    }
    .page-promotions-holiday-specials__step-list p {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 1.5em;
    }
    .page-promotions-holiday-specials__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-specials__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-holiday-specials__button--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-holiday-specials__promotion-grid,
    .page-promotions-holiday-specials__feature-grid,
    .page-promotions-holiday-specials__game-grid,
    .page-promotions-holiday-specials__testimonial-grid {
        grid-template-columns: 1fr;
    }
}