body {
    font-family: 'Cairo', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Gold Text Gradient */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle glow effect for main buttons */
.glow-gold {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.glow-gold:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Transition */
#form-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

#form-wrapper.active {
    max-height: 200px;
    /* arbitrary large enough height */
    opacity: 1;
    margin-top: 1rem;
}

#show-form-btn {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#show-form-btn.hidden-btn {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
}