/* style/resources-how-to-register-hit-club.css */

:root {
    --page-primary-color: #007BFF;
    --page-secondary-color: #FFD700;
    --page-dark-text: #2c3e50;
    --page-light-text: #ecf0f1;
    --page-background-light: #f8f9fa;
    --page-background-dark: #34495e;
    --page-accent-color-contrast: #ff8400; /* Contrast for primary */
    --page-accent-color-contrast-dark: #0028ff; /* Contrast for secondary */
}

.page-resources-how-to-register-hit-club {
    font-family: 'Arial', sans-serif;
    color: var(--page-dark-text);
    line-height: 1.6;
    background-color: var(--page-background-light);
}

.page-resources-how-to-register-hit-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-how-to-register-hit-club__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: var(--page-light-text);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-how-to-register-hit-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-resources-how-to-register-hit-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-hit-club__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-light-text);
}

.page-resources-how-to-register-hit-club__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-how-to-register-hit-club__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

.page-resources-how-to-register-hit-club__section {
    padding: 60px 0;
}

.page-resources-how-to-register-hit-club__section:nth-of-type(even) {
    background-color: var(--page-background-light);
}

.page-resources-how-to-register-hit-club__section:nth-of-type(odd) {
    background-color: #e0e7ee; /* A lighter shade of blue-grey for subtle contrast */
}

.page-resources-how-to-register-hit-club__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-how-to-register-hit-club__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-resources-how-to-register-hit-club__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--page-dark-text);
}

.page-resources-how-to-register-hit-club__highlight {
    color: var(--page-primary-color);
    font-weight: bold;
}

.page-resources-how-to-register-hit-club__cta-button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text); /* Ensure contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-how-to-register-hit-club__cta-button:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
    color: var(--page-dark-text);
}

.page-resources-how-to-register-hit-club__cta-button--primary {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    border-color: var(--page-primary-color);
}

.page-resources-how-to-register-hit-club__cta-button--primary:hover {
    background-color: #0056b3; /* Darker blue */
    border-color: #0056b3;
    color: var(--page-light-text);
}

.page-resources-how-to-register-hit-club__cta-button--secondary {
    background-color: transparent;
    color: var(--page-primary-color);
    border-color: var(--page-primary-color);
    margin-left: 20px;
}

.page-resources-how-to-register-hit-club__cta-button--secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    border-color: var(--page-primary-color);
}

.page-resources-how-to-register-hit-club__inline-link {
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-how-to-register-hit-club__inline-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-resources-how-to-register-hit-club__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-register-hit-club__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-how-to-register-hit-club__feature-item:hover {
    transform: translateY(-5px);
}

.page-resources-how-to-register-hit-club__feature-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-register-hit-club__step-by-step {
    margin-top: 50px;
}

.page-resources-how-to-register-hit-club__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.page-resources-how-to-register-hit-club__step-number {
    width: 60px;
    height: 60px;
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--page-primary-color);
}

.page-resources-how-to-register-hit-club__step-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-register-hit-club__step-item p {
    max-width: 800px;
    margin-bottom: 25px;
    font-size: 1.05em;
}

.page-resources-how-to-register-hit-club__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

.page-resources-how-to-register-hit-club__info-list {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    list-style: disc inside;
    font-size: 1.05em;
    color: var(--page-dark-text);
}

.page-resources-how-to-register-hit-club__info-list li {
    margin-bottom: 10px;
}

.page-resources-how-to-register-hit-club__important-notes .page-resources-how-to-register-hit-club__note-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 30px auto 50px auto;
    text-align: left;
}

.page-resources-how-to-register-hit-club__important-notes .page-resources-how-to-register-hit-club__note-list li {
    background-color: #ffffff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: var(--page-dark-text);
}

.page-resources-how-to-register-hit-club__important-notes .page-resources-how-to-register-hit-club__note-list li strong {
    color: var(--page-primary-color);
}

.page-resources-how-to-register-hit-club__sub-title {
    font-size: 2em;
    color: var(--page-primary-color);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 25px;
}

.page-resources-how-to-register-hit-club__security-info,
.page-resources-how-to-register-hit-club__responsible-gambling {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-resources-how-to-register-hit-club__security-image {
    max-width: 80%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

.page-resources-how-to-register-hit-club__post-reg-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-register-hit-club__action-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-resources-how-to-register-hit-club__action-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-register-hit-club__action-image {
    max-width: 90%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
}

.page-resources-how-to-register-hit-club__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-resources-how-to-register-hit-club__faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-how-to-register-hit-club__faq-question {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-how-to-register-hit-club__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: var(--page-secondary-color);
    transition: transform 0.3s ease;
}

.page-resources-how-to-register-hit-club__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-how-to-register-hit-club__faq-answer {
    font-size: 1.05em;
    color: var(--page-dark-text);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-resources-how-to-register-hit-club__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    margin-top: 15px;
}

.page-resources-how-to-register-hit-club__cta-final {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%);
    color: var(--page-light-text);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-resources-how-to-register-hit-club__cta-final .page-resources-how-to-register-hit-club__section-title {
    color: var(--page-light-text);
}

.page-resources-how-to-register-hit-club__cta-final .page-resources-how-to-register-hit-club__section-title::after {
    background-color: var(--page-secondary-color);
}

.page-resources-how-to-register-hit-club__cta-final .page-resources-how-to-register-hit-club__text-content {
    color: var(--page-light-text);
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-resources-how-to-register-hit-club__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.page-resources-how-to-register-hit-club__cta-final-content {
    position: relative;
    z-index: 2;
}

.page-resources-how-to-register-hit-club__cta-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    width: 400px; /* Adjust size as needed */
    height: auto;
    z-index: 1;
    filter: grayscale(100%) blur(3px);
    transform: rotate(10deg) translateX(50px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-how-to-register-hit-club__hero-title {
        font-size: 2.8em;
    }
    .page-resources-how-to-register-hit-club__section-title {
        font-size: 2em;
    }
    .page-resources-how-to-register-hit-club__features-grid,
    .page-resources-how-to-register-hit-club__post-reg-actions {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-resources-how-to-register-hit-club__cta-final .page-resources-how-to-register-hit-club__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-register-hit-club__hero-section {
        padding: 60px 0;
    }
    .page-resources-how-to-register-hit-club__hero-title {
        font-size: 2.2em;
    }
    .page-resources-how-to-register-hit-club__hero-description,
    .page-resources-how-to-register-hit-club__text-content,
    .page-resources-how-to-register-hit-club__feature-item p,
    .page-resources-how-to-register-hit-club__step-item p,
    .page-resources-how-to-register-hit-club__note-list li,
    .page-resources-how-to-register-hit-club__action-item p,
    .page-resources-how-to-register-hit-club__faq-answer {
        font-size: 1em;
    }
    .page-resources-how-to-register-hit-club__section {
        padding: 40px 0;
    }
    .page-resources-how-to-register-hit-club__section-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-register-hit-club__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-how-to-register-hit-club__cta-button--secondary {
        margin-left: 10px;
    }
    .page-resources-how-to-register-hit-club__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-resources-how-to-register-hit-club__step-title {
        font-size: 1.5em;
    }
    .page-resources-how-to-register-hit-club__sub-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-register-hit-club__faq-question {
        font-size: 1.1em;
    }
    .page-resources-how-to-register-hit-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-how-to-register-hit-club__cta-button--secondary {
        margin-left: 0;
    }
    .page-resources-how-to-register-hit-club__cta-image {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-register-hit-club__hero-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-register-hit-club__section-title {
        font-size: 1.5em;
    }
    .page-resources-how-to-register-hit-club__features-grid,
    .page-resources-how-to-register-hit-club__post-reg-actions {
        grid-template-columns: 1fr;
    }
    .page-resources-how-to-register-hit-club__cta-button {
        width: 100%;
        box-sizing: border-box;
    }
    .page-resources-how-to-register-hit-club__cta-final .page-resources-how-to-register-hit-club__section-title {
        font-size: 1.5em;
    }
    .page-resources-how-to-register-hit-club__cta-image {
        display: none;
    }
}