/* ============================================
   Template 03 - Aurora Borealis
   ============================================ */

.template-aurora {
    background: linear-gradient(180deg, #0a0a1a 0%, #0f1628 50%, #1a1a2e 100%);
}

/* Stars Layer */
.stars-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 160px 120px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Logo */
.aurora-glow {
    filter: drop-shadow(0 0 20px rgba(0, 245, 160, 0.3));
}

.aurora-icon {
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 100%);
}

/* Aurora Text */
.aurora-text {
    text-shadow: 0 0 40px rgba(0, 245, 160, 0.3);
}

.text-aurora-gradient {
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aurora-shift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes aurora-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Circular Countdown Override */
.template-aurora .countdown-circular .countdown-ring .ring-progress {
    stroke: url(#gradient);
}

/* Aurora Form */
.aurora-form input {
    background: rgba(0, 245, 160, 0.05);
    border: 1px solid rgba(0, 245, 160, 0.2);
}

.aurora-form input:focus {
    border-color: #00f5a0;
    box-shadow: 0 0 0 3px rgba(0, 245, 160, 0.2);
}

.btn-aurora {
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 100%);
    color: #0a0a1a;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-aurora:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 245, 160, 0.4);
}

/* Aurora Features */
.aurora-features .feature-card {
    background: rgba(0, 245, 160, 0.05);
    border: 1px solid rgba(0, 245, 160, 0.1);
}

.aurora-features .feature-card:hover {
    background: rgba(0, 245, 160, 0.1);
    border-color: rgba(0, 245, 160, 0.3);
}

.aurora-features .feature-icon {
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 100%);
    color: #0a0a1a;
}
