/* ==================== SUPPORT PAGE ==================== */
/* Hero uses the shared .page-hero component. */

.support-main {
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.support-box {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border: 4px solid var(--block-green);
    box-shadow:
        0 0 30px rgba(127, 194, 66, 0.2),
        0 8px 0 rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    text-align: center;
}

.support-box:hover {
    border-color: var(--laser-orange);
    box-shadow:
        0 0 40px rgba(255, 107, 0, 0.4),
        0 10px 0 rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.support-box-title {
    font-family: var(--font-game);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--block-green);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(127, 194, 66, 0.4);
    transition: all 0.3s;
}

.support-box:hover .support-box-title {
    color: var(--laser-orange);
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.support-box-text {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

/* Other help options */
.support-links-section {
    padding: 60px 40px 80px;
    position: relative;
    z-index: 10;
}

.support-links {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-left: 5px solid var(--block-green);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(127, 194, 66, 0.2), 0 4px 0 rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--laser-orange);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4), 0 6px 0 rgba(0,0,0,0.3);
}

.support-card-title {
    font-size: 1.3rem;
    color: var(--block-green);
    margin: 0 0 1rem 0;
    font-weight: 700;
    transition: color 0.3s;
}

.support-card:hover .support-card-title {
    color: var(--laser-orange);
}

.support-card-text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .support-main {
        padding: 0 20px;
    }

    .support-links-section {
        padding: 50px 20px 60px;
    }

    .support-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-box {
        padding: 2rem;
    }

    .support-box-title {
        font-size: 1.4rem;
    }

    .support-box .block-btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }
}
