/* style/support.css */
/* Base styles for the support page content */
.page-support {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

/* Hero Section */
.page-support__hero-section {
    background-color: #8B0000; /* Deep Red auxiliary color for hero background */
    color: #ffffff; /* White text for dark background */
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-support__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

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

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

.page-support__button--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #8B0000; /* Deep Red text for contrast */
    border-color: #FFD700;
}

.page-support__button--primary:hover {
    background-color: #e6c200;
    color: #6a0000;
}

.page-support__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border-color: #FFD700;
}

.page-support__button--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 1;
}

/* Section common styles */
.page-support__section-title {
    font-size: 2.5em;
    color: #8B0000; /* Deep Red for section titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

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

/* FAQs Section */
.page-support__faqs-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light background for contrast */
}

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

.page-support__faq-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #8B0000; /* Deep Red for questions */
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-support__faq-answer a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Options Section */
.page-support__contact-options-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-support__contact-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__contact-icon {
    width: 250px; /* Ensure images are not too small */
    height: 167px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block; /* Center image */
    margin-left: auto;
    margin-right: auto;
}

.page-support__contact-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-support__contact-title a {
    color: #8B0000;
    text-decoration: none;
}

.page-support__contact-title a:hover {
    text-decoration: underline;
}

.page-support__contact-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
}

.page-support__button--outline {
    background-color: transparent;
    color: #8B0000;
    border-color: #8B0000;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-support__button--outline:hover {
    background-color: #8B0000;
    color: #FFD700;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
    padding: 80px 0;
    background-color: #8B0000; /* Deep Red background */
    color: #ffffff; /* White text for dark background */
    text-align: center;
}

.page-support__responsible-gaming-section .page-support__section-title {
    color: #FFD700; /* Gold for title on dark background */
}

.page-support__responsible-gaming-section .page-support__section-description {
    color: #f0f0f0; /* Lighter white for description */
    margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
    /* Mobile specific styles */
    .page-support {
        padding-top: var(--header-offset, 120px); /* Ensure mobile also has header offset */
    }

    .page-support__hero-section {
        padding: 60px 15px;
    }

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

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

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

    .page-support__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-support__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-support__faq-grid,
    .page-support__contact-grid {
        grid-template-columns: 1fr;
    }

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

    .page-support__faq-question {
        font-size: 1.2em;
    }

    .page-support__contact-icon {
        width: 200px; /* Minimum size */
        height: 133px; /* Maintain aspect ratio */
    }

    /* Important: Content area images must not overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

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

/* Ensure content images are at least 200px wide for desktop */
.page-support__contact-card img,
.page-support__hero-image {
    min-width: 200px;
    min- /* Adjusted to maintain aspect ratio for 200px width */
}