/* 
   v2 Upgrade: Advanced 3D & Glassmorphism Theme 
   ---------------------------------------------
*/

:root {
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.6);
    --neon-primary: #8b5cf6;
    --neon-secondary: #06b6d4;
}

/* 3D Tilt Effect */
.perspective-1000 {
    perspective: 1000px;
}

.tilt-card {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.02);
}

.tilt-content {
    transform: translateZ(20px);
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card-hover {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.glass-card-hover:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
}

/* Animated Gradient Text */
.gradient-text-anim {
    background: linear-gradient(
        to right,
        var(--neon-primary),
        var(--neon-secondary),
        #ec4899,
        var(--neon-primary)
    );
    background-size: 300% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Scroll Animations (GSAP Targets) */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Floating Elements */
.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}

/* UI Fixes */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.status-paid { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.status-pending { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.status-failed { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
