/* ========================================
   OARK - Modern Design System
   Cyberpunk / Glassmorphism / Dark Theme
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* --- Core Palette (Neon & Dark) --- */
  --color-bg: #050505;
  --color-bg-alt: #0a0a10;

  --color-primary: #8b5cf6;
  /* Violet */
  --color-primary-glow: rgba(139, 92, 246, 0.5);

  --color-secondary: #06b6d4;
  /* Cyan */
  --color-secondary-glow: rgba(6, 182, 212, 0.5);

  --color-accent: #ec4899;
  /* Pink */
  --color-accent-glow: rgba(236, 72, 153, 0.5);

  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-text-dim: rgba(255, 255, 255, 0.3);

  /* --- Glassmorphism --- */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --blur-amt: 12px;

  /* --- Gradients --- */
  --gradient-main: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-text: linear-gradient(90deg, #fff 0%, #cbd5e1 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, rgba(5, 5, 5, 0) 70%);

  /* --- Spacing & Layout --- */
  --container-width: 1280px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans-fast);
}

/* Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amt));
  -webkit-backdrop-filter: blur(var(--blur-amt));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--trans-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Components --- */

/* Buttons */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  /* Reduced padding */
  font-weight: 600;
  border-radius: 12px;
  /* Slightly less rounded than full pill for modern look, or keep pill if preferred but smaller */
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid transparent;
  /* Prevent layout shift */
  height: 44px;
  /* Fixed height for consistency */
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  height: 36px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  background: #7c3aed;
  /* Slightly darker violet */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Specific Auth Buttons in Navbar */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .btn {
  font-size: 0.85rem;
  padding: 0 1.25rem;
  height: 40px;
  border-radius: 99px;
  /* Pill shape for navbar buttons */
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.3);
  /* More visible background initially */
  backdrop-filter: blur(12px);
  /* Stronger blur initially */
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--trans-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Subtle border initially */
}

.navbar .container {
  display: flex;
  align-items: center;
  position: relative;
  /* For absolute centering of links */
  justify-content: space-between;
  /* Fallback */
  height: 100%;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.75);
  /* Slightly more transparent to show blur */
  backdrop-filter: blur(25px);
  /* Very strong blur on scroll */
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Removed unused .nav-container style and replaced with .navbar .container logic implicitly or explicitly above */

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.03em;
  z-index: 2;
  /* Ensure logo is clickable above centered links if overlap occurs (rare) */
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  list-style: none;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  /* Ensures it stays to the right if we weren't using absolute centering for the middle, but redundant with justify-between + absolute center method, safe to keep */
  z-index: 2;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--color-accent);
  transition: width var(--trans-fast);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}

.nav-user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  /* Tight padding */
  background: rgba(255, 255, 255, 0.1);
  /* More visible background */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  /* Pill shape */
  text-decoration: none;
  transition: all 0.2s ease;
  margin-right: 0.5rem;
  cursor: pointer;
}

.nav-user-profile:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
}

.nav-user-name {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding-right: 0.5rem;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  flex: 1;
  width: 100%;
  height: 100%;
  background: url('../assets/hero_bg.png') center/cover no-repeat;
  opacity: 0.6;
  z-index: -2;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  /* Animated entry */
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards 0.2s;
}

.hero h1 span {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
}

/* Features Grid */
.features-section {
  padding: 8rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Showcase Section (Z-pattern) */
.showcase-section {
  padding: 5rem 0;
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 8rem;
}

.showcase-row.reverse {
  flex-direction: row-reverse;
}

.showcase-text {
  flex: 1;
}

.showcase-visual {
  flex: 1;
  position: relative;
}

.showcase-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  transition: var(--trans-smooth);
}

.showcase-visual:hover img {
  transform: scale(1.02) rotate(1deg);
  border-color: var(--color-primary);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Mockup Container */
.app-mockup {
  position: relative;
  z-index: 10;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.app-mockup img {
  border-radius: 32px;
  display: block;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(to top, #000, var(--color-bg));
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  width: 600px;
  height: 600px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  opacity: 0.4;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  background: #020202;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  color: var(--color-text-dim);
  font-size: 0.9rem;
}

/* --- Legal Pages --- */
.legal-page {
  padding-top: 120px;
  padding-bottom: 5rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 3rem;
  text-align: center;
}

.legal-content h3 {
  color: var(--color-secondary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Verification Status Styles */
.verify-status-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.status-loading {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.status-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.status-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.code-display {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.code-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.campus-code {
  font-size: 3rem;
  font-weight: 800;
  font-family: monospace;
  color: var(--color-secondary);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.code-info {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
}

.code-instruction {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Delete Account Page Specifics --- */
.delete-account-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: var(--header-height);
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 40%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.1), transparent 40%);
}

.delete-card {
  max-width: 500px;
  width: 100%;
}

.step-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--trans-fast);
}

.step-dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  transition: var(--trans-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.error-message {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239, 68, 68, 0.3);
  margin-bottom: 1.5rem;
  display: none;
  font-size: 0.9rem;
  text-align: center;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .showcase-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .showcase-row.reverse {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: flex;
    gap: 0.5rem;
  }

  .nav-actions .btn {
    padding: 0 0.8rem;
    font-size: 0.8rem;
  }

  .nav-actions .btn-primary {
    display: none;
    /* Hide 'Indir' on mobile to save space */
  }

  .nav-user-name {
    display: none;
  }

  .nav-container .hamburger {
    margin-left: auto;
  }

  /* Simplified for now */
  .hamburger {
    display: block;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Campus Section */
.campus-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #050505 0%, #0c1220 100%);
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.campus-desc {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #06b6d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 2;
}

.step-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.step-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.step-icon-line {
  position: absolute;
  left: 20px;
  top: -2rem;
  width: 1px;
  height: calc(100% + 1rem);
  /* Connect to next */
  background: linear-gradient(to bottom, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.1));
  z-index: 1;
}

.step-item:first-child .step-icon-line {
  display: none;
}

.campus-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.education-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
}

.edu-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.code-preview {
  background: #0f172a;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.code-preview span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.code-box {
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
}

.campus-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.5;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  top: -20%;
  right: -20%;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: #3b82f6;
  bottom: -20%;
  left: -20%;
}

@media (max-width: 900px) {
  .campus-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .step-icon-line {
    display: none;
  }

  .step-number {
    margin: 0 auto;
  }

  .campus-desc {
    margin: 0 auto 3rem;
  }
}