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

.page-promotions-first-deposit {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-first-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-first-deposit__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-first-deposit__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-first-deposit__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.page-promotions-first-deposit__hero-title .highlight {
    color: #ffc107;
}

.page-promotions-first-deposit__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-promotions-first-deposit__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
    z-index: 1;
}

.page-promotions-first-deposit__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

.page-promotions-first-deposit__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-promotions-first-deposit__section:nth-child(even) {
    background-color: #f0f4f8;
}

.page-promotions-first-deposit__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-first-deposit__section-title .highlight {
    color: #ffc107;
}

.page-promotions-first-deposit__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-promotions-first-deposit__btn--primary {
    background-color: #ffc107;
    color: #0056b3;
    box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}

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

.page-promotions-first-deposit__btn--secondary {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.page-promotions-first-deposit__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.5);
}

.page-promotions-first-deposit__btn i {
    margin-left: 8px;
}

.page-promotions-first-deposit__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions-first-deposit__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

.page-promotions-first-deposit__detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #007bff;
}

.page-promotions-first-deposit__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit__detail-card h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-first-deposit__detail-card h3 i {
    margin-right: 10px;
    color: #ffc107;
}

.page-promotions-first-deposit__detail-card p {
    color: #666;
    font-size: 1em;
}

.page-promotions-first-deposit__section-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.page-promotions-first-deposit__steps li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    border-bottom: 5px solid #ffc107;
    position: relative;
}

.page-promotions-first-deposit__step-icon {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 20px;
    background-color: #eaf3ff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid #007bff;
}

.page-promotions-first-deposit__steps li h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-first-deposit__steps li p {
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-first-deposit__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-first-deposit__terms-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.page-promotions-first-deposit__terms-list li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-top: 3px;
}

.page-promotions-first-deposit__disclaimer {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 30px;
    font-size: 0.95em;
}

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

.page-promotions-first-deposit__feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 5px solid #007bff;
}

.page-promotions-first-deposit__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit__feature-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-promotions-first-deposit__feature-card h3 {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-first-deposit__feature-card p {
    color: #666;
    font-size: 1em;
}

.page-promotions-first-deposit__responsible-gaming {
    background-color: #f0f4f8;
    text-align: center;
}

.page-promotions-first-deposit__cta-final {
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
}

.page-promotions-first-deposit__cta-final-content {
    position: relative;
    z-index: 2;
}

.page-promotions-first-deposit__cta-final .page-promotions-first-deposit__section-title {
    color: #ffc107;
    font-size: 3em;
}

.page-promotions-first-deposit__cta-final .page-promotions-first-deposit__section-description {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 50px;
}

.page-promotions-first-deposit__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-first-deposit__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-first-deposit__section-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit__hero {
        padding: 60px 0;
    }
    .page-promotions-first-deposit__hero-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit__hero-description {
        font-size: 1em;
    }
    .page-promotions-first-deposit__section {
        padding: 40px 0;
    }
    .page-promotions-first-deposit__section-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit__grid-container,
    .page-promotions-first-deposit__steps,
    .page-promotions-first-deposit__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-first-deposit__detail-card,
    .page-promotions-first-deposit__steps li,
    .page-promotions-first-deposit__feature-card {
        padding: 20px;
    }
    .page-promotions-first-deposit__detail-card h3,
    .page-promotions-first-deposit__steps li h3 {
        font-size: 1.3em;
    }
    .page-promotions-first-deposit__cta-final .page-promotions-first-deposit__section-title {
        font-size: 2.2em;
    }
    .page-promotions-first-deposit__cta-final .page-promotions-first-deposit__section-description {
        font-size: 1em;
    }
    .page-promotions-first-deposit__btn {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit__section-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit__hero {
        padding: 40px 0;
    }
    .page-promotions-first-deposit__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-first-deposit__terms-list li {
        font-size: 0.9em;
    }
    .page-promotions-first-deposit__cta-final .page-promotions-first-deposit__section-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit__cta-final .page-promotions-first-deposit__section-description {
        font-size: 0.9em;
    }
}