/* style/support.css */
/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image/Video on top, content below */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    box-sizing: border-box;
}

.page-support__hero-video-wrapper {
    width: 100%;
    max-width: 1200px; /* Match content area max-width */
    margin-bottom: 30px; /* Space between video and content */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-support__hero-video-link {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    cursor: pointer;
}

.page-support__hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.page-support__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-support__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-support__description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

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

/* General Section Styles */
.page-support__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-support__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-support__text-block {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
    text-align: justify;
}

/* Dark Section for contrast */
.page-support__dark-section {
    background-color: #11271B; /* Card BG */
    padding: 80px 20px;
    border-radius: 15px;
    margin: 40px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.page-support__dark-section .page-support__section-title {
    color: #F2C14E; /* Gold */
}
.page-support__dark-section .page-support__text-block {
    color: #F2FFF6; /* Text Main */
}


/* Support Channels Grid */
.page-support__channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__channel-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__channel-icon {
    width: 100%; /* Ensure images are responsive */
    height: auto;
    max-height: 200px; /* Limit height */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-support__channel-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__channel-info {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to take up available space */
}

/* FAQ Section */
.page-support__faq-list {
    margin-top: 30px;
}

.page-support__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-support__faq-question::-webkit-details-marker {
    display: none;
}

.page-support__faq-question::marker {
    display: none;
}

.page-support__faq-qtext {
    flex-grow: 1;
}

.page-support__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

.page-support__faq-item[open] .page-support__faq-toggle {
    content: "−";
}

.page-support__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
}

.page-support__faq-answer p {
    margin-bottom: 10px;
}
.page-support__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-support__link-more {
    color: #57E38D; /* Glow */
    text-decoration: underline;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}
.page-support__link-more:hover {
    color: #2AD16F;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    margin: 20px auto 40px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__responsible-gaming-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    max-width: 100%; /* Ensure button does not exceed container width */
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support__btn-secondary {
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__btn-secondary:hover {
    background-color: #57E38D; /* Glow */
    color: #08160F; /* Background */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-support__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-support__description {
        font-size: 1rem;
    }
    .page-support__content-area {
        padding: 40px 15px;
    }
    .page-support__dark-section {
        padding: 60px 15px;
    }
    .page-support__channel-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }
    .page-support__hero-video-wrapper {
        margin-bottom: 20px;
    }
    .page-support__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-support__description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn-primary,
    .page-support__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    .page-support__content-area,
    .page-support__dark-section {
        padding: 30px 15px;
    }
    .page-support__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-support__text-block {
        font-size: 0.95rem;
    }
    .page-support__channel-grid {
        grid-template-columns: 1fr;
    }
    .page-support__faq-question {
        font-size: 1.05rem;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        font-size: 0.9rem;
        padding: 15px 20px;
    }
    .page-support__responsible-gaming-links {
        flex-direction: column;
        gap: 10px;
    }

    /* Mobile specific image/video container adjustments */
    .page-support img,
    .page-support__hero-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-support__hero-video-wrapper,
    .page-support__channel-item,
    .page-support__faq-item,
    .page-support__cta-buttons,
    .page-support__responsible-gaming-links,
    .page-support__content-area,
    .page-support__dark-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-support__hero-video-wrapper {
        padding-left: 0 !important; /* Video wrapper itself shouldn't have extra padding */
        padding-right: 0 !important;
    }
    .page-support__hero-video-link {
        padding-bottom: 56.25% !important; /* Maintain aspect ratio for video */
    }
    .page-support__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-support__responsible-gaming-image {
        padding-left: 0 !important; /* Image itself shouldn't have extra padding */
        padding-right: 0 !important;
    }
}