/* style/support.css */
.page-support {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #000000; /* Main background color */
    font-size: 16px;
}

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

/* Hero Section */
.page-support-hero {
    position: relative;
    height: 550px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.page-support-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4); /* Darken image for better text readability */
}

.page-support-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    z-index: 2;
}

.page-support-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: #FFFFFF;
}

.page-support-hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    font-weight: bold;
}

.page-support-hero-description {
    font-size: 1.4em;
    margin-bottom: 50px;
    color: #E0E0E0;
    font-weight: 300;
}

/* General Section Styling */
.page-support-section {
    padding: 80px 0;
    text-align: center;
}

.page-support-section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support-section-subtitle {
    font-size: 1.2em;
    color: #A0A0A0;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

/* Buttons */
.page-support-btn {
    display: inline-block;
    padding: 14px 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.2s ease, box-shadow 0.3s ease;
    margin: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-support-btn-primary {
    background-color: #FFD700;
    color: #000000; /* Black text on gold button for contrast */
    border: 2px solid #FFD700;
}

.page-support-btn-primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

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

.page-support-btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-support-btn-link {
    background-color: #000000;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-support-btn-link:hover {
    background-color: #FFD700;
    color: #000000;
    border-color: #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* FAQ Section */
.page-support-faq {
    background-color: #0A0A0A;
}

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

.page-support-faq-item {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-faq-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-support-faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 18px;
    font-weight: 600;
}

.page-support-faq-answer {
    color: #C0C0C0;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-support-more-faq {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

.page-support-more-faq p {
    font-size: 1.2em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

/* Contact Section */
.page-support-contact {
    background-color: #000000;
}

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

.page-support-contact-item {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-contact-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-support-contact-icon {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-support-contact-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-support-contact-description {
    color: #C0C0C0;
    margin-bottom: 25px;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Responsible Gaming Section */
.page-support-responsible-gaming {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.page-support-responsible-gaming-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.page-support-responsible-gaming-image {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.page-support-responsible-gaming-image:hover {
    transform: scale(1.03);
}

.page-support-responsible-gaming-text {
    max-width: 650px;
    text-align: left;
    color: #C0C0C0;
}

.page-support-responsible-gaming-text p {
    margin-bottom: 20px;
    font-size: 1.15em;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support-hero-title {
        font-size: 3em;
    }
    .page-support-hero-description {
        font-size: 1.2em;
    }
    .page-support-section-title {
        font-size: 2.2em;
    }
    .page-support-section-subtitle {
        font-size: 1.05em;
    }
}

@media (max-width: 768px) {
    .page-support-hero {
        height: 450px;
    }
    .page-support-hero-title {
        font-size: 2.5em;
    }

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

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

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

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

    .page-support-responsible-gaming-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-support-responsible-gaming-text {
        text-align: center;
    }
    .page-support-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support-faq-question {
        font-size: 1.3em;
    }
    .page-support-contact-title {
        font-size: 1.6em;
    }
    .page-support-contact-icon {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .page-support-hero {
        height: 380px;
    }
    .page-support-hero-title {
        font-size: 2em;
    }
    .page-support-hero-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-support-btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }
    .page-support-section-title {
        font-size: 1.8em;
    }
    .page-support-section-subtitle {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-support-faq-item, .page-support-contact-item {
        padding: 25px;
    }
    .page-support-faq-question {
        font-size: 1.2em;
    }
    .page-support-faq-answer, .page-support-contact-description {
        font-size: 0.95em;
    }
    .page-support-contact-icon {
        font-size: 2.5em;
    }
    .page-support-contact-title {
        font-size: 1.4em;
    }
    .page-support-responsible-gaming-image {
        max-width: 200px;
    }
    .page-support-responsible-gaming-text p {
        font-size: 1em;
    }
}