:root {
    --bg: #000;
    --card: #111;
    --text: #fff;
    --accent: #c07aff;
    --accent-hover: #d4a5ff;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

nav {
    background: #0a0a0a;
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
    font-size: 1.5rem;
    font-weight: bold;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 560px;
    width: 100%;
}

.card {
    background: var(--card);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.card:nth-child(2) { animation-delay: 0.15s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-card {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.4rem;
    font-weight: 500;
}

.badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.badge i {
    font-family: 'Material Icons';
    font-size: 26px !important;
    color: white;
    transition: color 0.3s ease;
}

.badge:hover i {
    color: var(--accent);
}

.tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s;
}

.badge:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.file-card h1 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 600;
}

.file-info {
    margin: 1rem 0;
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1.05rem;
}

.download-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    margin-top: 1.8rem;
    background: white;
    color: #000;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.download-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 122, 255, 0.4);
}

.report-btn {
    display: block;
    text-align: center;
    margin-top: 1.2rem;
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.report-btn:hover {
    color: var(--accent);
}

footer {
    text-align: center;
    padding: 2rem;
    background: #0a0a0a;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
}

.notfound, .banned {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.banned {
    color: #ff4444;
    font-size: 2rem;
}