@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ===== ROOT VARIABLES ===== */
/* --- Refined color palette for a more professional look --- */
:root {
  --bg: #0a0f2c; /* Darker, richer navy blue */
  --surface: #101736; /* Main surface color for cards */
  --surface2: #192142;
  --glass: rgba(25, 33, 66, 0.6); /* More opaque glass for readability */
  --glass-border: rgba(59, 130, 246, 0.2);
  --blue: #3b82f6; /* A more standard, professional blue */
  --cyan: #22d3ee;
  --green: #10b981;
  --red: #ef4444;
  --yellow: #f59e0b;
  --purple: #a855f7;
  --orange: #f97316;
  --text: #e5e7eb; /* Softer off-white */
  --text-secondary: #9ca3af; /* Standard gray for secondary text */
  --muted: #6b7280;
  --border: rgba(59, 130, 246, 0.25);
  --glow: 0 0 20px rgba(59, 130, 246, 0.2);
  --glow-green: 0 0 30px rgba(0, 255, 179, 0.2);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  touch-action: manipulation;
}

/* --- Simplified background for a cleaner look --- */
/* Animated background grid (disabled) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -2;
  opacity: 0.5;
}

/* Radial glow background */
body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUpOut 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.6s forwards;
  pointer-events: none;
}
.page-transition::after {
  content: '';
  width: 40px; height: 40px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ===== CANVAS ===== */
/* Canvas is disabled in HTML and JS for a cleaner UI */

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--cyan)); border-radius: 10px; }

/* ===== HEADER ===== */
header {
  position: relative;
  background: linear-gradient(180deg, rgba(2, 8, 16, 0.95), rgba(11, 21, 38, 0.9));
  backdrop-filter: blur(20px);
  padding: 50px 20px 36px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  z-index: 10;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

header h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(26px, 7vw, 56px); /* Adjusted for better scaling */
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  animation: fadeInDown 0.8s ease 0.6s both;
}

header p {
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
  position: absolute;
  top: 35px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.lang-selector:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), var(--glow);
  transform: translateY(-2px);
  background: rgba(15, 30, 53, 0.95);
}
.lang-selector i { color: var(--cyan); font-size: 16px; }
.lang-selector select {
  background: transparent !important;
  border: none !important;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
} 
.lang-selector select option { background: var(--bg); color: var(--text); }

/* Hide Default Google Translate UI */
.goog-te-banner-frame.skiptranslate, .goog-logo-link, .goog-te-gadget span { display: none !important; }
.goog-te-gadget { color: transparent !important; font-size: 0px !important; }
body { top: 0px !important; }
/* Hide translation hover tooltips */
.goog-text-highlight { background: none !important; box-shadow: none !important; }
#goog-gt-tt { display: none !important; }
iframe.skiptranslate { display: none !important; pointer-events: none !important; }


/* ===== NAVBAR ===== */
nav {
  display: flex;
  background: rgba(11, 21, 38, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease 1s both
}

nav button {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

nav button:hover {
  background: var(--glass);
  color: var(--text);
}

nav button.active {
  background: var(--blue);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--glow);
}

/* ===== SECTIONS ===== */
section {
  display: none;
  max-width: 980px;
  margin: 48px auto;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.4s ease;
}
/* Initially hide the home section on desktop */


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpOut {
  100% { transform: translateY(-100%); visibility: hidden; opacity: 0; }
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.anim-slide { animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; width: 100%; }

/* ===== SECTION TITLE ===== */
.stitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(16px, 3vw, 20px); /* Adjusted for responsiveness */
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stitle::before {
  content: '';
  width: 4px;
  height: 26px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

/* ===== GLASS CARD ===== */
.card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  text-align: left;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--glow);
  transform: translateY(-2px);
}

/* ===== ROADMAP CARDS ===== */
.roadmap-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: cardReveal 0.4s ease both;
  cursor: pointer;
}

.roadmap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.roadmap-card:nth-child(1) { animation-delay: 0.05s; }
.roadmap-card:nth-child(2) { animation-delay: 0.1s; }
.roadmap-card:nth-child(3) { animation-delay: 0.15s; }
.roadmap-card:nth-child(4) { animation-delay: 0.2s; }
.roadmap-card:nth-child(5) { animation-delay: 0.25s; }
.roadmap-card:nth-child(6) { animation-delay: 0.3s; }
.roadmap-card:nth-child(7) { animation-delay: 0.35s; }

/* ===== DOMAIN BADGE ===== */
.domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* ===== TOOL CHIP ===== */
.tool-chip {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 5px;
  transition: var(--transition);
}

.tool-chip:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--blue);
}

/* ===== YEAR PROGRESS BAR ===== */
.year-progress-wrap {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  height: 6px;
  margin: 10px 0 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.year-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.year-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.year-title {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.year-badge {
  font-size: 10px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.year-progress-label {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  font-family: 'Orbitron', monospace;
}

/* ===== CHECKBOX ===== */
.item-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid var(--muted);
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}

.item-checkbox:checked {
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: var(--blue);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.item-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 11px;
  font-weight: 900;
}

/* ===== SUB-CHECKBOX OVERRIDES ===== */
.sub-checkbox {
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.sub-checkbox:checked::after {
  font-size: 10px;
}

.roadmap-card.completed {
  opacity: 0.6;
  border-color: rgba(0, 255, 179, 0.2);
}

.roadmap-card.completed .card-title {
  text-decoration: line-through;
  color: var(--muted);
}

/* ===== SUBTASKS (MONTH-WISE PLAN) ===== */
.subtasks-container {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--glass-border);
  animation: slideDown 0.3s ease;
}
.subtasks-container.active {
  display: block;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.subtask-list {
  display: flex; flex-direction: column; gap: 10px;
}
.subtask-item {
  display: flex; gap: 12px;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 14px; border-radius: 8px;
  border-left: 3px solid;
  transition: var(--transition);
}
.subtask-item:hover { background: rgba(0, 0, 0, 0.4); }
.subtask-month {
  font-family: 'Orbitron', monospace; font-size: 10px; font-weight: 700;
  color: var(--text); white-space: nowrap; background: rgba(255,255,255,0.05);
  padding: 4px 8px; border-radius: 4px;
}
.subtask-desc {
  font-size: 12px; color: var(--text-secondary); line-height: 1.5;
  margin-top: 2px;
}

/* ===== TIME INDICATOR ===== */
.time-indicator {
  margin-top: 15px;
  padding: 12px 18px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  display: none; /* Initially hidden */
}

/* ===== DOMAIN LABEL (old style kept) ===== */
#roadmapOutput .domain-label {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.1);
}

/* ===== INPUTS & SELECTS ===== */
select, input, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  background: rgba(13, 19, 36, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text);
  border-radius: var(--radius-sm);
  outline: none;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
}

select:focus, input:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: rgba(13, 19, 36, 1);
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #2563eb; box-shadow: var(--glow); }

.btn-green { background: var(--green); color: #064e3b; font-weight: 600; }
.btn-green:hover { background: #059669; box-shadow: var(--glow-green); }

.btn-outline { background: transparent; border: 1px solid var(--blue) !important; color: var(--blue); font-weight: 500; }
.btn-outline:hover { background: rgba(59, 130, 246, 0.1); box-shadow: 0 0 16px rgba(59, 130, 246, 0.2); }

/* ===== CAREER TEST ===== */
#questionBox {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 50px 32px;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

#questionBox p { font-size: 18px; font-weight: 500; max-width: 560px; line-height: 1.7; color: var(--text); }

.q-meta { font-family: 'Orbitron', monospace; font-size: 10px; color: var(--muted); letter-spacing: 3px; }
.q-result-label { font-family: 'Orbitron', monospace; font-size: 11px; color: var(--muted); letter-spacing: 4px; }
.q-result-val { font-family: 'Orbitron', monospace; font-size: 22px; color: var(--green); font-weight: 900; letter-spacing: 1px; margin-top: 4px; text-shadow: 0 0 20px rgba(0, 255, 179, 0.4); }

/* ===== 3D ANIMATED PROGRESS BAR ===== */
.progress-wrap { width: 100%; max-width: 440px; height: 14px; background: rgba(0,0,0,0.5); border-radius: 10px; overflow: hidden; box-shadow: inset 0 2px 6px rgba(0,0,0,0.8), 0 1px 0 rgba(255,255,255,0.1); position: relative; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green)); border-radius: 10px; transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: inset 0 2px 5px rgba(255,255,255,0.5), inset 0 -2px 5px rgba(0,0,0,0.4), 0 0 12px rgba(0, 229, 255, 0.6); position: relative; }
.progress-bar::after { content: ''; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent); background-size: 20px 20px; animation: moveStripes 1s linear infinite; border-radius: 10px; }
@keyframes moveStripes { 0% { background-position: 0 0; } 100% { background-position: 20px 0; } }

/* ===== MODERN CAREER TEST ===== */
.test-header {
  display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 15px; max-width: 500px; margin: 0 auto 15px auto;
}
.q-domain-hint {
  font-size: 10px; color: var(--blue); background: rgba(0, 170, 255, 0.1); padding: 5px 12px; border-radius: 12px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(0, 170, 255, 0.2);
}
.likert-scale {
  display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 500px; margin: 0 auto;
}
.likert-btn {
  display: flex; align-items: center; gap: 15px;
  background: rgba(15, 30, 53, 0.6);
  border: 1px solid var(--glass-border);
  color: var(--text); padding: 12px 18px; border-radius: 12px;
  font-size: 15px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: var(--transition); text-align: left;
}
.likert-btn span {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.05); font-size: 12px; color: var(--muted); flex-shrink: 0;
}
.likert-btn:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.2); transform: translateX(6px); }

.likert-btn.sd:hover { border-color: var(--red); box-shadow: 0 0 15px rgba(255, 51, 102, 0.15); }
.likert-btn.sd:hover span { background: var(--red); color: #000; }
.likert-btn.d:hover { border-color: var(--orange); box-shadow: 0 0 15px rgba(255, 149, 0, 0.15); }
.likert-btn.d:hover span { background: var(--orange); color: #000; }
.likert-btn.n:hover { border-color: var(--text-secondary); box-shadow: 0 0 15px rgba(139, 164, 192, 0.15); }
.likert-btn.n:hover span { background: var(--text-secondary); color: #000; }
.likert-btn.a:hover { border-color: var(--blue); box-shadow: 0 0 15px rgba(0, 170, 255, 0.15); }
.likert-btn.a:hover span { background: var(--blue); color: #000; }
.likert-btn.sa:hover { border-color: var(--green); box-shadow: 0 0 15px rgba(0, 255, 179, 0.15); }
.likert-btn.sa:hover span { background: var(--green); color: #000; }

.result-cards { display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 600px; margin: 0 auto; max-height: 450px; overflow-y: auto; padding-right: 10px; }
.result-cards::-webkit-scrollbar { width: 6px; }
.result-cards::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.result-cards::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--cyan)); border-radius: 10px; }
.result-card {
  display: flex; align-items: center; gap: 20px; background: rgba(15, 30, 53, 0.6);
  border: 1px solid var(--glass-border); padding: 20px 24px; border-radius: 12px;
  text-align: left; transition: var(--transition);
}
.result-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); background: rgba(15, 30, 53, 0.9); }
.res-rank { font-family: 'Orbitron', monospace; font-size: 26px; font-weight: 700; color: var(--muted); opacity: 0.3; }
.res-info { flex: 1; }
.res-domain { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.res-bar-wrap { width: 100%; height: 6px; background: rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.res-bar { height: 100%; border-radius: 10px; animation: widthFill 1s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes widthFill { from { width: 0 !important; } }
.res-pct { font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 700; width: 90px; text-align: right; }
.res-view-btn { padding: 9px 16px; font-size: 10px; flex-shrink: 0; }

/* ===== CHART WRAPPER ===== */
.chart-wrap { position: relative; height: 420px; }

/* ===== AI MENTOR CHAT ===== */
.ai-chat-wrap {
  display: flex;
  flex-direction: column;
  background: rgba(8, 16, 30, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(59, 130, 246, 0.1);
  height: 620px;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.ai-avatar-wrap { display: flex; align-items: center; gap: 12px; }

.ai-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid; place-items: center;
  font-size: 18px; color: #000;
  box-shadow: 0 0 16px rgba(0,229,255,0.4);
  flex-shrink: 0;
}

.ai-name {
  font-family: 'Orbitron', monospace;
  font-size: 13px; font-weight: 700;
  color: var(--cyan); letter-spacing: 1px;
}

.ai-status {
  font-size: 11px; color: var(--muted);
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}

.ai-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.ai-clear-btn {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--red);
  width: 34px; height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
  display: grid; place-items: center;
}
.ai-clear-btn:hover { background: rgba(255,51,102,0.1); border-color: var(--red); }

.ai-chatbox {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.ai-chatbox::-webkit-scrollbar { width: 4px; }
.ai-chatbox::-webkit-scrollbar-track { background: transparent; }
.ai-chatbox::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.4); border-radius: 10px; }

/* Message rows */
.ai-msg-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  animation: msgIn 0.3s ease both;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-msg-row.user { flex-direction: row-reverse; }

.ai-msg-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

.ai-msg-row.bot .ai-msg-avatar {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #000;
  box-shadow: 0 0 10px rgba(0,229,255,0.3);
}

.ai-msg-row.user .ai-msg-avatar {
  background: linear-gradient(135deg, #6c3fc5, #9b59b6);
  color: #fff;
}

.ai-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
}

.ai-msg-row.bot .ai-bubble {
  background: var(--surface2);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 4px;
  color: var(--text);
}

.ai-msg-row.user .ai-bubble {
  background: var(--blue);
  border: 1px solid rgba(108,63,197,0.3);
  border-bottom-right-radius: 4px;
  color: var(--text);
}

.ai-bubble-time {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
  text-align: right;
}

.ai-msg-row.bot .ai-bubble-time { text-align: left; }

/* Typing indicator */
.ai-typing-dots {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 0;
}

.ai-typing-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: typingBounce 1.2s ease-in-out infinite;
}

.ai-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Suggestions */
.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.ai-suggestion-chip {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.ai-suggestion-chip:hover {
  background: var(--surface2);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

/* Input bar */
.ai-input-bar {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.ai-textarea {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 16px;
  resize: none;
  outline: none;
  line-height: 1.5;
  min-height: 44px;
  max-height: 120px;
  transition: var(--transition);
  margin: 0;
}

.ai-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: var(--surface2);
}

.ai-send-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.ai-send-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(0,229,255,0.4);
}

.ai-send-btn:active { transform: scale(0.95); }

/* Welcome screen */
.ai-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  text-align: center;
  padding: 20px;
}

.ai-welcome-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #000;
  box-shadow: 0 0 30px rgba(0,229,255,0.3);
  margin-bottom: 8px;
}

.ai-welcome h3 {
  font-family: 'Orbitron', monospace;
  font-size: 16px; color: var(--cyan);
  letter-spacing: 2px;
}

.ai-welcome p { font-size: 13px; color: var(--muted); max-width: 340px; line-height: 1.6; }

/* Markdown-style formatting inside bubbles */
.ai-bubble strong { color: var(--cyan); font-weight: 600; }
.ai-bubble em { color: var(--yellow); font-style: italic; }
.ai-bubble code {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: monospace;
  font-size: 12px;
  color: var(--green);
}
.ai-bubble ul { padding-left: 18px; margin: 6px 0; }
.ai-bubble ul li { margin-bottom: 4px; }

/* ===== CHAT (old — kept for fallback) ===== */
.chat-row { display: flex; gap: 10px; margin-bottom: 18px; }
.chat-row input { flex: 1; margin: 0; }


/* ===== RESUME ===== */
.resume-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.resume-grid input, .resume-grid textarea { margin: 0; width: 100%; }
.span2 { grid-column: span 2; }
.resume-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }

#resumeOutput {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--blue);
  padding: 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  white-space: pre-wrap;
  text-align: left;
  display: none;
  margin-top: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* ===== ROADMAP OUTPUT LIST (fallback) ===== */
#roadmapOutput h3 { font-family: 'Orbitron', monospace; font-size: 11px; color: var(--blue); letter-spacing: 3px; margin: 20px 0 10px; text-transform: uppercase; }
#roadmapOutput ul { list-style: none; padding: 0; }
#roadmapOutput li { padding: 10px 16px; margin-bottom: 8px; background: var(--glass); border: 1px solid var(--glass-border); border-left: 3px solid var(--green); border-radius: var(--radius-sm); font-size: 14px; transition: var(--transition); }
#roadmapOutput li:hover { transform: translateX(4px); border-left-color: var(--cyan); }
#roadmapOutput li::before { content: '▸ '; color: var(--green); }

/* ===== STARTUP GENERATOR UI ===== */
.startup-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--glass-border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

.startup-result-card {
  background: linear-gradient(145deg, rgba(15, 30, 53, 0.8), rgba(8, 16, 30, 0.9));
  border: 1px solid rgba(0, 255, 179, 0.3);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(16, 185, 129, 0.05);
  animation: fadeInUp 0.5s ease;
}

.startup-header { margin-bottom: 20px; border-bottom: 1px dashed var(--glass-border); padding-bottom: 15px; }
.startup-name { font-family: 'Orbitron', monospace; font-size: 28px; color: var(--green); font-weight: 700; margin-bottom: 5px; }
.startup-tagline { font-size: 15px; color: var(--text); font-style: italic; }

.startup-detail-box {
  background: rgba(0,0,0,0.3);
  border-left: 3px solid var(--blue);
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.startup-detail-title { font-size: 11px; text-transform: uppercase; color: var(--blue); letter-spacing: 1px; margin-bottom: 6px; font-weight: 700; }
.startup-detail-content { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.startup-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.s-tag { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); }
.s-tag.diff { color: var(--orange); border-color: rgba(255, 149, 0, 0.4); }
.s-tag.growth { color: var(--green); border-color: rgba(0, 255, 179, 0.4); }
.s-tag.rev { color: var(--cyan); border-color: rgba(0, 229, 255, 0.4); }

.startup-steps { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--glass-border); }
.startup-steps.expanded { display: block; animation: slideDown 0.3s ease; }
.startup-steps ul { padding-left: 20px; color: var(--text-secondary); font-size: 14px; }
.startup-steps li { margin-bottom: 8px; }

.saved-startup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.saved-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}
.saved-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: 0 5px 20px rgba(0, 255, 179, 0.1); }
.saved-card-name { font-family: 'Orbitron', monospace; font-size: 18px; color: var(--green); margin-bottom: 6px; }
.saved-card-tag { font-size: 12px; color: var(--text-secondary); margin-bottom: 15px; }
.delete-saved-btn {
  position: absolute; top: 15px; right: 15px;
  background: rgba(239, 68, 68, 0.1); color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.3); border-radius: 6px;
  width: 28px; height: 28px; display: grid; place-items: center;
  cursor: pointer; transition: var(--transition);
}
.delete-saved-btn:hover { background: var(--red); color: #fff; }

/* ===== AI LIFE SIMULATOR ===== */
.decision-card {
  background: linear-gradient(135deg, rgba(15, 30, 53, 0.9), rgba(11, 21, 38, 0.95));
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(168, 85, 247, 0.1);
  animation: fadeInUp 0.5s ease;
}
.decision-path { font-family: 'Orbitron', monospace; font-size: 28px; color: var(--purple); font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px;}
.decision-reason-box { background: rgba(0,0,0,0.3); border-left: 3px solid var(--green); padding: 15px; margin-bottom: 15px; border-radius: 8px;}
.decision-reason-box.alt { border-left-color: var(--orange); }
.sim-section-title { font-family: 'Orbitron', monospace; font-size: 16px; color: var(--cyan); margin: 30px 0 15px; text-transform: uppercase; border-bottom: 1px solid var(--glass-border); padding-bottom: 8px;}

/* Timeline */
.timeline { position: relative; padding-left: 24px; margin-top: 20px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--blue), var(--green), var(--purple)); opacity: 0.5; }
.timeline-item { position: relative; margin-bottom: 30px; animation: slideInRight 0.5s ease both; }
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-dot { position: absolute; left: -29px; top: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--bg); border: 3px solid var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.timeline-content { background: var(--glass); border: 1px solid var(--glass-border); padding: 20px; border-radius: var(--radius); }
.timeline-year { font-family: 'Orbitron', monospace; font-size: 18px; color: var(--cyan); font-weight: 700; margin-bottom: 10px; }
.sim-data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 15px; }
.sim-data-box { background: rgba(0,0,0,0.3); padding: 10px; border-radius: 8px; border-left: 3px solid var(--blue); }
.sim-data-title { font-size: 10px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.sim-data-value { font-size: 13px; color: var(--text); font-weight: 500; }

/* Action Plan */
.action-plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.action-card { background: rgba(15,30,53,0.5); border: 1px dashed var(--glass-border); padding: 15px; border-radius: var(--radius-sm); transition: var(--transition);}
.action-card:hover { background: rgba(15,30,53,0.8); border-color: var(--blue); transform: translateY(-3px);}
.action-card h4 { font-size: 14px; color: var(--blue); margin-bottom: 10px; text-transform: uppercase;}
.action-card ul { padding-left: 15px; font-size: 13px; color: var(--text-secondary); margin:0;}
.action-card li { margin-bottom: 6px; }

/* Analysis Stats */
.analysis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-bottom: 20px;}
.analysis-stat { background: rgba(0,0,0,0.4); padding: 15px; border-radius: 8px; text-align: center; border-bottom: 2px solid var(--green);}
.analysis-stat .stat-val { font-size: 20px; font-weight: 700; color: var(--text); font-family: 'Orbitron', monospace; margin-top: 5px;}
.analysis-stat.high-risk { border-bottom-color: var(--red); } .analysis-stat.high-risk .stat-val { color: var(--red); }
.analysis-stat.med-risk { border-bottom-color: var(--orange); } .analysis-stat.med-risk .stat-val { color: var(--orange); }

/* ===== ABOUT / CONTACT CARDS ===== */
.contact-link {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition);
}
.contact-link:hover {
  color: var(--green);
  text-shadow: 0 0 10px rgba(0, 255, 179, 0.3);
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.team-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), var(--glow);
}
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
}
@keyframes floatProfile {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
/* .team-img, #about img { animation: floatProfile 4s ease-in-out infinite; } */ /* Animation disabled for a more professional look */
.team-card:hover .team-img {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}
.team-name {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.team-role {
  font-size: 12px; color: var(--cyan); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 12px; font-weight: 600;
}
.team-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ===== TEAM SOCIALS ===== */
.team-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.team-socials a {
  color: var(--muted);
  font-size: 24px;
  transition: var(--transition);
}
.team-socials a:hover {
  color: var(--cyan);
  transform: translateY(-3px);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

/* ===== PRO ANALYTICS DASHBOARD ===== */
.analytics-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.kpi-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.kpi-card:nth-child(2)::before { background: linear-gradient(90deg, var(--green), var(--cyan)); }
.kpi-card:nth-child(3)::before { background: linear-gradient(90deg, var(--orange), var(--red)); }
.kpi-card:nth-child(4)::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }

.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--blue);
}

.kpi-title {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.kpi-value {
  font-family: 'Orbitron', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.kpi-trend {
  font-size: 11px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.analytics-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.col-span-2 { grid-column: span 2; }

.chart-box, .insights-box, .recommendations-box, .activity-box {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.chart-header {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Insights */
.insights-list { display: flex; flex-direction: column; gap: 12px; }
.insight-item { background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border); padding: 14px; border-radius: var(--radius-sm); font-size: 13px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.insight-item i { font-size: 16px; margin-top: 2px; }

/* Recommendations */
.rec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.rec-card { background: linear-gradient(145deg, rgba(15, 30, 53, 0.6), rgba(8, 16, 30, 0.8)); border: 1px solid rgba(0, 255, 179, 0.2); padding: 20px; border-radius: var(--radius-sm); }
.rec-card h4 { font-size: 11px; color: var(--green); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.rec-card p { font-size: 13px; color: var(--text); line-height: 1.6; }

/* Activity Log */
.activity-log { display: flex; flex-direction: column; gap: 12px; max-height: 320px; overflow-y: auto; padding-right: 5px; }
.activity-log::-webkit-scrollbar { width: 4px; }
.activity-log::-webkit-scrollbar-track { background: transparent; }
.activity-log::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.4); border-radius: 10px; }

.activity-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.05); }
.act-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.act-content { flex: 1; }
.act-title { font-size: 13px; font-weight: 600; color: var(--text); }
.act-desc { font-size: 11px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.act-time { font-size: 10px; color: var(--muted); white-space: nowrap; font-family: 'Orbitron', monospace; }


/* ============================================================
   PROFILE BUTTON & DROPDOWN  (injected by script.js)
   ============================================================ */
.profile-btn-wrap {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2000;
}

.profile-dropdown-wrap {
  position: relative;
}

/* Trigger button */
.profile-trigger-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(15, 30, 53, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 40px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-trigger-btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
  background: rgba(15, 30, 53, 0.95);
  transform: translateY(-1px);
}

/* Small avatar inside trigger */
.profile-avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.profile-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-avatar-small span {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  font-family: 'Orbitron', monospace;
}

.profile-username-label {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-chevron {
  font-size: 9px;
  color: var(--muted);
  transition: transform 0.3s ease;
}

/* Dropdown panel */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 240px;
  background: rgba(8, 16, 30, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 170, 255, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3000;
}

.profile-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.profile-dropdown.open ~ .profile-trigger-btn .profile-chevron,
.profile-dropdown-wrap:has(.profile-dropdown.open) .profile-chevron {
  transform: rotate(180deg);
}

/* Dropdown header */
.pd-user-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px 14px;
  background: rgba(0, 170, 255, 0.05);
}

.pd-avatar-wrap {
  flex-shrink: 0;
}

.pd-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

.pd-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  font-family: 'Orbitron', monospace;
  border: 2px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

.pd-user-info { flex: 1; min-width: 0; }

.pd-user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-user-email {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Separator */
.pd-sep {
  height: 1px;
  background: var(--glass-border);
  margin: 0;
}

/* Menu items */
.pd-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.pd-menu-item i {
  font-size: 15px;
  width: 18px;
  text-align: center;
  color: var(--muted);
  transition: color 0.2s ease;
}

.pd-menu-item:hover {
  background: rgba(0, 229, 255, 0.06);
  color: var(--cyan);
}

.pd-menu-item:hover i {
  color: var(--cyan);
}

.pd-logout-btn:hover {
  background: rgba(255, 51, 102, 0.08);
  color: var(--red);
}

.pd-logout-btn:hover i {
  color: var(--red);
}

/* ============================================================
   AUTH PAGES SHARED STYLES  (signup.html / login.html)
   ============================================================ */
.auth-page-body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.auth-card {
  position: relative;
  z-index: 1;
  background: rgba(11, 21, 38, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 44px 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 170, 255, 0.06);
  animation: authCardIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes authCardIn {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Logo block */
.auth-logo { text-align: center; margin-bottom: 32px; }

.auth-logo-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #000;
  margin: 0 auto 16px;
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.4);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 36px rgba(0, 229, 255, 0.4); }
  50%       { box-shadow: 0 0 56px rgba(0, 229, 255, 0.7); }
}

.auth-logo h1 {
  font-family: 'Orbitron', monospace;
  font-size: 21px; font-weight: 900; letter-spacing: 3px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.auth-logo p {
  color: var(--muted); font-size: 12px;
  letter-spacing: 2px; margin-top: 5px; text-transform: uppercase;
}

/* Form groups */
.auth-form-group { margin-bottom: 18px; }

.auth-label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 7px;
}

.auth-input-wrap { position: relative; }

.auth-input-wrap .auth-input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 14px; pointer-events: none;
  transition: color 0.3s ease;
}

.auth-input-wrap:focus-within .auth-input-icon { color: var(--cyan); }

.auth-input {
  width: 100%;
  padding: 13px 44px 13px 42px;
  background: rgba(15, 30, 53, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  margin: 0;
}

.auth-input:focus {
  border-color: rgba(0, 170, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.12);
  background: rgba(15, 30, 53, 0.9);
}

.auth-input::placeholder { color: var(--muted); }

.auth-input.error-field { border-color: rgba(255, 51, 102, 0.5); }
.auth-input.error-field:focus { box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.12); }

/* Password toggle */
.auth-pw-toggle {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 14px; padding: 0;
  transition: color 0.2s ease;
}
.auth-pw-toggle:hover { color: var(--cyan); }

/* Two-column row */
.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .auth-form-row { grid-template-columns: 1fr; } }

/* Avatar upload */
.auth-avatar-upload {
  display: flex; align-items: center; gap: 14px;
  background: rgba(15, 30, 53, 0.4);
  border: 1px dashed rgba(0, 170, 255, 0.3);
  border-radius: 11px; padding: 14px 16px;
  cursor: pointer; transition: all 0.3s ease;
}
.auth-avatar-upload:hover {
  border-color: rgba(0, 229, 255, 0.55);
  background: rgba(15, 30, 53, 0.65);
}
.auth-avatar-preview {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,170,255,0.15), rgba(0,229,255,0.08));
  border: 2px solid rgba(0, 170, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--muted); overflow: hidden; flex-shrink: 0;
  transition: all 0.3s ease;
}
.auth-avatar-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.auth-avatar-text strong { display: block; font-size: 13px; color: var(--text); margin-bottom: 2px; }
.auth-avatar-text span { font-size: 11px; color: var(--muted); }

/* Password strength */
.auth-pw-strength { margin-top: 7px; display: none; }
.auth-pw-strength-bar {
  height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.06); overflow: hidden; margin-bottom: 4px;
}
.auth-pw-strength-fill { height: 100%; border-radius: 4px; transition: width 0.4s ease, background 0.4s ease; width: 0; }
.auth-pw-strength-label { font-size: 10px; color: var(--muted); }

/* Alert messages */
.auth-alert {
  display: none; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 500; margin-bottom: 18px;
  animation: authCardIn 0.3s ease;
}
.auth-alert.show { display: flex; }
.auth-alert.error {
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}
.auth-alert.success {
  background: rgba(0, 255, 179, 0.08);
  border: 1px solid rgba(0, 255, 179, 0.3);
  color: var(--green);
}

/* Submit button */
.auth-submit-btn {
  width: 100%; padding: 14px; margin-top: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: none; border-radius: 11px;
  color: #000; font-family: 'Orbitron', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.auth-submit-btn:hover {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.45);
  transform: translateY(-2px);
}
.auth-submit-btn:active { transform: translateY(0); }
.auth-submit-btn.loading { pointer-events: none; opacity: 0.75; }
.auth-submit-btn .btn-spinner {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.25); border-top-color: #000;
  border-radius: 50%; animation: spin 0.6s linear infinite; margin: 0 auto;
}
.auth-submit-btn.loading .btn-text { display: none; }
.auth-submit-btn.loading .btn-spinner { display: block; }

/* Divider */
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0; color: var(--muted); font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07);
}

/* Footer link */
.auth-footer-link {
  text-align: center; font-size: 13px; color: var(--text-secondary); margin-top: 18px;
}
.auth-footer-link a {
  color: var(--cyan); text-decoration: none; font-weight: 600;
  transition: color 0.2s ease;
}
.auth-footer-link a:hover { color: var(--green); text-shadow: 0 0 10px rgba(0,255,179,0.3); }

/* ============================================================
   PROFILE PAGE
   ============================================================ */
.profile-page-wrap {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  padding: 0 0 60px;
}

/* Profile top bar */
.profile-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: rgba(11, 21, 38, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky; top: 0; z-index: 100;
}

.profile-topbar-logo {
  font-family: 'Orbitron', monospace;
  font-size: 16px; font-weight: 900; letter-spacing: 3px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none;
}

.profile-topbar-actions { display: flex; gap: 10px; }

/* Profile hero */
.profile-hero {
  max-width: 700px; margin: 48px auto 0; padding: 0 24px;
  animation: authCardIn 0.5s ease both;
}

.profile-cover-card {
  background: rgba(11, 21, 38, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Cover banner */
.profile-cover-banner {
  height: 130px;
  background: linear-gradient(135deg, rgba(0,170,255,0.25), rgba(0,229,255,0.1), rgba(0,255,179,0.15));
  position: relative;
}

.profile-cover-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,170,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,170,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Avatar section */
.profile-avatar-section {
  padding: 0 28px 28px;
  position: relative;
}

.profile-big-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(8, 16, 30, 1);
  box-shadow: 0 0 0 2px rgba(0,229,255,0.4), 0 0 24px rgba(0,229,255,0.25);
  margin-top: -50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-big-avatar:hover { box-shadow: 0 0 0 2px var(--cyan), 0 0 36px rgba(0,229,255,0.5); }

.profile-big-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.profile-big-avatar .avatar-initials-big {
  font-family: 'Orbitron', monospace;
  font-size: 36px; font-weight: 700; color: #000;
}

.profile-avatar-edit-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  border-radius: 50%;
}
.profile-big-avatar:hover .profile-avatar-edit-overlay { opacity: 1; }
.profile-avatar-edit-overlay i { color: #fff; font-size: 20px; }

/* Profile info */
.profile-info-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 14px;
}

.profile-display-name {
  font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 3px;
}

.profile-display-username {
  font-size: 13px; color: var(--muted);
}

/* Stats row */
.profile-stats-row {
  display: flex; gap: 28px; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.profile-stat { text-align: center; }
.profile-stat-val {
  font-family: 'Orbitron', monospace;
  font-size: 18px; font-weight: 700; color: var(--cyan);
}
.profile-stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 1px; }

/* Details card */
.profile-details-card {
  max-width: 700px; margin: 24px auto 0; padding: 0 24px;
  animation: authCardIn 0.55s ease 0.1s both;
}

.profile-section-card {
  background: rgba(11, 21, 38, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  margin-bottom: 20px;
}

.profile-section-title {
  font-family: 'Orbitron', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--cyan); text-transform: uppercase;
  margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,229,255,0.12);
  display: flex; align-items: center; gap: 10px;
}

/* Field rows */
.profile-field-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.profile-field-row:last-child { border-bottom: none; padding-bottom: 0; }

.profile-field-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(0,170,255,0.08);
  border: 1px solid rgba(0,170,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--cyan); flex-shrink: 0;
}

.profile-field-content { flex: 1; min-width: 0; }
.profile-field-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; }
.profile-field-value { font-size: 14px; color: var(--text); font-weight: 500; }

/* Edit mode inputs */
.profile-edit-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(15, 30, 53, 0.7);
  border: 1px solid rgba(0,170,255,0.25);
  color: var(--text);
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  margin: 0;
}
.profile-edit-input:focus {
  border-color: rgba(0,170,255,0.55);
  box-shadow: 0 0 0 3px rgba(0,170,255,0.1);
  background: rgba(15,30,53,0.9);
}

/* Buttons */
.profile-btn {
  font-family: 'Orbitron', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  padding: 10px 20px; border-radius: 9px;
  cursor: pointer; transition: all 0.3s ease;
  text-transform: uppercase; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}

.profile-btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #000;
}
.profile-btn-blue:hover {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 24px rgba(0,229,255,0.4);
  transform: translateY(-2px);
}

.profile-btn-outline {
  background: transparent;
  border: 1px solid rgba(0,170,255,0.35) !important;
  color: var(--blue);
}
.profile-btn-outline:hover {
  background: rgba(0,170,255,0.08);
  border-color: var(--cyan) !important;
  transform: translateY(-2px);
}

.profile-btn-red {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.35) !important;
  color: var(--red);
}
.profile-btn-red:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--red) !important;
  transform: translateY(-2px);
}

.profile-btn-green {
  background: linear-gradient(135deg, var(--green), #00cc8f);
  color: #000;
}
.profile-btn-green:hover {
  box-shadow: 0 0 24px rgba(0,255,179,0.4);
  transform: translateY(-2px);
}

/* Toast notification */
.profile-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: rgba(0,255,179,0.12);
  border: 1px solid rgba(0,255,179,0.35);
  color: var(--green);
  padding: 12px 24px; border-radius: 40px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0; z-index: 9999; white-space: nowrap;
  backdrop-filter: blur(12px);
}
.profile-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.profile-toast.error-toast {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: var(--red);
}

/* Hide mobile-only elements on desktop by default */
#mobile-header,
#mobile-nav,
#mobile-slide-menu,
#menu-overlay {
    display: none;
}

/* ===== CHOOSE COLLEGE SYSTEM ===== */
.degree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.degree-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.degree-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.pathway-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.college-results-container {
  margin-top: 30px;
}

.college-result-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
}
.college-result-card h4 { font-size: 16px; color: var(--text); margin-bottom: 5px; }
.college-result-card p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }
