:root {
    --shbet-win-primary: #11A84E;
    --shbet-win-accent: #22C768;
    --shbet-win-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --shbet-win-card-bg: #11271B;
    --shbet-win-page-bg: #08160F;
    --shbet-win-text-main: #F2FFF6;
    --shbet-win-text-secondary: #A7D9B8;
    --shbet-win-border: #2E7A4E;
    --shbet-win-glow: #57E38D;
    --shbet-win-gold: #F2C14E;
    --shbet-win-divider: #1E3A2A;
    --shbet-win-deep-green: #0A4B2C;
}

.page-support {
    background-color: var(--shbet-win-page-bg);
    color: var(--shbet-win-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px;
    object-fit: cover;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
}

.page-support__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-support__main-title {
    font-size: clamp(2em, 3.5vw, 3.2em);
    color: var(--shbet-win-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-support__hero-description {
    font-size: 1.1em;
    color: var(--shbet-win-text-secondary);
    margin-bottom: 30px;
}

.page-support__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--shbet-win-gold);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-support__text-block {
    font-size: 1em;
    color: var(--shbet-win-text-main);
    margin-bottom: 15px;
    text-align: justify;
}

.page-support__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-support__cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-support__text-link {
    color: var(--shbet-win-text-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-support__text-link:hover {
    color: var(--shbet-win-gold);
}

.page-support__intro-section {
    padding: 60px 0;
    background-color: var(--shbet-win-deep-green);
    border-bottom: 1px solid var(--shbet-win-divider);
}

.page-support__faq-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--shbet-win-divider);
}

.page-support__faq-section .page-support__image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.page-support__faq-item {
    background-color: var(--shbet-win-card-bg);
    border: 1px solid var(--shbet-win-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-item summary {
    list-style: none;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--shbet-win-text-main);
    background-color: var(--shbet-win-deep-green);
    border-bottom: 1px solid var(--shbet-win-divider);
    transition: background-color 0.3s ease;
}

.page-support__faq-item summary:hover {
    background-color: var(--shbet-win-primary);
}

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

.page-support__faq-qtext {
    font-size: 1.1em;
    color: var(--shbet-win-text-main);
}

.page-support__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--shbet-win-gold);
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    padding: 20px;
    color: var(--shbet-win-text-secondary);
    font-size: 0.95em;
    border-top: 1px solid var(--shbet-win-divider);
}

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

.page-support__contact-channels-section {
    padding: 60px 0;
    background-color: var(--shbet-win-page-bg);
    border-bottom: 1px solid var(--shbet-win-divider);
}

.page-support__contact-channels-section .page-support__image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.page-support__contact-card,
.page-support__guide-card {
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-support__card-text {
    font-size: 0.95em;
    margin-bottom: 25px;
}

.page-support__guide-section {
    padding: 60px 0;
    background-color: var(--shbet-win-deep-green);
    border-bottom: 1px solid var(--shbet-win-divider);
}

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

.page-support__security-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--shbet-win-divider);
}

.page-support__security-section .page-support__image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-support__security-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-support__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--shbet-win-deep-green);
}

@media (max-width: 1024px) {
    .page-support__hero-image {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-support__container {
        padding: 0 15px !important;
    }

    .page-support__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-support__hero-image {
        max-height: 350px;
        margin-bottom: 20px;
    }

    .page-support__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-support__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-support__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-support__text-block {
        font-size: 0.95em;
    }

    .page-support__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-support__contact-grid,
    .page-support__guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-support__cta-button,
    .page-support__text-link {
        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;
        margin-bottom: 10px;
    }
    
    .page-support__security-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__hero-section,
    .page-support__intro-section,
    .page-support__faq-section,
    .page-support__contact-channels-section,
    .page-support__guide-section,
    .page-support__security-section,
    .page-support__cta-section,
    .page-support__contact-card,
    .page-support__guide-card,
    .page-support__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}

.page-support__faq-item[open] .page-support__faq-toggle {
    transform: rotate(45deg);
}
.page-support__faq-item:not([open]) .page-support__faq-toggle {
    transform: rotate(0deg);
}

.page-support__faq-item summary {
    list-style: none;
}
.page-support__faq-item summary::-webkit-details-marker {
    display: none;
}