/* style/promotions-deposit-match.css */

/* Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0056b3;
    --border-color: #e0e0e0;
}

/* Base styles for this page's content */
.page-promotions-deposit-match {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.page-promotions-deposit-match__section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-promotions-deposit-match__section:nth-of-type(even) {
    background-color: #f0f2f5; /* Slightly different background for visual separation */
}

.page-promotions-deposit-match__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-deposit-match__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-match__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-light);
}

.page-promotions-deposit-match__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions-deposit-match__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;
    cursor: pointer;
    border: none;
}

.page-promotions-deposit-match__btn--primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions-deposit-match__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions-deposit-match__btn--secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-promotions-deposit-match__btn--secondary:hover {
    background-color: var(--bg-dark);
    border-color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.page-promotions-deposit-match__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions-deposit-match__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-match__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-match__image--right {
    float: right;
    margin-left: 30px;
    max-width: 40%;
}

.page-promotions-deposit-match__image--left {
    float: left;
    margin-right: 30px;
    max-width: 40%;
}

/* Lists */
.page-promotions-deposit-match__list,
.page-promotions-deposit-match__bullet-list,
.page-promotions-deposit-match__warning-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-promotions-deposit-match__list li,
.page-promotions-deposit-match__bullet-list li,
.page-promotions-deposit-match__warning-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.page-promotions-deposit-match__list li::before {
    content: counter(list-item);
    counter-increment: list-item;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 0.9em;
}

.page-promotions-deposit-match__bullet-list li::before {
    content: '✔';
    color: #28a745; /* Green checkmark */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promotions-deposit-match__warning-list li::before {
    content: '⚠';
    color: #dc3545; /* Red warning sign */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2em;
}

/* Bonus Details Grid */
.page-promotions-deposit-match__details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-match__detail-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-match__detail-item:hover {
    transform: translateY(-5px);
}

.page-promotions-deposit-match__detail-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-promotions-deposit-match__detail-value {
    font-size: 2em;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.page-promotions-deposit-match__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #6c757d;
}

/* Step List */
.page-promotions-deposit-match__step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-match__step-list li {
    display: flex;
    align-items: flex-start;
    background-color: var(--text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-deposit-match__step-icon {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
}

.page-promotions-deposit-match__step-content h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

/* Features Grid */
.page-promotions-deposit-match__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-match__feature-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-promotions-deposit-match__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)); /* Add a subtle shadow to icons */
}

.page-promotions-deposit-match__feature-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ Accordion */
.page-promotions-deposit-match__accordion {
    margin-top: 40px;
}

.page-promotions-deposit-match__accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-deposit-match__accordion-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-match__accordion-header::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-match__accordion-header.active::after {
    transform: rotate(180deg);
}

.page-promotions-deposit-match__accordion-header:hover {
    background-color: var(--bg-dark);
}

.page-promotions-deposit-match__accordion-content {
    padding: 0 25px;
    background-color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-deposit-match__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: var(--text-dark);
}

/* Bottom CTA */
.page-promotions-deposit-match__cta-bottom {
    background: linear-gradient(135deg, #0056b3 0%, var(--primary-color) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.page-promotions-deposit-match__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-deposit-match__cta-title {
    font-size: 2.8em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-promotions-deposit-match__cta-text {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-match__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-deposit-match__hero-subtitle,
    .page-promotions-deposit-match__cta-text {
        font-size: 1.3em;
    }

    .page-promotions-deposit-match__section-title,
    .page-promotions-deposit-match__cta-title {
        font-size: 2em;
    }

    .page-promotions-deposit-match__image--right,
    .page-promotions-deposit-match__image--left {
        float: none;
        margin: 30px auto;
        max-width: 80%;
    }

    .page-promotions-deposit-match__details-grid,
    .page-promotions-deposit-match__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-match__hero {
        padding: 80px 0;
    }

    .page-promotions-deposit-match__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-deposit-match__hero-subtitle,
    .page-promotions-deposit-match__cta-text {
        font-size: 1.1em;
    }

    .page-promotions-deposit-match__section-title,
    .page-promotions-deposit-match__cta-title {
        font-size: 1.8em;
    }

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

    .page-promotions-deposit-match__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promotions-deposit-match__step-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-promotions-deposit-match__step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-promotions-deposit-match__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-match__hero {
        padding: 60px 0;
    }

    .page-promotions-deposit-match__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-match__hero-subtitle,
    .page-promotions-deposit-match__cta-text {
        font-size: 0.95em;
    }

    .page-promotions-deposit-match__section-title,
    .page-promotions-deposit-match__cta-title {
        font-size: 1.5em;
    }

    .page-promotions-deposit-match__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions-deposit-match__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-deposit-match__section {
        padding: 40px 0;
    }

    .page-promotions-deposit-match__image {
        margin: 20px 0;
    }

    .page-promotions-deposit-match__image--centered,
    .page-promotions-deposit-match__image--right,
    .page-promotions-deposit-match__image--left {
        max-width: 100%;
    }

    .page-promotions-deposit-match__accordion-header {
        font-size: 0.95em;
        padding: 12px 15px;
    }
}