/* style/support.css */
.page-support {
    color: #ffffff; /* Light text on dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
    background: linear-gradient(135deg, #0A1931, #0D1F3F); /* Blend primary with body bg */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color for title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__hero-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__hero-link:hover {
    color: #ffffff;
}

.page-support__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__hero-description-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__hero-description-link:hover {
    color: #ffffff;
}

.page-support__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-support__hero-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for primary CTA */
    color: #0A1931; /* Dark text on accent background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-support__hero-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-support__hero-cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-support__hero-cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
}

/* Section Titles and Descriptions */
.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__section-description-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__section-description-link:hover {
    color: #ffffff;
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #0A1931; /* Primary color for section background */
    padding: 80px 0;
}

.page-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__faq-question-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__faq-question-link:hover {
    color: #ffffff;
}

.page-support__faq-answer {
    color: #e0e0e0;
    font-size: 1em;
}

.page-support__faq-answer-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__faq-answer-link:hover {
    color: #ffffff;
}

.page-support__view-all-button {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__view-all-button:hover {
    background-color: #e6c200;
}

/* Guides Section */
.page-support__guides-section {
    padding: 80px 0;
    background-color: #0D1F3F; /* Body background color for consistency */
}

.page-support__guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-support__guide-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
}

.page-support__guide-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-support__guide-card-title {
    font-size: 1.5em;
    color: #FFD700;
    padding: 20px 20px 10px 20px;
    font-weight: bold;
}

.page-support__guide-card-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-card-link:hover {
    color: #ffffff;
}

.page-support__guide-card-description {
    color: #e0e0e0;
    font-size: 0.95em;
    padding: 0 20px 20px 20px;
    flex-grow: 1; /* Allow description to take available space */
}

.page-support__guide-card-description-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-card-description-link:hover {
    color: #ffffff;
}

.page-support__guide-card-button {
    display: block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 12px 20px;
    border-radius: 0 0 10px 10px; /* Rounded only at bottom */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to the bottom */
}

.page-support__guide-card-button:hover {
    background-color: #e6c200;
}

/* Contact Section */
.page-support__contact-section {
    background-color: #0A1931;
    padding: 80px 0;
}

.page-support__contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-support__contact-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
}

.page-support__contact-card-icon {
    width: 200px; /* Minimum size requirement */
    height: 200px; /* Minimum size requirement */
    margin: 0 auto 20px auto; /* Centered */
    object-fit: contain;
    display: block;
    /* filter property removed as per strict rule */
}

.page-support__contact-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__contact-card-description {
    color: #e0e0e0;
    font-size: 0.95em;
    margin-bottom: 25px;
}

.page-support__contact-card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-support__contact-card-button:hover {
    background-color: #e6c200;
}

/* Responsible Gambling Section */
.page-support__responsible-gambling-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0D1F3F;
}

.page-support__responsible-gambling-button {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__responsible-gambling-button:hover {
    background-color: #FFD700;
    color: #0A1931;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }

    .page-support__hero-description {
        font-size: 1.1em;
    }

    .page-support__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__hero-cta-button {
        width: 80%;
        margin: 0 auto;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__faq-item,
    .page-support__guide-card,
    .page-support__contact-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

    .page-support__hero-cta-button {
        width: 90%;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__faq-question,
    .page-support__guide-card-title,
    .page-support__contact-card-title {
        font-size: 1.3em;
    }
}