* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', -apple-system, sans-serif; }
body { background: #f4f4f4; color: #333; }

.main-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}
.logo { font-size: 2rem; font-weight: 900; letter-spacing: -2px; color: #0044ff; }

.nav-list { display: flex; list-style: none; gap: 30px; }
.nav-item { position: relative; }
.nav-link { text-decoration: none; color: #333; font-weight: 500; text-transform: uppercase; font-size: 0.9rem; transition: color 0.3s; }
.nav-link:hover { color: #0044ff; }

.dropdown {
    position: absolute; top: 100%; left: -10px; background: #fff; 
    min-width: 200px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s ease; list-style: none; border-top: 3px solid #0044ff;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 12px 20px; text-decoration: none; color: #333; font-size: 0.85rem; }
.dropdown li a:hover { background: #f9f9f9; color: #0044ff; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.lang-toggle a { text-decoration: none; font-size: 1.2rem; opacity: 0.5; transition: opacity 0.3s; }
.lang-toggle a.active, .lang-toggle a:hover { opacity: 1; }
.login-btn { padding: 8px 20px; background: #0044ff; color: #fff; text-decoration: none; font-size: 0.9rem; border-radius: 4px; transition: background 0.3s; }
.login-btn:hover { background: #0033cc; }

.content { max-width: 1200px; margin: 50px auto; padding: 0 20px; min-height: 80vh; }
.page-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 20px 0; }

/* Admin Styles */
.admin-wrap { max-width: 1000px; margin: 40px auto; background: #fff; padding: 30px; border-radius: 8px; }
.admin-section { border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 30px; }
.admin-form { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; align-items: center; }
.admin-form input, .admin-form select, .admin-form textarea { padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.admin-form textarea { width: 100%; margin-top: 10px; min-height: 100px; }
.btn { background: #0044ff; color: white; border: none; padding: 8px 16px; cursor: pointer; border-radius: 4px; }
.btn-delete { background: #ff4444; font-size: 12px; padding: 4px 8px; color: white; text-decoration: none; border-radius: 3px; }

.btn-edit { background: #ffa500; font-size: 12px; padding: 4px 8px; color: white; text-decoration: none; border-radius: 3px; }
.cancel-edit { font-size: 12px; color: #999; margin-left: 10px; }
.cancel-edit:hover { color: #333; }