/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #f8f8f8;
}

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

.page-support__hero-section {
    position: relative;
    padding: 120px 0 60px; /* Adjust padding-top for header offset */
    background-color: #0A192F;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-support__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #0A192F;
    font-weight: bold;
}

.page-support__section-title--white {
    color: #FFD700;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.page-support__section-intro--white {
    color: #f0f0f0;
}

.page-support__channels-section, 
.page-support__faq-section, 
.page-support__responsible-gambling-section, 
.page-support__cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-support__dark-bg {
    background-color: #0A192F;
    color: #ffffff;
}

.page-support__light-bg {
    background-color: #f8f8f8;
    color: #333333;
}

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

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

.page-support__channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-support__channel-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 8px;
}

.page-support__card-title {
    font-size: 1.8em;
    color: #0A192F;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0A192F;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    border: 2px solid #0A192F;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.page-support__btn-secondary:hover {
    background-color: #0A192F;
    color: #ffffff;
}

.page-support__video-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A192F;
    color: #ffffff;
}

.page-support__video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__video-link-overlay {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.page-support__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

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

.page-support__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-support__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    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 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

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

.page-support__faq-answer p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-support__complaint-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A192F;
    color: #ffffff;
}

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

.page-support__step-card {
    background-color: #1a2c47; /* Slightly lighter dark blue */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

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

.page-support__step-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-support__responsible-gambling-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-support__text-block {
    flex: 1;
    text-align: left;
}

.page-support__image-block {
    flex: 1;
    text-align: center;
}

.page-support__responsible-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__responsible-list {
    list-style: disc inside;
    margin: 20px 0;
    padding-left: 20px;
    color: #333333;
}

.page-support__responsible-list li {
    margin-bottom: 10px;
}

.page-support__responsible-list strong {
    color: #0A192F;
}

.page-support__tips-section {
    padding: 80px 0;
    background-color: #0A192F;
    color: #ffffff;
    text-align: center;
}

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

.page-support__tip-card {
    background-color: #1a2c47;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

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

.page-support__tip-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-support__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f8f8;
}

.page-support__cta-button {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__channel-grid, 
    .page-support__process-steps, 
    .page-support__tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-support__responsible-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 100px 0 40px; /* Adjust padding-top for header offset */
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-intro {
        font-size: 0.95em;
    }
    .page-support__channels-section, 
    .page-support__faq-section, 
    .page-support__responsible-gambling-section, 
    .page-support__cta-section, 
    .page-support__video-section, 
    .page-support__complaint-section, 
    .page-support__tips-section {
        padding: 60px 0;
    }
    .page-support__container {
        padding: 0 15px;
    }
    
    /* Image Responsive */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support__channel-icon {
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 150px !important;
        object-fit: cover !important;
    }

    /* Video Responsive */
    .page-support video,
    .page-support__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support__video-section,
    .page-support__video-container,
    .page-support__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    /* Button Responsive */
    .page-support__cta-button,
    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-support__cta-section .page-support__container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-support__channel-card, .page-support__step-card, .page-support__tip-card {
        padding: 20px;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        padding: 0 20px;
    }
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__section-title {
        font-size: 1.6em;
    }
    .page-support__card-title {
        font-size: 1.5em;
    }
    .page-support__btn-primary, .page-support__btn-secondary {
        padding: 12px 20px;
        font-size: 0.95em;
    }
}