/* === AVAILABLE SRL - PARTICLE COSMOS v3 === */
:root {
    --gold: #d4a823;
    --gold-light: #f0c850;
    --red: #e04444;
    --cyan: #00e5ff;
    --purple: #a855f7;
    --pink: #ec4899;
    --bg: #000000;
    --text: #ffffff;
    --text-muted: #aaaabb;
    --card-bg: rgba(15,15,25,0.85);
    --container: 1400px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,168,35,0.15);
    transition: all 0.3s ease;
}
.header.scrolled { background: rgba(0,0,0,0.92); }
.header-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { width: 40px; height: 40px; border-radius: 10px; }
.logo-text { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--text); }
.logo-text span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav a {
    color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: color 0.3s;
}
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); }

/* Dropdown submenu */
.nav-dropdown { position: relative; }
.nav-submenu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
    padding: 12px 0; min-width: 240px;
    list-style: none; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 1000;
}
/* Invisible bridge between link and dropdown to prevent hover loss */
.nav-dropdown::after {
    content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 16px;
    display: none;
}
.nav-dropdown:hover::after { display: block; }
.nav-submenu { margin-top: 16px; }
/* Triangle arrow */
.nav-submenu::before {
    content: ''; position: absolute; top: -7px; left: 50%;
    width: 12px; height: 12px; background: rgba(10,10,10,0.97);
    transform: translateX(-50%) rotate(45deg);
    border-top: 1px solid rgba(255,255,255,0.08); border-left: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown:hover > .nav-submenu { display: block; }
.nav-submenu li { padding: 0; }
.nav-submenu li a {
    display: flex !important; align-items: center; gap: 12px;
    padding: 10px 20px !important; font-size: 0.85rem !important;
    color: #aaaabb !important; transition: all 0.2s !important;
    white-space: nowrap;
}
.nav-submenu li a i { width: 18px; text-align: center; font-size: 0.9rem; }
.nav-submenu li a:hover {
    color: #fff !important; background: rgba(212,168,35,0.08) !important;
}

/* Mobile: submenu inline */
@media (max-width: 768px) {
    .nav-submenu {
        display: none; position: static; transform: none;
        background: transparent; border: none; box-shadow: none;
        backdrop-filter: none; padding: 0 0 0 16px; margin: 8px 0;
        min-width: auto;
    }
    .nav-submenu::before { display: none; }
    .nav-dropdown.open .nav-submenu { display: block; }
    .nav-submenu li a { padding: 8px 0 !important; font-size: 0.9rem !important; }
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000 !important; padding: 10px 24px; border-radius: 50px;
    font-weight: 600; transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,35,0.3); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; width: 44px; height: 44px; align-items: center; justify-content: center; }

/* ===== MOBILE SLIDE PANEL ===== */
.slide-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 9998; display: none; opacity: 0; transition: opacity 0.3s; }
.slide-overlay.open { display: block; opacity: 1; }
.slide-panel { position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: #0a0a0a; z-index: 9999; transition: right 0.3s ease; display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,0.06); overflow-y: auto; }
.slide-panel.open { right: 0; }
.slide-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.slide-header span { font-family: 'DM Sans', sans-serif; font-weight: 600; color: #d4a823; }
.slide-close { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; padding: 8px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }

.sm-item { display: flex; align-items: center; width: 100%; text-align: left; padding: 16px 24px; color: #aaaabb; text-decoration: none; font-size: 1rem; font-weight: 500; transition: all 0.2s; border: none; border-bottom: 1px solid rgba(255,255,255,0.03); -webkit-tap-highlight-color: transparent; cursor: pointer; background: none; }
.sm-item:active { color: #fff; background: rgba(212,168,35,0.06); }
.sm-icon { width: 24px; margin-right: 14px; text-align: center; font-size: 0.95rem; color: #d4a823; }
.sm-arrow { margin-left: auto; font-size: 0.7rem; color: #555; transition: transform 0.3s; }
.sm-item.open .sm-arrow { transform: rotate(180deg); }

.sm-sub { display: none; background: rgba(255,255,255,0.02); }
.sm-sub.open { display: block; }
.sm-sub a { display: flex; align-items: center; gap: 12px; padding: 13px 24px 13px 58px; color: #777; text-decoration: none; font-size: 0.9rem; transition: all 0.2s; border-bottom: 1px solid rgba(255,255,255,0.02); -webkit-tap-highlight-color: transparent; }
.sm-sub a i { width: 18px; text-align: center; }
.sm-sub a:active { color: #d4a823; background: rgba(212,168,35,0.05); }

.sm-cta { display: block; margin: 20px; background: linear-gradient(135deg, #d4a823, #f0c850); color: #000; padding: 14px; border-radius: 14px; font-weight: 600; text-decoration: none; text-align: center; font-size: 0.95rem; -webkit-tap-highlight-color: transparent; }
.sm-cta:active { opacity: 0.85; }

/* HERO */
.hero {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; justify-content: center; overflow: hidden;
}
#particleCanvas,
.hero-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 120px 24px 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,168,35,0.12); border: 1px solid rgba(212,168,35,0.3);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
    color: var(--gold); margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(212,168,35,0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(212,168,35,0.15); }
}
.hero-title {
    font-family: 'DM Sans', sans-serif; font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 20px;
    min-height: 1.7em;
}
.hero-title .typed-cursor {
    display: inline-block; width: 3px; height: 1em;
    background: var(--gold); margin-left: 4px;
    animation: cursorBlink 0.8s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes cursorBlink { 0%,100%{opacity:1;} 50%{opacity:0;} }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted);
    max-width: 600px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000; padding: 14px 36px; border-radius: 50px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    transition: all 0.3s; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(212,168,35,0.4); }
.btn-secondary {
    background: transparent; color: var(--text); padding: 14px 36px;
    border-radius: 50px; font-weight: 600; font-size: 1rem;
    text-decoration: none; border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* PHONE MOCKUP */
.phone-container {
    position: relative; margin: 40px auto 0; width: 280px; height: 560px;
    display: flex; align-items: center; justify-content: center;
}
.phone-orbit-ring {
    position: absolute; top: -15px; left: -15px;
    width: 310px; height: 590px; border-radius: 40px;
    border: 2px solid transparent;
    background: conic-gradient(from 0deg, #e53935, #ff9800, #fdd835, #4caf50, #00bcd4, #2196f3, #9c27b0, #e53935) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 4s linear infinite;
}
@keyframes ringRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
.phone-body {
    position: relative; width: 280px; height: 560px;
    background: #111; border-radius: 30px;
    border: 3px solid #333; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.phone-body img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 27px;
}

/* STATS */
.stats-bar {
    padding: 60px 0; position: relative; z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    text-align: center;
}
.stat-item h3 {
    font-family: 'DM Sans', sans-serif; font-size: 2rem;
    font-weight: 700; color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* SERVICES */
.services { padding: 100px 0; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--gold); font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-title {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; margin-bottom: 16px;
}
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative; background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 36px 28px;
    transition: all 0.4s ease; overflow: hidden;
    text-decoration: none; color: inherit; display: block;
}
.service-card canvas.card-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; opacity: 0.3;
}
.service-card:hover {
    border-color: rgba(212,168,35,0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.service-card:hover canvas.card-particles { opacity: 0.7; }
.card-content { position: relative; z-index: 2; }
.service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
    background: rgba(212,168,35,0.1);
    color: var(--gold);
}
.service-card:nth-child(2) .service-icon { background: rgba(224,68,68,0.1); color: var(--red); }
.service-card:nth-child(3) .service-icon { background: rgba(0,229,255,0.1); color: var(--cyan); }
.service-card:nth-child(4) .service-icon { background: rgba(168,85,247,0.1); color: var(--purple); }
.service-card:nth-child(5) .service-icon { background: rgba(236,72,153,0.1); color: var(--pink); }
.service-card:nth-child(6) .service-icon { background: rgba(212,168,35,0.1); color: var(--gold-light); }
.service-title {
    font-family: 'DM Sans', sans-serif; font-size: 1.2rem;
    font-weight: 600; margin-bottom: 10px;
}
.service-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* CTA */
.cta-section {
    padding: 100px 0; position: relative; z-index: 2; text-align: center;
}
.cta-box {
    background: linear-gradient(135deg, rgba(212,168,35,0.08), rgba(224,68,68,0.06));
    border: 1px solid rgba(212,168,35,0.2); border-radius: 30px;
    padding: 60px 40px; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(212,168,35,0.05) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(5%,5%); }
}
.cta-title {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; margin-bottom: 16px; position: relative;
}
.cta-text { color: var(--text-muted); max-width: 500px; margin: 0 auto 30px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
.footer {
    padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center; position: relative; z-index: 2;
}
.footer p { color: var(--text-muted); font-size: 0.85rem; }
.footer a { color: var(--gold); text-decoration: none; }

/* === ADDITIONAL UTILITY CLASSES === */

/* Rainbow gradient text */
.avs-gradient-text {
    background: linear-gradient(135deg, #e53935, #ff9800, #fdd835, #4caf50, #00bcd4, #2196f3, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Red/gold highlight text */
.avs-highlight-text {
    background: linear-gradient(135deg, var(--red), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated separator */
.section-sep {
    width: 80px; height: 3px; margin: 24px auto;
    background: linear-gradient(90deg, var(--gold), var(--red), var(--cyan), var(--gold));
    background-size: 200% 100%;
    border-radius: 2px;
    animation: sepShift 3s ease-in-out infinite;
}
@keyframes sepShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* APPROACH STEPS */
.approach { padding: 100px 0; position: relative; z-index: 2; }
.approach-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px; margin-top: 40px;
}
.approach-step {
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 32px 24px; text-align: center;
    transition: all 0.4s ease;
}
.approach-step:hover {
    border-color: rgba(212,168,35,0.3);
    transform: translateY(-4px);
}
.approach-number {
    font-family: 'DM Sans', sans-serif; font-size: 2.5rem;
    font-weight: 700; color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.approach-step h4 {
    font-family: 'DM Sans', sans-serif; font-weight: 600;
    font-size: 1.1rem; margin-bottom: 8px;
}
.approach-step p { color: var(--text-muted); font-size: 0.9rem; }

/* CONTACT FORM */
.contact-form { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.9rem; font-weight: 500;
    color: var(--text-muted); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15,15,25,0.8); color: var(--text);
    font-family: inherit; font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,35,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input[type="checkbox"] {
    width: auto; margin-top: 4px; accent-color: var(--gold);
}
.form-check label { font-size: 0.85rem; color: var(--text-muted); }
.field-validation-error { color: var(--red); font-size: 0.8rem; margin-top: 4px; display: block; }
.alert-success {
    background: rgba(76,175,80,0.15); border: 1px solid rgba(76,175,80,0.3);
    color: #66bb6a; padding: 16px 20px; border-radius: 12px;
    margin-bottom: 24px; text-align: center;
}

/* CHI SIAMO */
.about-section { padding: 100px 0; position: relative; z-index: 2; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.value-card {
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 24px 20px; text-align: center;
}
.value-card i { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; display: block; }
.value-card h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.value-card p { color: var(--text-muted); font-size: 0.85rem; }

/* GRADIENT MESH HERO */
.gradient-mesh {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; overflow: hidden;
}
.gradient-mesh .mesh-orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.15;
    animation: meshFloat 15s ease-in-out infinite;
}
@keyframes meshFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.1); }
    66% { transform: translate(-20px,30px) scale(0.9); }
}

/* LIQUID AURORA */
.aurora-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; overflow: hidden;
}
.aurora-bg::before,
.aurora-bg::after {
    content: ''; position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.1;
}
.aurora-bg::before {
    width: 600px; height: 600px; top: -200px; left: -100px;
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    animation: auroraMove1 12s ease-in-out infinite;
}
.aurora-bg::after {
    width: 500px; height: 500px; bottom: -200px; right: -100px;
    background: linear-gradient(135deg, var(--purple), var(--red));
    animation: auroraMove2 10s ease-in-out infinite;
}
@keyframes auroraMove1 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(100px,50px); }
}
@keyframes auroraMove2 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(-80px,-40px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav { display: none !important; }
    .mobile-toggle { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.8rem; }
    .phone-container { width: 200px; height: 400px; }
    .phone-orbit-ring { width: 230px; height: 430px; top: -15px; left: -15px; }
    .phone-body { width: 200px; height: 400px; }
    .phone-body img { width: 100%; height: 100%; object-fit: cover; border-radius: 27px; }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
}

/* === ADMIN STYLES === */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: #0a0a14; border-right: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0; flex-shrink: 0;
}
.admin-sidebar .sidebar-logo {
    padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
}
.admin-sidebar .sidebar-logo h3 {
    font-family: 'DM Sans', sans-serif; font-weight: 700;
    font-size: 1.1rem; color: var(--text);
}
.admin-sidebar .sidebar-logo h3 span { color: var(--gold); }
.admin-sidebar nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 24px; color: var(--text-muted); text-decoration: none;
    font-size: 0.9rem; transition: all 0.3s;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active { background: rgba(212,168,35,0.08); color: var(--gold); }
.admin-sidebar nav a i { width: 20px; text-align: center; }
.admin-content { flex: 1; background: #111118; }
.admin-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
}
.admin-topbar h2 { font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 600; }
.admin-topbar a { color: var(--gold); text-decoration: none; font-size: 0.9rem; }
.admin-body { padding: 32px; }
.admin-card {
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 24px;
}
.admin-card + .admin-card { margin-top: 20px; }
.admin-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 12px; }
.admin-stat { font-size: 2rem; font-weight: 700; color: var(--gold); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th,
.admin-table td {
    padding: 12px 16px; text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}
.admin-table th { color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.admin-table a { color: var(--gold); text-decoration: none; }
.admin-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000; padding: 10px 24px; border-radius: 8px;
    font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
    transition: all 0.3s;
}
.admin-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,168,35,0.3); }
.admin-btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.admin-btn-outline {
    background: transparent; border: 1px solid rgba(212,168,35,0.3);
    color: var(--gold); padding: 10px 24px; border-radius: 8px;
    font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s;
}
.admin-btn-outline:hover { background: rgba(212,168,35,0.08); }
.admin-form-group { margin-bottom: 20px; }
.admin-form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,20,0.8); color: var(--text);
    font-family: inherit; font-size: 0.9rem;
}
.admin-form-group input:focus,
.admin-form-group textarea:focus {
    outline: none; border-color: var(--gold);
}
.admin-form-group textarea { min-height: 120px; resize: vertical; }
.admin-login-wrapper {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: var(--bg);
}
.admin-login-box {
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 48px 40px; width: 100%; max-width: 400px;
    text-align: center;
}
.admin-login-box h1 { font-family: 'DM Sans', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.admin-login-box p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }
.admin-alert-error {
    background: rgba(224,68,68,0.15); border: 1px solid rgba(224,68,68,0.3);
    color: #ef5350; padding: 12px 16px; border-radius: 8px; margin-bottom: 16px;
    font-size: 0.85rem;
}
.dashboard-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.badge-unread {
    display: inline-block; background: var(--red); color: #fff;
    padding: 2px 8px; border-radius: 10px; font-size: 0.7rem; font-weight: 600;
}
