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

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

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

.page-promotions-first-deposit-bonus__hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

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

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

@keyframes floatEffect {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, 10px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

.page-promotions-first-deposit-bonus__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-promotions-first-deposit-bonus__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-first-deposit-bonus__hero-image-wrapper {
    max-width: 600px;
    margin-top: 30px;
    z-index: 1;
}

.page-promotions-first-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-first-deposit-bonus__section:nth-of-type(even) {
    background-color: #f1f7fe;
}

.page-promotions-first-deposit-bonus__section h2 {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-first-deposit-bonus__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-first-deposit-bonus__section h3 {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-promotions-first-deposit-bonus__section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__section ul li {
    background-color: #e6f2ff;
    border-left: 5px solid #007BFF;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
}

.page-promotions-first-deposit-bonus__section ul li strong {
    color: #0056b3;
}

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

.page-promotions-first-deposit-bonus__grid-item {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.page-promotions-first-deposit-bonus__grid-item h3 {
    color: #007BFF;
    font-size: 1.6em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-promotions-first-deposit-bonus__grid-item h3 i {
    color: #FFD700;
    font-size: 1.2em;
}

/* Placeholder for icons, in a real scenario, these would be SVG or font icons */
.page-promotions-first-deposit-bonus__grid-item h3 .icon-bonus-percentage::before { content: '🎁'; }
.page-promotions-first-deposit-bonus__grid-item h3 .icon-max-bonus::before { content: '💰'; }
.page-promotions-first-deposit-bonus__grid-item h3 .icon-eligible-games::before { content: '🎮'; }
.page-promotions-first-deposit-bonus__grid-item h3 .icon-easy-claim::before { content: '✅'; }

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

.page-promotions-first-deposit-bonus__steps li {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    padding-top: 70px; /* Space for step icon */
}

.page-promotions-first-deposit-bonus__step-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0056b3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-promotions-first-deposit-bonus__step-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit-bonus__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit-bonus__image-center {
    display: block;
    margin: 30px auto;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    text-align: center;
}

.page-promotions-first-deposit-bonus__btn--primary {
    background-color: #FFD700;
    color: #0056b3;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-first-deposit-bonus__btn--primary:hover {
    background-color: #e6c200;
    color: #003a7a;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-first-deposit-bonus__btn--secondary {
    background-color: #007BFF;
    color: #fff;
    border: 2px solid #007BFF;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-promotions-first-deposit-bonus__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.page-promotions-first-deposit-bonus__btn--tertiary {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.page-promotions-first-deposit-bonus__btn--tertiary:hover {
    background-color: #007BFF;
    color: #fff;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__accordion {
    margin-top: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__accordion-item {
    border-bottom: 1px solid #eee;
}

.page-promotions-first-deposit-bonus__accordion-item:last-child {
    border-bottom: none;
}

.page-promotions-first-deposit-bonus__accordion-header {
    background-color: #f1f7fe;
    color: #0056b3;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__accordion-header:hover {
    background-color: #e6f2ff;
}

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

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

.page-promotions-first-deposit-bonus__accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-first-deposit-bonus__accordion-content p {
    margin: 15px 0;
    color: #666;
}

.page-promotions-first-deposit-bonus__accordion-content.active {
    max-height: 200px; /* Adjust as needed for content height */
    padding: 15px 25px;
}

.page-promotions-first-deposit-bonus__cta {
    background: linear-gradient(45deg, #007BFF 0%, #0056b3 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 40px auto;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.page-promotions-first-deposit-bonus__cta h2 {
    color: #FFD700;
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.page-promotions-first-deposit-bonus__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__cta-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-first-deposit-bonus__hero h1 {
        font-size: 2.8em;
    }
    .page-promotions-first-deposit-bonus__section h2 {
        font-size: 2em;
    }
    .page-promotions-first-deposit-bonus__hero {
        flex-direction: column;
    }
    .page-promotions-first-deposit-bonus__hero-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__hero {
        padding: 60px 15px;
    }
    .page-promotions-first-deposit-bonus__hero h1 {
        font-size: 2.2em;
    }
    .page-promotions-first-deposit-bonus__hero p,
    .page-promotions-first-deposit-bonus__section p,
    .page-promotions-first-deposit-bonus__section ul li {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__section h2 {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__section h3 {
        font-size: 1.4em;
    }
    .page-promotions-first-deposit-bonus__grid,
    .page-promotions-first-deposit-bonus__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-first-deposit-bonus__cta h2 {
        font-size: 2.5em;
    }
    .page-promotions-first-deposit-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-first-deposit-bonus__btn {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__hero h1 {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__section h2 {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit-bonus__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-first-deposit-bonus__cta h2 {
        font-size: 2em;
    }
}