/* style/support.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #DC143C; /* Deep Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-light: #f4f4f4;
    --border-color: #e0e0e0;
}

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

.page-support .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-support section {
    padding: 60px 0;
    text-align: center;
}

.page-support section:nth-child(odd) {
    background-color: #ffffff;
}

.page-support section:nth-child(even) {
    background-color: var(--bg-light);
}

.page-support .section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-support .section-description {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.page-support .cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Support Hero Section */
.page-support .support-hero {
    background: linear-gradient(135deg, var(--bg-dark), #333333);
    color: var(--text-light);
    padding: 80px 0;
}

.page-support .support-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.page-support .support-hero-content {
    flex: 1;
}

.page-support .support-hero-title {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-support .support-hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-support .support-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-support .support-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Channels Section */
.page-support .contact-channels .channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support .channel-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support .channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support .channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-support .channel-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-support .channel-text {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.page-support .channel-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-support .channel-button:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Quick Guides Section */
.page-support .quick-guides .guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support .guide-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.page-support .guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support .guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-support .guide-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support .guide-text {
    font-size: 0.95em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-support .guide-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.page-support .guide-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

/* FAQ Section */
.page-support .faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    color: var(--text-dark);
    font-weight: bold;
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1em;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px 25px;
}

.faq-answer p {
    margin: 0;
}

/* Responsible Gaming Section */
.page-support .responsible-gaming {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-support .responsible-gaming .section-title {
    color: var(--primary-color);
}

.page-support .responsible-gaming .section-description {
    color: #e0e0e0;
}

.page-support .responsible-gaming .cta-button {
    background: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

.page-support .responsible-gaming .cta-button:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support .support-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .page-support .support-hero-image {
        margin-top: 40px;
    }

    .page-support .support-hero-title {
        font-size: 2.5em;
    }

    .page-support .section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support section {
        padding: 40px 0;
    }

    .page-support .support-hero-title {
        font-size: 2em;
    }

    .page-support .support-hero-description,
    .page-support .section-description {
        font-size: 1em;
    }

    .page-support .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-support .channel-item, .page-support .guide-item {
        padding: 20px;
    }

    .page-support .channel-title, .page-support .guide-title {
        font-size: 1.3em;
    }
    
    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1em;
    }

    .faq-toggle {
        font-size: 1.5em;
    }

    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-support .support-hero-title {
        font-size: 1.8em;
    }

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

    .page-support .channels-grid, .page-support .guides-grid {
        grid-template-columns: 1fr;
    }

    .page-support .channel-item, .page-support .guide-item {
        text-align: center;
    }

    .page-support .channel-icon {
        margin-left: auto;
        margin-right: auto;
    }
}