/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1E1E1E; 
}
::-webkit-scrollbar-thumb {
    background: #444444; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555555; 
}

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

/* --- Typography & Colors --- */
/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(to right, #FBBC04, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Mockup UI Styles (Index Page) --- */
.app-mockup {
    background: #1E1E1E;
    border: 1px solid #444444;
    border-radius: 0.75rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: relative;
}
.app-header {
    background: #141414;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444444;
}
.skeleton-text { height: 0.75rem; background: #333333; border-radius: 0.125rem; margin-bottom: 0.5rem; }
.skeleton-line { width: 100%; }

/* Tag Colors */
.tag-red { background: rgba(239, 68, 68, 0.2); color: #ef4444; border: 1px solid #ef4444; }
.tag-green { background: rgba(34, 197, 94, 0.2); color: #22c55e; border: 1px solid #22c55e; }
.tag-blue { background: rgba(59, 130, 246, 0.2); color: #3b82f6; border: 1px solid #3b82f6; }

/* --- Download Card Styles (Download Page) --- */
.download-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(251, 188, 4, 0.15);
    border-color: #FBBC04;
}