/* style/support.css */

/* General Page Support Styles */
.page-support {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-support__section-title {
    color: #FFD700; /* Accent color for titles */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-support__section-subtitle {
    color: #ccc;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
}

.page-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Gold accent */
    color: #1A202C; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    border-color: #e6c200;
}

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

.page-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold background */
}

.page-support__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-support__link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-support__link-inline:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-description {
    font-size: 1.3em;
    color: #e5dfd3;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-support__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #232a38; /* Slightly lighter dark background */
}

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

.page-support__faq-item {
    background-color: #1A202C;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #3a475a;
}

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

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

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    padding: 0 25px 20px 25px;
    color: #e5dfd3;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

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

.page-support__cta-box {
    background-color: #FFD700;
    color: #1A202C;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-support__cta-box p {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Guides Section */
.page-support__guides-section {
    padding: 80px 0;
    background-color: #1A202C;
}

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

.page-support__guide-card {
    background-color: #232a38;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 1px solid #3a475a;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
}

.page-support__guide-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-support__guide-title {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-support__guide-description {
    color: #ccc;
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 20px;
}

/* Contact Section */
.page-support__contact-section {
    padding: 80px 0;
    background-color: #232a38;
}

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

.page-support__contact-item {
    background-color: #1A202C;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid #3a475a;
}

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-support__contact-title {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-support__contact-description {
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 25px;
}

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

.page-support__responsible-gaming p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #e5dfd3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1.1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__cta-box p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-support__cta-box {
        padding: 30px 20px;
    }
    .page-support__guide-title {
        font-size: 1.1em;
    }
    .page-support__contact-title {
        font-size: 1.2em;
    }
}