/* HERO BASE STYLES */
.gm {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: black;
    overflow: hidden;
    padding: 1rem;
}

.gm-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gm-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6);
}

.gm-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    padding: 2rem;
}

.gm-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.gm-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00ffe0, #00ff88);
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.6);
}

.cta-button:hover {
    transform: scale(1.05);
    background: #00ffaa;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .gm-title {
        font-size: 2rem;
    }

    .gm-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .gm-title {
        font-size: 1.5rem;
    }

    .gm-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .gm-content {
        padding: 1rem;
    }
}