/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-support-hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,gold_red]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-support-hero .page-support-container {
    position: relative;
    z-index: 1;
}

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

.page-support-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-support-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-support-btn-primary {
    background-color: #FFD700;
    color: #8B0000; /* Dark red for text on gold button */
    border: 2px solid #FFD700;
}

.page-support-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support-btn-secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

/* Section common styles */
.page-support-faq-section, 
.page-support-contact-section, 
.page-support-guide-section, 
.page-support-responsible-gambling {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support-section-title {
    font-size: 2.5em;
    color: #8B0000; /* Dark red for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* FAQ Section */
.page-support-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-support-faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-support-faq-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-color: #FFD700;
}

.page-support-faq-question {
    font-size: 1.3em;
    color: #8B0000; /* Dark red for questions */
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support-faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-support-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    color: #444;
    padding-top: 0;
}

.page-support-faq-item.active .page-support-faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-support-faq-answer p {
    margin-bottom: 10px;
}

.page-support-link {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

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

.page-support-method-card {
    background-color: #fdfdfd;
    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-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    /* No filter to change image color */
}

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

.page-support-method-card p {
    color: #666;
    margin-bottom: 25px;
}

.page-support-btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

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

.page-support-guide-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support-guide-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* No filter to change image color */
}

.page-support-guide-card-title {
    font-size: 1.3em;
    color: #8B0000;
    margin: 15px 20px 10px 20px;
}

.page-support-guide-card-title a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support-guide-card-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-support-guide-card p {
    color: #666;
    margin: 0 20px 20px 20px;
}

/* Responsible Gambling Section */
.page-support-responsible-gambling {
    background-color: #8B0000;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 0; /* Remove margin-bottom for the last section */
}

.page-support-responsible-gambling .page-support-section-title {
    color: #FFD700;
}

.page-support-responsible-gambling .page-support-section-description {
    color: #f0f0f0;
}

.page-support-responsible-gambling .page-support-btn-primary {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

.page-support-responsible-gambling .page-support-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

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

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

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

    .page-support-btn {
        width: 80%;
        max-width: 300px;
    }

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

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

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

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

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

    .page-support-hero {
        padding: 60px 0;
    }

    .page-support-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-support-faq-section, 
    .page-support-contact-section, 
    .page-support-guide-section, 
    .page-support-responsible-gambling {
        padding: 40px 0;
    }

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