/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Light text for dark backgrounds */
    background-color: #0d123e; /* Darker variant of main color for overall background */
}

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

.page-support-hero {
    background-color: #1A237E; /* Main color */
    background-image: linear-gradient(135deg, #1A237E 0%, #0d123e 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support-hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-support-hero .page-support-container {
    position: relative;
    z-index: 1;
}

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

.page-support-subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-support-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-support-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-support-btn-primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A237E; /* Main color for text on gold */
    border: 2px solid #FFD700;
}

.page-support-btn-primary:hover {
    background-color: #e6c200;
    color: #0d123e;
    transform: translateY(-2px);
}

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

.page-support-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-2px);
}

.page-support-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

/* FAQ Section */
.page-support-faq {
    padding: 60px 0;
    background-color: #1A237E; /* Main color */
    position: relative;
    overflow: hidden;
}

.page-support-faq-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-support-faq .page-support-container {
    position: relative;
    z-index: 1;
}

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

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

.page-support-faq-item:hover {
    transform: translateY(-5px);
}

.page-support-faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Auxiliary color */
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-support-faq-answer {
    font-size: 1.05em;
    color: #cccccc;
    line-height: 1.7;
}

.page-support-faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

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

.page-support-more-faq {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
}

.page-support-more-faq p {
    color: #e0e0e0;
}

.page-support-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Contact Section */
.page-support-contact {
    padding: 80px 0;
    background-color: #0d123e; /* Darker background */
    position: relative;
    overflow: hidden;
}

.page-support-contact-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    z-index: 0;
}

.page-support-contact .page-support-container {
    position: relative;
    z-index: 1;
}

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

.page-support-method-item {
    background-color: #1A237E; /* Main color */
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support-method-item:hover {
    transform: translateY(-7px);
    background-color: #2a348e;
}

.page-support-method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-support-method-title {
    font-size: 1.6em;
    color: #FFD700; /* Auxiliary color */
    margin-bottom: 10px;
}

.page-support-method-description {
    font-size: 1em;
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.page-support-btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 25px;
    font-size: 1em;
}

.page-support-btn-outline:hover {
    background-color: #FFD700;
    color: #1A237E;
}

/* Guides Section */
.page-support-guides {
    padding: 80px 0;
    background-color: #1A237E; /* Main color */
    position: relative;
    overflow: hidden;
}

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

.page-support-guide-item {
    background-color: #2a348e; /* Slightly lighter dark blue */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-support-guide-item:hover {
    transform: translateY(-5px);
}

.page-support-guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-support-guide-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.5em;
    color: #FFD700;
}

.page-support-guide-item p {
    padding: 0 20px 15px;
    color: #cccccc;
    font-size: 0.95em;
    flex-grow: 1;
    line-height: 1.6;
}

.page-support-guide-item .page-support-link {
    display: block;
    text-align: right;
    padding: 15px 20px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1em;
}

/* Responsible Gambling Section */
.page-support-responsible-gambling {
    padding: 80px 0;
    background-color: #0d123e; /* Darker background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support-responsible-gambling-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    z-index: 0;
}

.page-support-responsible-gambling .page-support-container {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support-title {
        font-size: 2.5em;
    }
    .page-support-subtitle {
        font-size: 1.1em;
    }
    .page-support-hero-buttons {
        flex-direction: column;
    }
    .page-support-btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-support-section-title {
        font-size: 2em;
    }
    .page-support-section-description {
        font-size: 1em;
    }
    .page-support-faq-item, .page-support-method-item, .page-support-guide-item {
        padding: 25px 20px;
    }
    .page-support-faq-question, .page-support-method-title {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-support-title {
        font-size: 2em;
    }
    .page-support-subtitle {
        font-size: 0.95em;
    }
    .page-support-btn {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support-section-title {
        font-size: 1.8em;
    }
    .page-support-faq-item, .page-support-method-item, .page-support-guide-item {
        padding: 20px 15px;
    }
    .page-support-faq-question, .page-support-method-title {
        font-size: 1.1em;
    }
    .page-support-method-icon {
        width: 50px;
        height: 50px;
    }
}