.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-support__hero-section {
    position: relative;
    background: linear-gradient(135deg, #26A9E0, #1a1a2e); /* Brand colors */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
}

.page-support__hero-content {
    max-width: 800px;
    z-index: 10;
    position: relative;
    padding: 0 20px;
}

.page-support__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-support__intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-text-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
}

.page-support__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-support__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-support__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-support__btn-text-link {
    background: none;
    border: none;
    color: #26A9E0;
    padding: 0;
    text-decoration: underline;
    font-weight: normal;
}

.page-support__btn-text-link:hover {
    color: #1a8cc4;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    position: absolute;
    top: 0;
    left: 0;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
}

.page-support__section-title--light {
    color: #ffffff;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #f0f0f0; /* Light grey for body text on dark background */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-support__section-description--light {
    color: #ffffff;
}

/* Features Section */
.page-support__features-section {
    padding: 80px 0;
    background-color: #1a1a2e; /* Dark background */
    color: #ffffff;
}

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

.page-support__feature-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card on dark background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__feature-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 400px; /* Constrain max width for images */
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-support__feature-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-support__feature-text {
    font-size: 1em;
    color: #f0f0f0;
    flex-grow: 1; /* Allow text to take available space */
    margin-bottom: 20px;
}

.page-support__feature-link {
    display: inline-block;
    margin-top: auto; /* Push link to bottom */
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__feature-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #0d0d1e; /* Even darker background */
    color: #ffffff;
}

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.03);
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

.page-support__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding 0 */
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px 20px 25px; /* Final padding */
}

.page-support__faq-answer p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

/* Contact Methods Section */
.page-support__contact-methods-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    color: #ffffff;
}

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

.page-support__contact-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__contact-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-support__contact-text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* Resources Section */
.page-support__resources-section {
    padding: 80px 0;
    background-color: #0d0d1e;
    color: #ffffff;
}

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

.page-support__resource-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__resource-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.page-support__resource-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-support__resource-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__resource-title a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.page-support__resource-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-support__cta-full-width {
    text-align: center;
    margin-top: 60px;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
}