/* ============================================
   BADCUBE SPACE UNIVERSE — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:wght@300;400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --space-dark: #020410;
  --space-blue: #0a0e27;
  --neon-blue: #4fc3f7;
  --neon-purple: #b39ddb;
  --neon-pink: #f48fb1;
  --neon-green: #80cbc4;
  --star-white: #e8f4fd;
  --gold: #ffd54f;
}

html { scroll-behavior: smooth; }

body {
  background: var(--space-dark);
  color: var(--star-white);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- CANVAS STARFIELD ---- */
#space-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- NEBULA LAYERS ---- */
.nebula {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.nebula-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,195,247,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: nebulaFloat1 18s ease-in-out infinite alternate;
}
.nebula-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(179,157,219,0.15) 0%, transparent 70%);
  bottom: 0px; right: -50px;
  animation: nebulaFloat2 22s ease-in-out infinite alternate;
}
.nebula-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,143,177,0.1) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: nebulaFloat3 15s ease-in-out infinite alternate;
}
@keyframes nebulaFloat1 {
  from { transform: translate(0,0) scale(1); opacity: 0.6; }
  to   { transform: translate(120px, 80px) scale(1.3); opacity: 1; }
}
@keyframes nebulaFloat2 {
  from { transform: translate(0,0) scale(1); opacity: 0.5; }
  to   { transform: translate(-100px,-60px) scale(1.2); opacity: 0.9; }
}
@keyframes nebulaFloat3 {
  from { transform: translate(0,0) scale(1) rotate(0deg); opacity: 0.4; }
  to   { transform: translate(60px,-80px) scale(1.4) rotate(30deg); opacity: 0.8; }
}

/* ---- SOLAR SYSTEM ---- */
.solar-system {
  position: fixed;
  right: -100px; bottom: -100px;
  width: 380px; height: 380px;
  z-index: 2;
  pointer-events: none;
}
.sun {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7c0 0%, #ffd54f 40%, #ff8f00 80%, transparent 100%);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 30px 10px rgba(255,213,79,0.6), 0 0 60px 20px rgba(255,143,0,0.3);
  animation: sunPulse 3s ease-in-out infinite;
}
.sun-corona {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,213,79,0.3) 0%, transparent 70%);
  animation: coronaRotate 8s linear infinite;
}
.sun-corona-2 {
  inset: -25px;
  animation: coronaRotate 12s linear infinite reverse;
  opacity: 0.5;
}
@keyframes sunPulse {
  0%,100% { box-shadow: 0 0 30px 10px rgba(255,213,79,0.6), 0 0 60px 20px rgba(255,143,0,0.3); }
  50%      { box-shadow: 0 0 50px 20px rgba(255,213,79,0.9), 0 0 100px 40px rgba(255,143,0,0.5); }
}
@keyframes coronaRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}
.orbit-1 { width: 140px; height: 140px; animation: orbitSpin 6s linear infinite; }
.orbit-2 { width: 210px; height: 210px; animation: orbitSpin 10s linear infinite; }
.orbit-3 { width: 290px; height: 290px; animation: orbitSpin 16s linear infinite; }
.orbit-4 { width: 380px; height: 380px; animation: orbitSpin 26s linear infinite; }
@keyframes orbitSpin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.planet {
  position: absolute;
  border-radius: 50%;
  top: 0; left: 50%;
  transform: translate(-50%,-50%);
}
.planet-1 {
  width: 18px; height: 18px;
  background: radial-gradient(circle at 35% 35%, #64b5f6, #1565c0);
  box-shadow: 0 0 10px rgba(100,181,246,0.8);
}
.planet-2 {
  width: 24px; height: 24px;
  background: radial-gradient(circle at 35% 35%, #ffcc80, #e65100);
  box-shadow: 0 0 12px rgba(255,204,128,0.8);
}
.planet-3 {
  width: 30px; height: 30px;
  background: radial-gradient(circle at 35% 35%, #a5d6a7, #1b5e20);
  box-shadow: 0 0 14px rgba(165,214,167,0.7);
}
.planet-4 {
  width: 40px; height: 40px;
  background: radial-gradient(circle at 35% 35%, #ffb74d, #bf360c);
  box-shadow: 0 0 16px rgba(255,183,77,0.7);
}
.planet-ring {
  position: absolute;
  width: 46px; height: 14px;
  border-radius: 50%;
  border: 3px solid rgba(255,220,150,0.5);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(70deg);
}
.moon {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #bdbdbd;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(189,189,189,0.8);
  animation: moonOrbit 2s linear infinite;
}
@keyframes moonOrbit {
  from { transform: translateX(-50%) rotate(0deg) translateY(-18px); }
  to   { transform: translateX(-50%) rotate(360deg) translateY(-18px); }
}

/* ---- SHOOTING STARS ---- */
.shooting-stars { position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.shooting-star {
  position: absolute;
  width: 3px; height: 3px;
  background: white;
  border-radius: 50%;
  animation: shoot linear forwards;
}
.shooting-star::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 1px;
  background: linear-gradient(to left, white, transparent);
  transform: translateY(1px);
}
@keyframes shoot {
  from { transform: translateX(0) translateY(0); opacity: 1; }
  to   { transform: translateX(400px) translateY(400px); opacity: 0; }
}

/* ---- ASTRONAUT ---- */
.astronaut {
  position: fixed;
  width: 80px;
  top: 15%; left: 5%;
  z-index: 3;
  animation: floatAstronaut 8s ease-in-out infinite, driftX 20s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(79,195,247,0.4));
  pointer-events: none;
}
.astronaut svg { width: 100%; height: auto; }
.rope {
  position: absolute;
  bottom: -60px; left: 50%;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  transform: translateX(-50%);
  animation: ropeSway 8s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes floatAstronaut {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  25%      { transform: translateY(-20px) rotate(5deg); }
  50%      { transform: translateY(-10px) rotate(-3deg); }
  75%      { transform: translateY(-30px) rotate(8deg); }
}
@keyframes driftX {
  from { left: 5%; }
  to   { left: 12%; }
}
@keyframes ropeSway {
  0%,100% { transform: translateX(-50%) rotate(-5deg); }
  50%     { transform: translateX(-50%) rotate(5deg); }
}

/* ---- ASTEROIDS ---- */
.asteroid {
  position: fixed;
  border-radius: 40%;
  background: radial-gradient(circle at 40% 40%, #795548, #3e2723);
  pointer-events: none;
  z-index: 2;
  animation: asteroidDrift linear infinite;
}
@keyframes asteroidDrift {
  from { transform: translateX(-150px) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateX(calc(110vw)) rotate(720deg); opacity: 0; }
}

/* ---- NAVIGATION ---- */
.container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(79,195,247,0.5);
}
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  animation: logoDotPulse 2s ease-in-out infinite;
}
@keyframes logoDotPulse {
  0%,100% { box-shadow: 0 0 10px var(--neon-blue); transform: scale(1); }
  50%     { box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue); transform: scale(1.3); }
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover { color: var(--neon-blue); text-shadow: 0 0 8px var(--neon-blue); }
.nav-btn {
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.nav-btn:hover {
  background: var(--neon-blue);
  color: var(--space-dark);
  box-shadow: 0 0 20px rgba(79,195,247,0.5);
}

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 5rem 0 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79,195,247,0.08);
  border: 1px solid rgba(79,195,247,0.2);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  margin-bottom: 2rem;
  animation: badgeFadeIn 1s ease forwards;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-blue);
  animation: logoDotPulse 1.5s ease-in-out infinite;
}
@keyframes badgeFadeIn {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.title-line { display: block; font-family: 'Orbitron', sans-serif; font-weight: 900; line-height: 1.1; }
.line-1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: white;
  text-shadow: 0 0 40px rgba(79,195,247,0.3);
  letter-spacing: 0.15em;
  animation: titleSlideIn 1s ease 0.2s both;
}
.line-2 {
  font-size: clamp(1.4rem, 4.5vw, 3.2rem);
  letter-spacing: 0.2em;
  animation: titleSlideIn 1s ease 0.4s both;
}
@keyframes titleSlideIn {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
.gradient-text {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 4s ease-in-out infinite alternate;
}
.gradient-text-2 {
  background: linear-gradient(135deg, var(--neon-pink), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift2 4s ease-in-out infinite alternate;
}
@keyframes gradientShift  { from { filter: hue-rotate(0deg); } to { filter: hue-rotate(30deg); } }
@keyframes gradientShift2 { from { filter: hue-rotate(0deg); } to { filter: hue-rotate(-30deg); } }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: titleSlideIn 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: titleSlideIn 1s ease 0.8s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4fc3f7, #7c4dff);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(79,195,247,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost svg { width: 18px; height: 18px; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ---- STATS ---- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  animation: titleSlideIn 1s ease 1s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(79,195,247,0.5);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ---- TEKNOFEST PORTAL ---- */
.teknofest-section {
  padding: 2rem 0 4rem;
}
.teknofest-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(79,195,247,0.04);
  border: 1px solid rgba(79,195,247,0.2);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.teknofest-card:hover {
  background: rgba(79,195,247,0.08);
  border-color: rgba(79,195,247,0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(79,195,247,0.1);
}
.tf-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(79,195,247,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.tf-icon { flex-shrink: 0; width: 80px; height: 80px; }
.tf-icon svg { width: 100%; height: 100%; animation: tfIconSpin 20s linear infinite; }
@keyframes tfIconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.tf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.22);
  color: #00e676;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 5px;
  margin-bottom: 0.6rem;
}
.tf-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 6px #00e676;
  animation: logoDotPulse 2s ease-in-out infinite;
}
.tf-content { flex: 1; }
.tf-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.tf-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.tf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.tf-tags span {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.38);
  font-size: 0.68rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.tf-arrow {
  flex-shrink: 0;
  color: var(--neon-blue);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}
.tf-arrow svg { width: 28px; height: 28px; }
.teknofest-card:hover .tf-arrow { opacity: 1; transform: translateX(6px); }

/* ---- FEATURES ---- */
.features { padding: 2rem 0 4rem; }
.features-header { text-align: center; margin-bottom: 3rem; }
.features-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.features-header p { color: rgba(255,255,255,0.45); font-size: 1rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: cardFadeIn 0.7s ease var(--delay) both;
}
@keyframes cardFadeIn {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79,195,247,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 30px rgba(79,195,247,0.1);
}
.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(79,195,247,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover .card-glow { opacity: 1; }
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.feature-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ---- TEAM SECTION ---- */
.team-section { padding: 2rem 0 6rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.team-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79,195,247,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 30px rgba(79,195,247,0.08);
}
.team-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(79,195,247,0.07) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.team-card:hover .team-card-glow { opacity: 1; }

.team-avatar {
  position: relative;
  width: 90px; height: 90px;
}
.team-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(79,195,247,0.3);
  box-shadow: 0 0 20px rgba(79,195,247,0.2);
  display: block;
}
.avatar-placeholder {
  display: none;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,195,247,0.2), rgba(124,77,255,0.2));
  border: 2px solid rgba(79,195,247,0.3);
  box-shadow: 0 0 20px rgba(79,195,247,0.2);
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 0.05em;
}

.team-info { width: 100%; }
.team-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.team-role {
  display: inline-block;
  background: rgba(79,195,247,0.1);
  border: 1px solid rgba(79,195,247,0.2);
  color: var(--neon-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.team-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.team-contact a svg { width: 14px; height: 14px; flex-shrink: 0; }
.team-contact a:hover { color: var(--neon-blue); }

/* ---- CTA SECTION ---- */
.cta-section { padding: 4rem 0 6rem; }
.cta-inner {
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(79,195,247,0.15);
  border-radius: 24px;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,247,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50%     { transform: translate(-50%,-50%) scale(1.5); opacity: 1; }
}
.cta-inner h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
  position: relative;
}
.cta-inner p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  font-size: 1rem;
  position: relative;
}
.cta-inner .btn-primary { position: relative; }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--neon-blue);
}
.footer p { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--neon-blue); }

/* ---- BOTTOM LINKS (Teknofest + Takım küçük linkleri) ---- */
.bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bottom-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: all 0.25s;
}
.bottom-link-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.bottom-link-item:hover { color: var(--neon-blue); border-color: rgba(79,195,247,0.3); }
.bottom-link-sep { color: rgba(255,255,255,0.15); font-size: 1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .solar-system { width: 300px; height: 300px; right: -50px; bottom: -50px; }
  .orbit-4 { display: none; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .footer { flex-direction: column; text-align: center; }
  .bottom-links { flex-direction: column; gap: 0.6rem; }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--space-dark); }
::-webkit-scrollbar-thumb { background: rgba(79,195,247,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(79,195,247,0.6); }
::selection { background: rgba(79,195,247,0.3); color: white; }
