* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-pink: #ff006e;
    --neon-blue: #00d9ff;
    --neon-purple: #8b00ff;
    --neon-green: #00ff88;
    --neon-yellow: #ffea00;
    --dark-bg: #000000;
    --card-bg: rgba(5, 5, 15, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: default !important;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1 !important;
    overflow: hidden;
    pointer-events: none !important;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.cyber-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.1) 2px, transparent 2px),
        linear-gradient(rgba(255, 0, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 110, 0.03) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    animation: gridScroll 20s linear infinite;
    transform: perspective(1000px) rotateX(60deg) scale(2);
    transform-origin: center;
    opacity: 0.5;
}

@keyframes gridScroll {
    0% { transform: perspective(1000px) rotateX(60deg) translateY(0) scale(2); }
    100% { transform: perspective(1000px) rotateX(60deg) translateY(100px) scale(2); }
}

.plasma {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(40px) saturate(200%);
    opacity: 0.4;
}

.plasma::before,
.plasma::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    animation: plasma 15s ease-in-out infinite;
}

.plasma::before {
    background: radial-gradient(circle, var(--neon-pink), transparent);
    animation-delay: 0s;
}

.plasma::after {
    background: radial-gradient(circle, var(--neon-blue), transparent);
    animation-delay: 5s;
}

@keyframes plasma {
    0%, 100% { transform: translate(0%, 0%) scale(1); }
    33% { transform: translate(30%, -30%) scale(1.2); }
    66% { transform: translate(-20%, 20%) scale(0.8); }
}

.glitch-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.glitch-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-pink), 
        var(--neon-blue), 
        transparent);
    animation: glitchMove 3s linear infinite;
}

@keyframes glitchMove {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

.hero-section {
    position: relative;
    padding: 40px 20px 20px;
    text-align: center;
    z-index: 10;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-3d-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    animation: logoRotate 10s linear infinite;
}

@keyframes logoRotate {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

.logo {
    font-family: 'Bebas Neue', 'Orbitron', monospace;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, 
        var(--neon-pink), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-green), 
        var(--neon-yellow));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: superGradient 3s ease infinite, textGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 80px var(--neon-pink));
}

@keyframes superGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 40px var(--neon-pink)) brightness(1); }
    100% { filter: drop-shadow(0 0 80px var(--neon-blue)) brightness(1.2); }
}

.logo::before,
.logo::after {
    content: 'AveXx_';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--neon-pink), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-green), 
        var(--neon-yellow));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo::before {
    animation: glitch1 0.5s infinite;
    z-index: -1;
}

.logo::after {
    animation: glitch2 0.5s infinite;
    z-index: -1;
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); opacity: 0.8; }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.subtitle .highlight {
    color: var(--neon-green);
    font-weight: 900;
    text-shadow: 0 0 30px var(--neon-green),
                 0 0 60px var(--neon-green);
    animation: neonPulse 1s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 100px;
    position: relative;
    z-index: 10;
}

.files-container {
    background: linear-gradient(135deg, 
        rgba(139, 0, 255, 0.05), 
        rgba(255, 0, 110, 0.05));
    border-radius: 30px;
    backdrop-filter: blur(20px) saturate(200%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(139, 0, 255, 0.3),
                inset 0 0 100px rgba(0, 217, 255, 0.1);
}

.files-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 110, 0.3), 
        rgba(0, 217, 255, 0.3), 
        rgba(139, 0, 255, 0.3));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: linear-gradient(90deg, 
        var(--neon-pink), 
        var(--neon-purple), 
        var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.file-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02), 
        rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0) rotateY(0) scale(1);
    height: 220px;
    display: flex;
    flex-direction: column;
}

.file-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, 
        var(--neon-blue) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none !important;
}

.file-card:hover::before {
    opacity: 0.1;
    animation: cardGlow 1s ease-in-out;
}

@keyframes cardGlow {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.file-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    border-color: var(--neon-blue);
    box-shadow: 0 15px 30px rgba(0, 217, 255, 0.3),
                0 0 40px rgba(0, 217, 255, 0.2);
    z-index: 10;
}

.file-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none !important;
}

.file-card:hover::after {
    opacity: 1;
    animation: holographic 0.5s ease-out;
}

@keyframes holographic {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.file-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    pointer-events: none;
}

.file-icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 8px 30px rgba(255, 0, 110, 0.6); }
}

.file-icon {
    font-size: 1.3rem;
    color: white;
}

.file-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
    pointer-events: none;
}

.lock-icon {
    color: var(--neon-yellow);
    font-size: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-yellow));
    animation: lockSpin 3s ease-in-out infinite;
}

@keyframes lockSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.file-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    flex: 1;
    pointer-events: none;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item i {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-bottom: 4px;
}

.meta-item span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
}

.download-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer !important;
    position: relative;
    z-index: 20 !important;
    pointer-events: all !important;
    overflow: hidden;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.download-btn:hover::before {
    width: 300%;
    height: 300%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.6),
                0 0 60px rgba(255, 0, 110, 0.3);
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
}

.download-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(200%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal {
    background: linear-gradient(135deg, 
        rgba(13, 13, 23, 0.95), 
        rgba(30, 30, 50, 0.95));
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 80px rgba(139, 0, 255, 0.5);
    overflow: hidden;
}

.modal::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 110, 0.3), 
        rgba(0, 217, 255, 0.3), 
        rgba(139, 0, 255, 0.3));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
}

.modal-overlay.active .modal {
    transform: scale(1) rotateX(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.modal-close:hover {
    background: var(--neon-pink);
    color: white;
    transform: rotate(180deg) scale(1.1);
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px var(--neon-pink);
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, 
        var(--neon-pink), 
        var(--neon-blue), 
        var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: modalTitleGlow 2s ease-in-out infinite;
}

@keyframes modalTitleGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 20px var(--neon-pink)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 40px var(--neon-blue)); }
}

.password-input {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    transition: all 0.3s;
    text-align: center;
    letter-spacing: 2px;
}

.password-input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5),
                inset 0 0 20px rgba(0, 217, 255, 0.1);
    background: rgba(0, 217, 255, 0.05);
}

.modal-error {
    background: linear-gradient(135deg, 
        rgba(255, 0, 110, 0.2), 
        rgba(255, 0, 0, 0.2));
    border: 2px solid var(--neon-pink);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    color: var(--neon-pink);
    text-align: center;
    display: none;
    font-weight: 700;
    animation: errorShake 0.5s, errorGlow 1s ease-in-out infinite;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes errorGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 110, 0.8); }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(20px);
    border-top: 2px solid transparent;
    padding: 25px;
    text-align: center;
    z-index: 100;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--neon-pink), 
        var(--neon-blue), 
        var(--neon-purple));
    animation: footerLine 3s linear infinite;
}

@keyframes footerLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-heart {
    color: var(--neon-pink);
    font-size: 1.5em;
    animation: heartBeat 1s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.3); }
    20% { transform: scale(1); }
    30% { transform: scale(1.3); }
    40% { transform: scale(1); }
}

.footer-name {
    background: linear-gradient(90deg, 
        var(--neon-blue), 
        var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: nameGlow 2s ease-in-out infinite;
}

@keyframes nameGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 10px var(--neon-blue)); }
    50% { filter: brightness(1.3) drop-shadow(0 0 20px var(--neon-purple)); }
}

.admin-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        var(--neon-purple), 
        var(--neon-pink), 
        var(--neon-blue));
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(139, 0, 255, 0.6),
                0 0 80px rgba(139, 0, 255, 0.4);
    z-index: 101;
    text-decoration: none;
    animation: adminFloat 3s ease-in-out infinite, adminRotate 10s linear infinite;
    overflow: hidden;
}

.admin-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: adminPulse 2s ease-in-out infinite;
}

@keyframes adminFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes adminRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes adminPulse {
    0%, 100% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.admin-btn:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 60px rgba(139, 0, 255, 0.8),
                0 0 120px rgba(139, 0, 255, 0.6);
    background-size: 100% 100%;
}

@media (max-width: 768px) {
    .logo { font-size: clamp(3rem, 10vw, 5rem); letter-spacing: 0.1em; }
    .subtitle { font-size: 1rem; letter-spacing: 2px; }
    .section-title { font-size: 2rem; letter-spacing: 4px; }
    .files-grid { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .file-card {
        height: auto;
        min-height: 200px;
    }
    .files-container { padding: 30px 20px; }
    .modal { padding: 30px 20px; }
    .admin-btn { 
        bottom: 100px; 
        right: 20px; 
        width: 60px; 
        height: 60px; 
        font-size: 1.5rem;
    }
    .file-meta {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: white;
    border-right-color: var(--neon-pink);
    border-bottom-color: var(--neon-blue);
    border-left-color: var(--neon-purple);
    animation: superSpin 0.8s linear infinite;
}

@keyframes superSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.3s, transform 0.1s;
}

.click-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 9999;
    animation: particleExplosion 1s ease-out forwards;
}

@keyframes particleExplosion {
    0% { 
        transform: translate(0, 0) scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: translate(var(--tx), var(--ty)) scale(0); 
        opacity: 0; 
    }
}

.scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-green), 
        transparent);
    animation: scan 4s linear infinite;
    z-index: 9998;
    opacity: 0.8;
    pointer-events: none !important;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.no-files {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.no-files-icon {
    font-size: 5rem;
    color: var(--neon-purple);
    margin-bottom: 20px;
    animation: noFilesPulse 2s ease-in-out infinite;
}

@keyframes noFilesPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.no-files-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.no-files-subtext {
    font-size: 1.1rem;
    opacity: 0.7;
} 