/* style/support.css */
.page-support {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-support__hero-section {
    background: linear-gradient(135deg, #4B0082 0%, #6a00a8 100%); /* Deep Purple to slightly lighter purple */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFC107; /* Gold highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

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

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

.page-support__btn--primary {
    background-color: #FFC107; /* Gold */
    color: #4B0082; /* Deep Purple */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-support__btn--primary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-support__btn--secondary {
    background-color: transparent;
    color: #FFC107; /* Gold */
    border: 2px solid #FFC107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.page-support__btn--secondary:hover {
    background-color: #FFC107;
    color: #4B0082;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.page-support__btn--link {
    color: #4B0082;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.page-support__btn--link:hover {
    color: #FFC107;
    border-color: #FFC107;
}

.page-support__btn--large {
    padding: 15px 40px;
    font-size: 1.1em;
    border-radius: 10px;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #4B0082; /* Deep Purple */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-support__categories-section,
.page-support__responsible-gaming-section,
.page-support__additional-resources-section,
.page-support__contact-cta-section,
.page-support__join-j88-section {
    padding: 80px 0;
}

.page-support__categories-section {
    background-color: #fff;
}

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

.page-support__category-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-support__category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-support__category-title {
    font-size: 1.5em;
    color: #4B0082;
    margin-bottom: 15px;
    min-height: 60px; /* Ensure consistent height */
}

.page-support__category-title a {
    color: #4B0082;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__category-title a:hover {
    color: #FFC107;
}

.page-support__category-desc {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__responsible-gaming-section {
    background-color: #f0f0f0;
}

.page-support__responsible-gaming-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-support__responsible-gaming-img {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__responsible-gaming-text {
    flex: 1.5;
    min-width: 300px;
}

.page-support__responsible-gaming-text h3 {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 15px;
}

.page-support__responsible-gaming-text p {
    color: #555;
    margin-bottom: 15px;
}

.page-support__additional-resources-section {
    background-color: #fff;
}

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

.page-support__resource-card {
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__resource-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.page-support__resource-card h3 {
    font-size: 1.4em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-support__resource-card p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

.page-support__contact-cta-section {
    background-color: #4B0082;
    color: #fff;
    padding: 80px 0;
}

.page-support__contact-cta-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap-reverse;
}

.page-support__contact-text {
    flex: 1.5;
    min-width: 300px;
}

.page-support__contact-text .page-support__section-title {
    color: #FFC107;
    text-align: left;
    font-size: 2.2em;
}

.page-support__contact-text .page-support__section-description {
    color: #e0e0e0;
    text-align: left;
    margin-left: 0;
}

.page-support__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-support__contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-support__contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: invert(80%) sepia(50%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Adjust to gold */
}

.page-support__contact-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-support__join-j88-section {
    background-color: #f8f8f8;
    text-align: center;
    padding: 80px 0;
}

.page-support__join-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.page-support__footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

.page-support__footer p {
    margin: 5px 0;
}

.page-support .highlight {
    color: #FFC107;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__responsible-gaming-content,
    .page-support__contact-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .page-support__responsible-gaming-img,
    .page-support__responsible-gaming-text,
    .page-support__contact-image-wrapper,
    .page-support__contact-text {
        max-width: 100%;
        text-align: center;
    }
    .page-support__contact-text .page-support__section-title,
    .page-support__contact-text .page-support__section-description {
        text-align: center;
    }
    .page-support__contact-list {
        text-align: left;
        max-width: 350px;
        margin: 30px auto 0 auto;
    }
}

@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-subtitle {
        font-size: 1em;
    }
    .page-support__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn--large {
        width: 80%;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-description {
        font-size: 1em;
    }
    .page-support__category-card {
        padding: 25px;
    }
    .page-support__category-title {
        font-size: 1.3em;
    }
    .page-support__responsible-gaming-text h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__hero-section,
    .page-support__categories-section,
    .page-support__responsible-gaming-section,
    .page-support__additional-resources-section,
    .page-support__contact-cta-section,
    .page-support__join-j88-section {
        padding: 50px 0;
    }
    .page-support__category-grid,
    .page-support__resource-grid {
        gap: 20px;
    }
    .page-support__btn--large {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
}