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

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

.contact-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;
}

.contact-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);
}

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

.contact-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;
}

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

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

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

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

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