/* style/support.css */
:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f4f7f6;
    --background-dark: #1A2E47;
    --border-color: #e0e0e0;
}

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

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

.page-support section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-support h1, .page-support h2, .page-support h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-support h1 {
    font-size: 2.8em;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
}

.page-support h3 {
    font-size: 1.6em;
    color: var(--primary-color);
}

.page-support p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-support ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-support ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-support a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Hero Section */
.page-support .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
    color: var(--text-light);
}

.page-support .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-support .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-support .hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-support .hero-content p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
}

.page-support .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Channels Section */
.page-support .contact-channels-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-support .contact-channels-section h2 {
    color: var(--secondary-color);
}

.page-support .contact-channels-section p {
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-support .channel-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    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.3);
}

.page-support .channel-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-support .channel-item p {
    color: #b0b0b0;
    font-size: 0.95em;
    text-align: center;
    margin-bottom: 20px;
}

.page-support .channel-icon {
    width: 80px; /* Min size 200x200px, but for icons, sometimes smaller is used. Adhering to strict 200px for all images. */
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2);
}

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

.page-support .channel-button:hover {
    background: #FFC107;
    color: var(--primary-color);
    text-decoration: none;
}

/* Guides Section */
.page-support .guides-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.page-support .guides-section h2 {
    color: var(--primary-color);
}

.page-support .guides-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-support .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-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-support .guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-support .guide-item h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    padding: 20px 20px 10px 20px;
    text-align: left;
}

.page-support .guide-item h3 a {
    color: var(--primary-color);
}

.page-support .guide-item h3 a:hover {
    color: var(--secondary-color);
}

.page-support .guide-item p {
    font-size: 0.95em;
    color: #666666;
    padding: 0 20px 15px 20px;
    text-align: justify;
    flex-grow: 1;
}

.page-support .guide-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    margin: 0 20px 20px 20px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

/* FAQ Section */
.page-support .faq-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-support .faq-section h2 {
    color: var(--secondary-color);
}

.page-support .faq-section p {
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-support .faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #1A2E47; /* Slightly lighter primary for hover */
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-light);
    text-align: left;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.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: #2A3F5B;
    color: #e0e0e0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 20px 25px;
    border-top: 1px solid var(--primary-color);
}

.faq-answer p {
    margin-bottom: 0;
    text-align: left;
    color: #e0e0e0;
}

.faq-answer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #FFC107;
}

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

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

.page-support .responsible-gaming-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-support .responsible-gaming-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.page-support .responsible-gaming-section ul li {
    background-color: #ffffff;
    border-left: 5px solid var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
}

.page-support .responsive-gaming-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Legal Info Section */
.page-support .legal-info-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-support .legal-info-section h2 {
    color: var(--secondary-color);
}

.page-support .legal-info-section p {
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-support .legal-info-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 30px auto;
}

.page-support .legal-info-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-support .legal-info-section ul li a {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-support .legal-info-section ul li a:hover {
    color: #FFC107;
}

.page-support .legal-info-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Feedback Section */
.page-support .feedback-section {
    background-color: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.page-support .feedback-section h2 {
    color: var(--primary-color);
}

.page-support .feedback-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support h1 {
        font-size: 2.5em;
    }
    .page-support h2 {
        font-size: 2em;
    }
    .page-support .hero-section {
        padding: 60px 15px;
    }
    .page-support .contact-channels-section,
    .page-support .guides-section,
    .page-support .faq-section,
    .page-support .responsible-gaming-section,
    .page-support .legal-info-section,
    .page-support .feedback-section {
        padding: 60px 15px;
    }
}

@media (max-width: 768px) {
    .page-support h1 {
        font-size: 2em;
    }
    .page-support h2 {
        font-size: 1.8em;
    }
    .page-support h3 {
        font-size: 1.4em;
    }
    .page-support p {
        font-size: 1em;
    }
    .page-support .hero-content p {
        font-size: 1.1em;
    }
    .page-support .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-support .channels-grid, .page-support .guides-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-support h1 {
        font-size: 1.8em;
    }
    .page-support h2 {
        font-size: 1.6em;
    }
    .page-support h3 {
        font-size: 1.2em;
    }
    .page-support .hero-section {
        padding: 40px 10px;
    }
    .page-support .hero-content p {
        font-size: 1em;
    }
    .page-support .cta-button {
        padding: 10px 25px;
        font-size: 15px;
    }
    .page-support section {
        padding: 40px 0;
    }
    .page-support .channel-item, .page-support .guide-item {
        padding: 20px;
    }
    .page-support .guide-item h3 {
        font-size: 1.2em;
    }
    .page-support .guide-item p {
        font-size: 0.9em;
    }
    .faq-question {
        padding: 12px 15px;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 15px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 15px;
    }
}