/*
Theme Name: GetFlashFile International
Version: 2.0
*/

:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --slate: #64748b;
    --bg: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
}

body { 
    margin: 0; padding: 0; 
    font-family: 'Inter', -apple-system, sans-serif; 
    background-color: var(--bg); 
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

/* Header: Ultra Clean & International */
header { 
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    height: 70px; display: flex; align-items: center;
}

.navbar { 
    width: 100%; max-width: 1300px; margin: 0 auto; 
    padding: 0 20px; display: flex; 
    justify-content: space-between; align-items: center;
}

.brand-logo { 
    text-decoration: none; display: flex; align-items: center; gap: 12px;
}

.logo-text { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo-highlight { color: var(--primary); }

.nav-center { display: flex; gap: 4px; align-items: center; }

.nav-link { 
    text-decoration: none; color: var(--slate); 
    font-weight: 600; font-size: 14px; 
    padding: 10px 16px; border-radius: 50px; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
}

.nav-link:hover { background: rgba(37, 99, 235, 0.1); color: var(--primary); }

/* Premium Cards */
.item-card { 
    text-decoration: none; background: #fff; 
    border: 1px solid rgba(0,0,0,0.03);
    padding: 30px 20px; border-radius: 24px; 
    transition: 0.4s; text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.item-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.icon-wrap { 
    font-size: 40px; margin-bottom: 20px; 
    background: var(--bg); width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px; margin-left: auto; margin-right: auto;
}

.item-card .name { font-weight: 700; color: var(--dark); font-size: 16px; }

/* Responsive */
@media (max-width: 1100px) {
    .nav-center { display: none; }
    .mobile-toggle { display: block; }
}