/* style/resources-b29-bet-registration-guide.css */

/* General Styles for the Page */
.page-resources-b29-bet-registration-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for content */
}

.page-resources-b29-bet-registration-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-b29-bet-registration-guide__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-b29-bet-registration-guide__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: page-resources-b29-bet-registration-guide__pulse 15s infinite alternate;
}

@keyframes page-resources-b29-bet-registration-guide__pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.page-resources-b29-bet-registration-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
    position: relative;
    z-index: 1;
}

.page-resources-b29-bet-registration-guide__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-resources-b29-bet-registration-guide__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker shade of primary for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-b29-bet-registration-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745; /* Secondary color for accent */
    border-radius: 2px;
}

.page-resources-b29-bet-registration-guide__content-section {
    padding: 60px 0;
}

.page-resources-b29-bet-registration-guide__content-section--alt-bg {
    background-color: #e9ecef; /* Slightly darker background for contrast */
}

.page-resources-b29-bet-registration-guide__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
    text-align: justify;
}

.page-resources-b29-bet-registration-guide__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;
    outline: none;
}

.page-resources-b29-bet-registration-guide__btn--primary {
    background-color: #28a745; /* Secondary color */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.page-resources-b29-bet-registration-guide__btn--primary:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.page-resources-b29-bet-registration-guide__btn--secondary {
    background-color: #007bff; /* Primary color */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-resources-b29-bet-registration-guide__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.page-resources-b29-bet-registration-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-b29-bet-registration-guide__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-b29-bet-registration-guide__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-b29-bet-registration-guide__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-resources-b29-bet-registration-guide__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-resources-b29-bet-registration-guide__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-resources-b29-bet-registration-guide__step-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-resources-b29-bet-registration-guide__step-number {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-resources-b29-bet-registration-guide__step-title {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 20px;
}

.page-resources-b29-bet-registration-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-resources-b29-bet-registration-guide__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
    max-width: 700px;
}

.page-resources-b29-bet-registration-guide__list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #495057;
}

.page-resources-b29-bet-registration-guide__list li::before {
    content: '•';
    color: #28a745; /* Secondary color for list bullets */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-resources-b29-bet-registration-guide__list--checkmark li::before {
    content: '✔';
    color: #28a745;
    font-size: 1.1em;
}

.page-resources-b29-bet-registration-guide__faq {
    margin-top: 40px;
}

.page-resources-b29-bet-registration-guide__faq-item {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-b29-bet-registration-guide__faq-question {
    font-size: 1.3em;
    color: #007bff;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    background-color: #f0f8ff; /* Light blue background for question */
    transition: background-color 0.3s ease;
}

.page-resources-b29-bet-registration-guide__faq-question:hover {
    background-color: #e2f2ff;
}

.page-resources-b29-bet-registration-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #28a745;
    transition: transform 0.3s ease;
}

.page-resources-b29-bet-registration-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-b29-bet-registration-guide__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: #495057;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-b29-bet-registration-guide__faq-answer.active {
    max-height: 200px; /* Adjust based on content height */
    padding: 10px 25px 20px;
}

.page-resources-b29-bet-registration-guide__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto 40px;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-b29-bet-registration-guide__app-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-resources-b29-bet-registration-guide__app-qr-code {
    width: 200px;
    height: 200px;
    border: 5px solid #007bff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-b29-bet-registration-guide__app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-resources-b29-bet-registration-guide__btn--app-store,
.page-resources-b29-bet-registration-guide__btn--google-play {
    background-color: #343a40; /* Dark grey for app buttons */
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-b29-bet-registration-guide__btn--app-store:hover,
.page-resources-b29-bet-registration-guide__btn--google-play:hover {
    background-color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-b29-bet-registration-guide__cta-section {
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-b29-bet-registration-guide__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-resources-b29-bet-registration-guide__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-resources-b29-bet-registration-guide__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 60px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-b29-bet-registration-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-b29-bet-registration-guide__hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-b29-bet-registration-guide__section-title {
        font-size: 2em;
    }
    .page-resources-b29-bet-registration-guide__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-resources-b29-bet-registration-guide__step-item {
        padding: 30px;
    }
    .page-resources-b29-bet-registration-guide__step-title {
        font-size: 1.8em;
    }
    .page-resources-b29-bet-registration-guide__cta-title {
        font-size: 2.5em;
    }
    .page-resources-b29-bet-registration-guide__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-resources-b29-bet-registration-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-b29-bet-registration-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-b29-bet-registration-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-b29-bet-registration-guide__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-b29-bet-registration-guide__feature-item {
        margin-bottom: 20px;
    }
    .page-resources-b29-bet-registration-guide__step-by-step {
        gap: 30px;
    }
    .page-resources-b29-bet-registration-guide__step-item {
        padding: 25px;
    }
    .page-resources-b29-bet-registration-guide__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-resources-b29-bet-registration-guide__step-title {
        font-size: 1.5em;
    }
    .page-resources-b29-bet-registration-guide__list {
        max-width: 100%;
    }
    .page-resources-b29-bet-registration-guide__app-download {
        flex-direction: column;
        gap: 20px;
    }
    .page-resources-b29-bet-registration-guide__app-qr-code {
        width: 150px;
        height: 150px;
    }
    .page-resources-b29-bet-registration-guide__app-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-b29-bet-registration-guide__cta-title {
        font-size: 2em;
    }
    .page-resources-b29-bet-registration-guide__cta-text {
        font-size: 1em;
    }
    .page-resources-b29-bet-registration-guide__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-b29-bet-registration-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-b29-bet-registration-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-b29-bet-registration-guide__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-b29-bet-registration-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-b29-bet-registration-guide__text-content {
        font-size: 1em;
    }
    .page-resources-b29-bet-registration-guide__feature-title {
        font-size: 1.3em;
    }
    .page-resources-b29-bet-registration-guide__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }
    .page-resources-b29-bet-registration-guide__step-title {
        font-size: 1.3em;
    }
    .page-resources-b29-bet-registration-guide__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-b29-bet-registration-guide__faq-answer {
        padding: 0 20px 15px;
        font-size: 1em;
    }
    .page-resources-b29-bet-registration-guide__cta-title {
        font-size: 1.8em;
    }
    .page-resources-b29-bet-registration-guide__cta-text {
        font-size: 0.9em;
    }
    .page-resources-b29-bet-registration-guide__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}