/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text for general content on dark background */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
    overflow-x: hidden;
}

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

.page-support__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-support__section-subtitle {
    font-size: 1.2em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 40px;
}

/* Buttons */
.page-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #1A202C; /* Dark text for contrast */
    border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
    background-color: #E0B800;
    border-color: #E0B800;
    color: #0F1217;
}

.page-support__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color */
    border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-support__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section */
.page-support__hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1A202C 0%, #3a4150 100%); /* Dark gradient */
    overflow: hidden;
}

.page-support__hero-image {
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 40%;
    max-width: 600px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-support__hero .page-support__container {
    position: relative;
    z-index: 1;
}

.page-support__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.page-support__hero-description {
    font-size: 1.4em;
    color: #D0D0D0;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #212733; /* Slightly lighter dark background */
    position: relative;
    overflow: hidden;
}

.page-support__faq-image {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    width: 30%;
    max-width: 400px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
}

.page-support__faq-section .page-support__container {
    position: relative;
    z-index: 1;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-support__faq-item {
    background-color: #2A313E; /* Darker card background */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A4150;
}

.page-support__faq-question {
    padding: 20px;
    font-size: 1.2em;
    color: #FFD700;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #3A4150;
}

.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 {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #D0D0D0;
    background-color: #2A313E;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 20px 20px;
}

.page-support__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}
.page-support__faq-answer a {
    color: #FFD700;
    text-decoration: none;
}
.page-support__faq-answer a:hover {
    text-decoration: underline;
}

.page-support__cta-bottom {
    text-align: center;
    margin-top: 50px;
}
.page-support__cta-bottom p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D0D0D0;
}

/* Contact Channels */
.page-support__contact-channels {
    padding: 80px 0;
    background-color: #1A202C;
    position: relative;
    overflow: hidden;
}

.page-support__channels-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    z-index: 0;
}

.page-support__contact-channels .page-support__container {
    position: relative;
    z-index: 1;
}

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

.page-support__channel-card {
    background-color: #2A313E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A4150;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-support__channel-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Glow effect for icons */
}

.page-support__channel-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-support__channel-description {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 25px;
}

/* Responsible Gambling Section */
.page-support__responsible-gambling {
    padding: 80px 0;
    background-color: #212733;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__responsible-gambling-image {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 500px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
}

.page-support__responsible-gambling .page-support__container {
    position: relative;
    z-index: 1;
}

.page-support__responsible-gambling p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #D0D0D0;
}

/* Download App Section */
.page-support__download-app {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A202C 0%, #3a4150 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__download-app-image {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 40%;
    max-width: 600px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-support__download-app .page-support__container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .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__hero-image,
    .page-support__faq-image,
    .page-support__responsible-gambling-image,
    .page-support__download-app-image {
        width: 50%;
        opacity: 0.15;
    }
    .page-support__hero-image { right: -10%; }
    .page-support__faq-image { left: -10%; }
    .page-support__responsible-gambling-image { right: -10%; }
    .page-support__download-app-image { left: -10%; }
}

@media (max-width: 768px) {
    .page-support__hero {
        padding: 80px 0;
    }
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-subtitle {
        font-size: 1em;
    }
    .page-support__btn {
        padding: 10px 20px;
    }
    .page-support__channels-grid {
        grid-template-columns: 1fr;
    }
    .page-support__hero-image,
    .page-support__faq-image,
    .page-support__responsible-gambling-image,
    .page-support__download-app-image {
        display: none; /* Hide decorative images on small screens */
    }
    .page-support__faq-item.active .page-support__faq-answer {
        max-height: 400px; /* More height for mobile */
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__container {
        padding: 0 15px;
    }
}

/* Accessibility: Ensure focus states are visible */
.page-support__btn:focus,
.page-support__faq-question:focus,
.page-support__channel-card a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}