/* style/support.css */

/* --- General Styles --- */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
    padding-bottom: 60px; /* Add some space at the bottom before footer */
}

.page-support a {
    color: #2AD16F; /* Lighter shade of brand green for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support a:hover {
    color: #57E38D; /* Glow color for hover */
}

.page-support__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-support__btn-primary:hover {
    background: linear-gradient(180deg, #57E38D 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    background-color: transparent;
    color: #2AD16F;
    border: 2px solid #2E7A4E; /* Border color */
}

.page-support__btn-secondary:hover {
    background-color: #11271B; /* Card BG */
    color: #57E38D; /* Glow */
    border-color: #57E38D;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Stack content and image vertically */
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
    text-align: center;
    background-color: #0A4B2C; /* Deep Green for hero background */
    overflow: hidden;
}

.page-support__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 40px; /* Space between text and image */
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any background effects if any */
}

.page-support__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-support__description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Methods Section --- */
.page-support__contact-methods {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.page-support__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F2FFF6;
}

.page-support__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__card-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Make icons circular if desired */
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
    display: block;
}

.page-support__card-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__card-text {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 25px;
    flex-grow: 1; /* Allow text to take available space */
}

/* --- FAQ Section --- */
.page-support__faq-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-support__faq-list {
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
    list-style: none; /* For <summary> tag */
}

.page-support__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-support__faq-item[open] .page-support__faq-question {
    background-color: #1E3A2A; /* Deep Green shade */
}

.page-support__faq-question:hover {
    background-color: #1E3A2A; /* Deep Green shade */
}

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

.page-support__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: #2AD16F;
}

.page-support__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-support__faq-answer p {
    margin-bottom: 0;
}

/* --- Responsible Gambling Section --- */
.page-support__responsible-gambling {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

/* Re-use .page-support__card for responsible gambling cards */

/* --- Security & Privacy Section --- */
.page-support__security-privacy {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-support__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    color: #F2FFF6;
}

.page-support__security-list li {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start; /* Align checkmark to top */
}

.page-support__security-list li::before {
    content: '✅'; /* Checkmark icon */
    margin-right: 15px;
    font-size: 1.2em;
    color: #2AD16F;
    flex-shrink: 0; /* Prevent checkmark from shrinking */
    margin-top: 2px; /* Adjust vertical alignment */
}

/* --- Get Started Section --- */
.page-support__get-started {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-support__guide-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-support__hero-section {
        padding: 10px 20px 40px;
    }
    .page-support__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-support__description {
        font-size: clamp(0.9em, 1.8vw, 1.1em);
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__section-description {
        font-size: 1em;
    }
    .page-support__card-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .page-support {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-support__hero-section {
        padding: 10px 15px 30px;
    }

    .page-support__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-support__description {
        font-size: clamp(0.9em, 3vw, 1em);
    }

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

    .page-support__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-support__btn-primary,
    .page-support__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-support__hero-image,
    .page-support__card-icon,
    .page-support__guide-image,
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-support__contact-methods,
    .page-support__faq-section,
    .page-support__responsible-gambling,
    .page-support__security-privacy,
    .page-support__get-started {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-support__card {
        padding: 25px;
    }

    .page-support__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-support__faq-answer {
        padding: 0 20px 15px;
    }

    .page-support__security-list li {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-support__card-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__card-title {
        font-size: 1.3em;
    }
    .page-support__faq-question {
        font-size: 1em;
    }
    .page-support__security-list li {
        font-size: 0.9em;
    }
}