/* ===========================
   PROJECT_07 PREMIUM THEME
   Red × Black × Neon × Glass
   =========================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Oswald', system-ui, sans-serif;
}

body {
    background: radial-gradient(circle at top, #000000, #0a0a0a);
    background-attachment: fixed;
    color: #e2e2e2;
    overflow-x: hidden;
    
}

/* Glow Animation */
@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(255,0,0,0.4); }
    50% { box-shadow: 0 0 25px rgba(255,0,0,0.9); }
    100% { box-shadow: 0 0 10px rgba(255,0,0,0.4); }
}

.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 16px 60px;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 32px;
    animation: glowPulse 3s infinite;
    border-radius: 20px;
    border: 1px solid rgba(255,0,0,0.3);
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff2a2a;
    text-shadow: 0 0 15px rgba(255,0,0,0.7);
}

.hero p {
    margin-top: 6px;
    color: #ff9f9f;
}

/* GLASS CARDS */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px 26px;
    border: 1px solid rgba(255, 0, 0, 0.25);
    box-shadow: 0 0 25px rgba(255,0,0,0.25);
    transition: 0.25s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255,0,0,0.5);
}

.card.small {
    max-width: 420px;
}

/* Form */
.form {
    margin-top: 15px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    color: #ff9f9f;
    font-size: 0.95rem;
}

.form-group span {
    color: #ff4040;
}

/* Inputs Glass Style */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,0,0,0.3);
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(12px);
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff2a2a;
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
    outline: none;
}

textarea { resize: vertical; }

.form-row {
    display: flex;
    gap: 14px;
}

/* BUTTONS with hologram effect */
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger {
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: 0.2s ease-in-out;
    text-align: center;
}

/* Red Neon Button */
.btn-primary {
    background: linear-gradient(135deg, #ff0000, #b30000);
    color: white;
    text-shadow: 0 0 8px rgba(255,0,0,0.8);
    box-shadow: 0 0 15px rgba(255,0,0,0.7);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255,0,0,1);
}

/* Grey Button */
.btn-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    color: #ff9f9f;
}

/* Green Button */
.btn-success {
    background: #22c55e;
    color: #000;
    box-shadow: 0 0 15px rgba(34,197,94,0.8);
}

/* Red Button */
.btn-danger {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 0 15px rgba(239,68,68,0.8);
}

/* Alerts */
.alert {
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.alert.success {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #86efac;
    box-shadow: 0 0 12px rgba(34,197,94,0.5);
}

.alert.error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
    box-shadow: 0 0 12px rgba(239,68,68,0.5);
}

/* Admin Header */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-header h1 {
    color: #ff4b4b;
    text-shadow: 0 0 12px rgba(255,0,0,0.7);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.tab {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,0,0,0.3);
    color: #ff9f9f;
    text-decoration: none;
    transition: 0.25s;
}

.tab:hover {
    background: rgba(255,0,0,0.25);
    color: #fff;
}

.tab.active {
    background: rgba(255,0,0,0.4);
    color: #fff;
    box-shadow: 0 0 15px rgba(255,0,0,0.7);
}

/* Status Badges */
.status {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status.pending {
    background: rgba(255,255,0,0.2);
    color: #facc15;
}

.status.accepted {
    background: rgba(34,197,94,0.2);
    color: #4ade80;
}

.status.denied {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}

/* Card Info */
.application p {
    font-size: 0.9rem;
}

.application .meta {
    font-size: 0.75rem;
    margin-top: 4px;
    color: #aaa;
}

/* Actions */
.actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.inline-form {
    display: inline-block;
}

.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #666;
}

.application p {
    margin-bottom: 8px;
    line-height: 1.4em;
}


/* Mobile */
@media (max-width: 600px) {
    .form-row { flex-direction: column; }
}

