/* style/support.css */
/* Base styles for the support page */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark backgrounds */
    line-height: 1.6;
    background-color: #1a2a3a; /* Slightly lighter dark background than main #2C3E50 to ensure contrast with text */
}

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

/* Hero Section */
.page-support-hero {
    background: linear-gradient(135deg, #2C3E50, #1a2a3a); /* Dark gradient */
    padding: 80px 0;
    text-align: center;
    color: #ffffff; /* White text on dark background */
}

.page-support-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #F39C12; /* Secondary color for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0; /* Lighter grey for subtitle */
}

.page-support-brand {
    color: #F39C12; /* Highlight brand name with secondary color */
    font-weight: bold;
}

/* Buttons */
.page-support-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1.1em;
    border: none;
    margin: 10px;
}

.page-support-btn-primary {
    background-color: #F39C12; /* Secondary color for primary action */
    color: #2C3E50; /* Dark text on vibrant background */
}

.page-support-btn-primary:hover {
    background-color: #ffb74d; /* Lighter shade on hover for better contrast with dark text */
    transform: translateY(-2px);
}

.page-support-btn-secondary {
    background-color: #2C3E50; /* Primary color for secondary action */
    color: #F39C12; /* Vibrant text on dark background */
    border: 2px solid #F39C12;
}

.page-support-btn-secondary:hover {
    background-color: #1a2a3a; /* Darker shade on hover for better contrast with vibrant text */
    transform: translateY(-2px);
}

/* Section Titles and Descriptions */
.page-support-section-title {
    font-size: 2.8em;
    color: #F39C12; /* Secondary color for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support-section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

/* FAQ Overview Section */
.page-support-faq-overview {
    background-color: #2c3e50; /* Primary color for this section background */
    padding: 60px 0;
}

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

.page-support-faq-item {
    background-color: #1a2a3a; /* Darker background for FAQ cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

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

.page-support-faq-item-title {
    font-size: 1.8em;
    color: #F39C12; /* Secondary color for FAQ titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support-faq-item-desc {
    color: #e0e0e0; /* Light grey for FAQ descriptions */
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Contact Methods Section */
.page-support-contact-methods {
    background-color: #1a2a3a; /* Dark background */
    padding: 60px 0;
}

.page-support-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-support-contact-card {
    background-color: #2c3e50; /* Primary color for contact cards */
    padding: 30px;
    border-radius: 10px;
    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-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px #F39C12); /* Enhance icon with glow */
}

.page-support-contact-card-title {
    font-size: 2em;
    color: #F39C12; /* Secondary color for contact card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support-contact-card-desc {
    color: #e0e0e0; /* Light grey for contact card descriptions */
    margin-bottom: 25px;
}

/* Responsible Gaming Section */
.page-support-responsible-gaming {
    background-color: #2c3e50; /* Primary color for this section */
    padding: 60px 0;
    text-align: center;
}

/* CTA Section */
.page-support-cta {
    background: linear-gradient(90deg, #2C3E50, #1a2a3a); /* Dark gradient background */
    padding: 60px 0;
    text-align: center;
}

.page-support-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-support-cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-support-cta-content {
    max-width: 800px;
}

.page-support-cta-title {
    font-size: 2.5em;
    color: #F39C12; /* Secondary color for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support-cta-description {
    font-size: 1.2em;
    color: #e0e0e0; /* Light grey for CTA description */
    margin-bottom: 30px;
}

.page-support-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

    .page-support-subtitle {
        font-size: 1.1em;
    }

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

    .page-support-faq-list,
    .page-support-contact-grid {
        grid-template-columns: 1fr;
    }

    .page-support-cta-image {
        max-width: 80%;
    }
}

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

    .page-support-subtitle {
        font-size: 1em;
    }

    .page-support-btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-support-cta-buttons {
        flex-direction: column;
    }
}