/* Custom Styles for DAGAL / GAIA Portal */

body {
    background-color: #030712;
    color: #f8fafc;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 40%, rgba(30, 58, 138, 0.12) 0%, transparent 40%),
        linear-gradient(to bottom, transparent, rgba(3, 7, 18, 0.8) 100%);
    background-attachment: fixed;
}

.glass-card {
    background: rgba(11, 19, 41, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 15px 40px -5px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fffbeb 0%, #d4af37 50%, #996515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #030712;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.border-glow-subtle {
    position: relative;
}

.border-glow-subtle::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}
