.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background, so light text */
    background-color: transparent; /* Rely on shared.css for body background */
}

.page-support__section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: 0; /* shared.css handles body padding-top */
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-support__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    z-index: -1;
}

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

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Section Titles and Descriptions */
.page-support__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for section titles */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-support__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-support__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000000;
}

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

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

/* Contact Methods Section */
.page-support__contact-methods {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
}

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

.page-support__method-card {
    background-color: rgba(255, 255, 255, 0.08); /* Card background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.page-support__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-support__method-icon {
    width: 200px; /* Min size 200x200px */
    height: 150px; /* Example, adjust for aspect ratio */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-support__method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

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

/* FAQ Section */
.page-support__faq-section {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0; /* Image will extend */
}

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

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

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

.page-support__faq-title {
    font-size: 1.2em;
    color: #FFD700;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* Initial padding 0 */
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
    color: #cccccc;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px !important; /* Expanded padding */
}

.page-support__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
    color: #cccccc;
}

.page-support__faq-image {
    width: 100%;
    height: auto;
    max-width: 800px; /* Example size */
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsible Gaming Section */
.page-support__responsible-gaming {
    background-color: rgba(139, 0, 0, 0.1); /* Dark red translucent background */
    color: #ffffff;
}

.page-support__responsible-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-support__responsible-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-support__responsible-text-block {
    flex: 2;
    min-width: 300px;
    color: #f0f0f0;
}

.page-support__responsible-subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-support__responsible-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-support__responsible-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-support__responsible-callout {
    font-style: italic;
    color: #f0f0f0;
    margin-top: 20px;
}

/* CTA Section */
.page-support__cta-section {
    background-color: #8B0000; /* Dark red background */
    color: #ffffff;
    padding: 80px 20px;
}

.page-support__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-support__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

/* Dark background text color override */
.page-support__dark-bg {
  background-color: #121212; /* Or a darker shade if needed for specific cards */
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 3em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__cta-title {
        font-size: 2.2em;
    }
    .page-support__method-icon {
        width: 180px;
        height: 135px;
    }
    .page-support__responsible-image {
        max-width: 100%;
    }
    .page-support__responsible-content {
        flex-direction: column;
        text-align: center;
    }
    .page-support__responsible-text-block {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        height: 60vh;
        min-height: 400px;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section {
        padding: 40px 15px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-description {
        font-size: 0.95em;
    }
    .page-support__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-support__method-icon {
        width: 150px;
        height: 112px;
    }
    .page-support__faq-question {
        padding: 15px;
    }
    .page-support__faq-title {
        font-size: 1.1em;
    }
    .page-support__faq-answer {
        padding: 0 15px;
    }
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px !important;
    }
    .page-support__responsible-subtitle {
        font-size: 1.5em;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn-primary,
    .page-support__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 5px 0;
    }

    /* Mobile image and video responsiveness */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support video,
    .page-support__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__video-section,
    .page-support__video-container,
    .page-support__video-wrapper,
    .page-support__cta-buttons,
    .page-support__button-group,
    .page-support__btn-container {
        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-section {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
    }
    .page-support__responsible-list {
        padding-left: 20px;
    }
}