/* style/support.css */

/* General styles for the support page content */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for general text on light background */
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background for the page */
}

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

/* Hero Section */
.page-support-hero {
    background: linear-gradient(135deg, #0A2342, #1a3e6c); /* Dark blue gradient */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-support-hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E6B325; /* Accent color for title */
}

.page-support-hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin-bottom: 30px;
    color: #e0e0e0; /* Slightly off-white for description */
}

.page-support-hero-image {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
}

.page-support-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Titles and Descriptions */
.page-support-section-title {
    font-size: 2.5em;
    color: #0A2342; /* Main dark blue for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Buttons */
.page-support-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-support-btn-primary {
    background-color: #E6B325; /* Accent color */
    color: #0A2342; /* Dark text on accent background */
}

.page-support-btn-primary:hover {
    background-color: #d1a120; /* Darker accent on hover */
    transform: translateY(-2px);
}

.page-support-btn-secondary {
    background-color: #0A2342; /* Main dark blue */
    color: #FFFFFF; /* White text on dark background */
    border: 1px solid #0A2342;
}

.page-support-btn-secondary:hover {
    background-color: #1a3e6c; /* Lighter dark blue on hover */
    transform: translateY(-2px);
}

.page-support-btn-tertiary {
    background-color: transparent;
    color: #0A2342; /* Dark text for outline button */
    border: 2px solid #0A2342;
}

.page-support-btn-tertiary:hover {
    background-color: #0A2342;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-support-faq {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-support-faq-item {
    background-color: #f0f4f8; /* Light blue-gray for FAQ item background */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-support-faq-question {
    font-size: 1.3em;
    color: #0A2342;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: color 0.3s ease;
}

.page-support-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #E6B325;
    transition: transform 0.3s ease;
}

.page-support-faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support-faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-bottom: 15px;
}

/* The JS will dynamically set max-height, this CSS ensures smooth transition */
/* .page-support-faq-question.active + .page-support-faq-answer { max-height: 200px; } */

.page-support-link {
    color: #E6B325;
    text-decoration: none;
    font-weight: bold;
}

.page-support-link:hover {
    text-decoration: underline;
}

.page-support-image-center {
    text-align: center;
    margin-top: 50px;
}

.page-support-image-center img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
.page-support-contact {
    padding: 60px 0;
    background-color: #f0f4f8; /* Light blue-gray background */
}

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

.page-support-contact-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-support-contact-type {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-support-contact-info {
    color: #666666;
    margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-support-responsible-gambling {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-support-responsible-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-support-responsible-list li {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-support-responsible-list li::before {
    content: '✓';
    color: #E6B325; /* Accent color for checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* App Download Section */
.page-support-app-download {
    background: linear-gradient(135deg, #0A2342, #1a3e6c); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-support-app-download .page-support-section-title,
.page-support-app-download .page-support-section-description {
    color: #FFFFFF;
}

.page-support-app-download .page-support-section-title {
    color: #E6B325;
}

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

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

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

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

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

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

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