:root {
    --bg: #0b0c12;
    --accent: #00d4ff;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: var(--bg); 
    color: #fff; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ✈️ Busy Airspace Background */
.airspace { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.15; }
.bg-plane { position: absolute; color: #fff; filter: blur(1px); }

@keyframes flySE { from { transform: translate(-10vw, -10vh) rotate(45deg); } to { transform: translate(110vw, 110vh) rotate(45deg); } }
@keyframes flyNE { from { transform: translate(-10vw, 110vh) rotate(-45deg); } to { transform: translate(110vw, -10vh) rotate(-45deg); } }
@keyframes flySW { from { transform: translate(110vw, -10vh) rotate(225deg); } to { transform: translate(-10vw, 110vh) rotate(225deg); } }

.p1 { top: 10%; animation: flySE 35s linear infinite; font-size: 3rem; }
.p2 { top: 65%; animation: flyNE 48s linear infinite 5s; font-size: 2rem; }
.p3 { top: 35%; animation: flySW 60s linear infinite 10s; font-size: 4rem; opacity: 0.5; }
.p4 { bottom: 15%; animation: flySE 42s linear infinite 15s; font-size: 1.5rem; }
.p5 { top: 8%; left: 45%; animation: flyNE 55s linear infinite 2s; font-size: 2.5rem; }
.p6 { top: 75%; animation: flySE 38s linear infinite 8s; font-size: 3.5rem; opacity: 0.3; }

/* Dashboard UI */
.glass { background: var(--glass); backdrop-filter: blur(25px); border: 1px solid var(--border); }

/* NAVIGATION - Responsive Scaling */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.5rem 5%; 
    border-radius: 0 0 20px 20px; 
}
.logo { font-weight: 800; font-style: italic; font-size: 1.2rem; }
.logo span { color: var(--accent); }
.quota-pill { 
    font-size: 9px; 
    font-weight: 800; 
    background: rgba(0, 212, 255, 0.1); 
    color: var(--accent); 
    padding: 6px 12px; 
    border-radius: 50px;
    text-align: center;
}

/* HERO - Responsive Fonts */
.wrapper { flex: 1; padding: 2rem 5% 4rem 5%; max-width: 1400px; margin: 0 auto; width: 100%; }
.glow { background: linear-gradient(90deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h1 { font-size: clamp(2rem, 8vw, 4rem); letter-spacing: -1.5px; line-height: 1.1; font-weight: 800; text-align: center; }
.hero p { text-align: center; margin-top: 10px; color: #888; font-size: 0.9rem; }

/* ACTION GRID - Mobile Stacking */
.action-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
    margin-top: 2.5rem; 
}

@media (min-width: 968px) {
    .action-grid { grid-template-columns: 1fr 1.5fr; gap: 2.5rem; }
    h1 { text-align: left; }
    .hero p { text-align: left; }
    .navbar { padding: 1.5rem 8%; border-radius: 0 0 40px 40px; }
    .logo { font-size: 1.4rem; }
    .wrapper { padding: 4rem 8% 8rem 8%; }
}

.card { padding: 1.5rem; border-radius: 25px; }
.limit-disclaimer .icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.5rem; }
.limit-disclaimer p { font-size: 0.85rem; color: #888; line-height: 1.5; }

/* SEARCH BOX - Mobile Optimized */
.search-box { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    margin: 1.5rem 0; 
    padding: 10px; 
    background: rgba(255,255,255,0.02); 
    border-radius: 20px; 
    border: 1px solid var(--border); 
}

@media (min-width: 600px) {
    .search-box { flex-direction: row; padding: 6px; }
    .card { padding: 2.5rem; border-radius: 35px; }
}

input { flex: 1; background: transparent; border: none; color: #fff; padding: 12px; outline: none; font-size: 1rem; }
button { background: var(--accent); color: #000; border: none; padding: 14px 20px; border-radius: 14px; font-weight: 800; cursor: pointer; transition: 0.3s; }
button:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4); }

.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tags span { font-size: 9px; color: #555; border: 1px solid var(--border); padding: 4px 8px; border-radius: 5px; }

/* LIVE TRACKER - Scaling */
.live-tracker-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .live-tracker-box { margin-top: 4rem; padding: 4rem; border-radius: 40px; }
}

/* DASHBOARD RESULTS */
.dashboard-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 1.2rem; 
    margin-top: 2rem; 
}
.stat-card { padding: 1.5rem; border-radius: 20px; transition: 0.3s; }
.stat-card h4 { font-size: 10px; text-transform: uppercase; color: #666; margin-bottom: 0.8rem; letter-spacing: 1px; }
.stat-card p { font-size: 1.5rem; font-weight: 800; }

/* FOOTER - Responsive */
.footer { 
    padding: 2rem 5%; 
    border-radius: 30px 30px 0 0; 
    margin-top: auto; 
    border-bottom: none;
    border-left: none;
    border-right: none;
}
.footer-container { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    align-items: center; 
    text-align: center;
}

@media (min-width: 768px) {
    .footer { padding: 3rem 8%; border-radius: 50px 50px 0 0; }
    .footer-container { flex-direction: row; justify-content: space-between; text-align: left; }
    .stat-card p { font-size: 1.8rem; }
}

.footer-brand { color: var(--accent); font-weight: 800; text-decoration: none; font-size: 0.9rem; }
.kush-link { color: #888; text-decoration: none; }
.footer-rights { color: #444; font-size: 0.75rem; }