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

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

.page-support-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.page-support-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-support-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(255, 215, 0, 0.3)); /* Dark blue to gold gradient overlay */
    z-index: 2;
}

.page-support-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

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

.page-support-hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
}

.page-support-hero-description a {
    color: #FFD700; /* Gold for links in hero description */
    text-decoration: none;
}

.page-support-hero-description a:hover {
    text-decoration: underline;
}

.page-support-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-support-section-subtitle {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support-highlight {
    color: #FFD700;
    font-weight: bold;
}

/* FAQ Section */
.page-support-faq-section {
    background-color: #0A2342;
    padding: 60px 0;
}

.page-support-faq-image {
    display: block;
    margin: 0 auto 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-support-faq-item {
    background-color: #1a3b61; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support-faq-question {
    font-size: 1.5em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-support-faq-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-support-faq-item li {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-support-faq-item li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
}

.page-support-faq-item p {
    font-size: 0.95em;
    color: #cccccc;
    margin-top: 5px;
}

.page-support-faq-item a {
    color: #FFD700;
    text-decoration: none;
}

.page-support-faq-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.page-support-contact-section {
    background-color: #0A2342;
    padding: 60px 0;
}

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

.page-support-contact-card {
    background-color: #1a3b61;
    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-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support-contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-support-contact-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support-contact-description {
    color: #cccccc;
    margin-bottom: 25px;
}

.page-support-contact-description strong {
    color: #FFD700;
}

.page-support-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-support-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-support-btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: #0A2342;
}

.page-support-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-support-btn-tertiary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #54657b;
}

.page-support-btn-tertiary:hover {
    background-color: #1a3b61;
    color: #FFD700;
}

/* App Download Section */
.page-support-app-download-section {
    background-color: #1a3b61;
    padding: 80px 0;
}

.page-support-app-download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.page-support-app-text {
    max-width: 700px;
}

.page-support-app-image-wrapper {
    background-color: #0A2342;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support-app-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-support-btn-download {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
    font-size: 1.1em;
    padding: 15px 30px;
    margin-top: 30px;
}

.page-support-btn-download:hover {
    background-color: #e6c200;
}

/* Responsible Gambling Section */
.page-support-responsible-gambling-section {
    background-color: #0A2342;
    padding: 60px 0 80px 0;
}

.page-support-responsible-gambling-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-support-app-download-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .page-support-app-text {
        flex: 1;
        padding-right: 40px;
    }

    .page-support-app-image-wrapper {
        flex: 0 0 400px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .page-support-hero {
        height: 350px;
    }

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

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

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

    .page-support-faq-grid,
    .page-support-contact-options {
        grid-template-columns: 1fr;
    }

    .page-support-faq-item,
    .page-support-contact-card {
        padding: 20px;
    }

    .page-support-faq-question {
        font-size: 1.3em;
    }

    .page-support-contact-title {
        font-size: 1.5em;
    }

    .page-support-app-download-content {
        flex-direction: column;
        text-align: center;
    }

    .page-support-app-text {
        padding-right: 0;
    }

    .page-support-app-image-wrapper {
        flex: none;
        width: 100%;
    }
}

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

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

    .page-support-hero-description,
    .page-support-section-subtitle,
    .page-support-faq-item p,
    .page-support-contact-description {
        font-size: 0.9em;
    }

    .page-support-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}