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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #f0f0f0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.8rem;
}

p {
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.highlight {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.highlight-gradient {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.cyber-bracket {
  color: #00ffff;
  font-weight: bold;
  font-size: 1.5rem;
}

/* ============================================
   LOADING BAR
   ============================================ */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  z-index: 9999;
  display: none;
  transition: none;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.loading-bar.active {
  display: block;
  animation: loadingBarPulse 1s infinite;
}

@keyframes loadingBarPulse {
  0% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.7); }
  50% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.9); }
  100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.7); }
}

/* ============================================
   STAR BACKGROUND WITH NEBULA
   ============================================ */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
  background: #0a0a0f;
}

.stars:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 40%);
  animation: gradientShift 30s ease-in-out infinite alternate;
}

.nebula {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  animation: nebulaPulse 10s ease-in-out infinite alternate;
}

@keyframes nebulaPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.stars:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 
    30vw 10vh 0 0 white,
    50vw 20vh 0 0 rgba(255, 255, 255, 0.8),
    70vw 30vh 0 0 rgba(255, 255, 255, 0.9),
    10vw 40vh 0 0 white,
    90vw 50vh 0 0 rgba(255, 255, 255, 0.7),
    20vw 60vh 0 0 white,
    60vw 70vh 0 0 rgba(255, 255, 255, 0.8),
    40vw 80vh 0 0 white,
    80vw 90vh 0 0 rgba(255, 255, 255, 0.9),
    15vw 15vh 0 0 white,
    85vw 25vh 0 0 rgba(255, 255, 255, 0.6),
    45vw 35vh 0 0 white,
    95vw 45vh 0 0 rgba(255, 255, 255, 0.8),
    5vw 55vh 0 0 white,
    55vw 65vh 0 0 rgba(255, 255, 255, 0.7);
  animation: floatStar 30s linear infinite, blinkStar 4s infinite alternate ease-in-out;
}

@keyframes floatStar {
  0% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(-100vh);
  }
}

@keyframes blinkStar {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.9;
  }
}

/* ============================================
   MOUSE TRAIL EFFECT
   ============================================ */
.mouse-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: screen;
}

.mouse-trail.active {
  opacity: 0.5;
}

.mouse-trail:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 0, 255, 0.3);
  animation: trailPulse 1.5s infinite;
}

@keyframes trailPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

.preloader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.preloader-logo {
  width: 220px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.preloader-title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

.preloader-subtitle {
  margin-top: 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  color: #00ffff;
  letter-spacing: 4px;
  opacity: 0.7;
}

.glitch-text {
  position: relative;
  animation: glitchText 3s infinite;
}

.glitch-text:before,
.glitch-text:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text:before {
  animation: glitch1 0.5s infinite;
  color: #ff00ff;
  z-index: -1;
}

.glitch-text:after {
  animation: glitch2 0.5s infinite;
  color: #00ffff;
  z-index: -2;
}

@keyframes glitch1 {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  20% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
  40% { clip-path: inset(50% 0 30% 0); transform: translate(2px, -2px); }
  60% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 0); }
  80% { clip-path: inset(80% 0 5% 0); transform: translate(2px, 2px); }
}

@keyframes glitch2 {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  20% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
  40% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 2px); }
  60% { clip-path: inset(40% 0 40% 0); transform: translate(2px, 0); }
  80% { clip-path: inset(20% 0 50% 0); transform: translate(-2px, -2px); }
}

/* ============================================
   NAVIGATION - Desktop First Approach
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 15px 5%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(255, 0, 255, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'MOKOTO Glitch 1', 'Share Tech Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  white-space: nowrap;
}

.logo-tagline {
  font-size: 0.8rem;
  color: #888;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
}

/* Language Toggle */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 15px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #888;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-family: 'Share Tech Mono', monospace;
}

.lang-btn.active {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.lang-separator {
  color: #444;
}

/* Desktop Navigation - visible by default */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 5px;
  position: relative;
  font-family: 'Share Tech Mono', monospace;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00ffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #00ffff;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  color: #0a0a0f;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10001;
}

.bar {
  width: 25px;
  height: 2px;
  background: #00ffff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffff;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #ff00ff;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #ff00ff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.hero-section .container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  animation: badgePulse 2s infinite;
  font-family: 'Share Tech Mono', monospace;
  backdrop-filter: blur(5px);
}

@keyframes badgePulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
  }
  50% { 
    box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
  }
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
  animation: titleFadeIn 1s ease-out;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #b0b0b0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: subtitleFadeIn 1s ease-out 0.3s both;
}

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

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: buttonsFadeIn 1s ease-out 0.6s both;
}

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

.hero-btn {
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Share Tech Mono', monospace;
}

.hero-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-btn:hover:before {
  left: 100%;
}

.hero-btn.primary {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  color: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.hero-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(0, 255, 255, 0.5);
}

.hero-btn.secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #ff00ff;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: statsFadeIn 1s ease-out 0.9s both;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
  font-family: 'Share Tech Mono', monospace;
}

/* Floating elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #00ffff;
  animation: floatElement 6s ease-in-out infinite;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.floating-element:hover {
  animation-play-state: paused;
  transform: scale(1.2);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.element-1 {
  top: 15%;
  left: 3%;
  animation-delay: 0s;
}

.element-2 {
  top: 65%;
  left: 5%;
  animation-delay: 1s;
}

.element-3 {
  top: 25%;
  right: 5%;
  animation-delay: 2s;
}

.element-4 {
  top: 75%;
  right: 8%;
  animation-delay: 3s;
}

.element-5 {
  top: 40%;
  left: 10%;
  animation-delay: 1.5s;
}

.element-6 {
  top: 50%;
  right: 12%;
  animation-delay: 2.5s;
}

@keyframes floatElement {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% { 
    transform: translateY(-30px) rotate(10deg) scale(1.1);
  }
}

/* Hero graphic */
.hero-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  opacity: 0.2;
  z-index: 1;
}

.tech-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(0, 255, 255, 0.3);
  animation: rotateCircle 30s linear infinite;
}

.tech-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255, 0, 255, 0.1) 50%, transparent 51%);
  border-radius: 50%;
  animation: rotateCircleReverse 20s linear infinite;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 50%;
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: orbitSpin 15s linear infinite;
}

@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateCircleReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes orbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* ============================================
   MISSION SECTION (4 CARDS)
   ============================================ */
.mission-section {
  padding: 100px 0;
  width: 100%;
  position: relative;
}

.mission-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-card {
  background: rgba(20, 20, 25, 0.8);
  border-radius: 15px;
  padding: 30px 25px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: #00ffff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.mission-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.mission-card:hover:before {
  transform: translateX(0);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #00ffff;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  color: #0a0a0f;
  transform: rotateY(180deg);
}

.mission-card h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-family: 'Share Tech Mono', monospace;
}

.mission-card p {
  color: #b0b0b0;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   CREW SECTION - 4 MEMBERS
   ============================================ */
.crew-section {
  padding: 100px 0;
  width: 100%;
  position: relative;
}

.crew-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
}

.crew-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.crew-member {
  width: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.crew-member:nth-child(1) { animation-delay: 0.1s; }
.crew-member:nth-child(2) { animation-delay: 0.2s; }
.crew-member:nth-child(3) { animation-delay: 0.3s; }
.crew-member:nth-child(4) { animation-delay: 0.4s; }

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

.member-card {
  background: rgba(20, 20, 25, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(5px);
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
}

.member-header {
  padding: 30px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(10, 10, 15, 0.5);
  position: relative;
  overflow: hidden;
}

.member-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
}

.member-image {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.member-card:hover .member-photo {
  transform: scale(1.1);
}

/* Contact icons row - always visible */
.member-contacts-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 5px;
  flex-wrap: wrap;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ffff;
  text-decoration: none;
  font-size: 1.2rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  color: #0a0a0f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.member-header h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
}

.member-header h4 {
  color: #00ffff;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Share Tech Mono', monospace;
}

.member-info {
  padding: 20px 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-education {
  margin-bottom: 15px;
  text-align: left;
}

.member-education p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.member-education i {
  color: #00ffff;
  width: 18px;
}

.member-skills {
  margin-top: auto;
}

.skill {
  margin-bottom: 12px;
}

.skill-name {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 0.85rem;
  font-family: 'Share Tech Mono', monospace;
}

.skill-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.skill-bar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  animation: skillShine 2s infinite;
}

@keyframes skillShine {
  100% { transform: translateX(100%); }
}

.skill-level {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

/* ============================================
   ACHIEVEMENTS SECTION
   ============================================ */
.achievements-section {
  padding: 100px 0;
  width: 100%;
  position: relative;
  background: rgba(10, 10, 15, 0.7);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-card {
  background: rgba(20, 20, 25, 0.8);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.achievement-card:hover {
  transform: translateY(-5px);
  border-color: #00ffff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.achievement-card.featured {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  border-color: rgba(0, 255, 255, 0.4);
}

.achievement-card.nomination {
  border-left: 4px solid #ffd700;
}

.achievement-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #00ffff;
  overflow: hidden;
}

.achievement-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.achievement-content {
  flex: 1;
}

.achievement-content h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-family: 'Share Tech Mono', monospace;
}

.achievement-subtitle {
  color: #00ffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Share Tech Mono', monospace;
}

.achievement-description {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #b0b0b0;
}

.achievement-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00ffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 15px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
}

.achievement-link:hover {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  color: #0a0a0f;
}

.achievement-link i.fa-calculator {
  color: #ff00ff;
}

.achievement-link:hover i.fa-calculator {
  color: #0a0a0f;
}

.certificate-links {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.cert-link {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Share Tech Mono', monospace;
}

.cert-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ============================================
   JOIN SECTION WITH FORM
   ============================================ */
.join-section {
  padding: 100px 0;
  width: 100%;
  position: relative;
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.join-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #b0b0b0;
}

.join-form {
  background: rgba(20, 20, 25, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 30px;
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Share Tech Mono', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #1a1a1f;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ffff;
  background: #1a1a1f;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300ffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.form-group select option {
  background: #1a1a1f;
  color: white;
  padding: 10px;
}

.input-prefix {
  display: flex;
  align-items: center;
  background: #1a1a1f;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.input-prefix .prefix {
  padding: 12px 0 12px 15px;
  color: #00ffff;
  font-weight: 500;
  font-family: 'Share Tech Mono', monospace;
}

.input-prefix input {
  border: none;
  background: transparent;
  padding-left: 5px;
}

.input-prefix input:focus {
  background: transparent;
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: #888;
  font-size: 0.8rem;
  font-family: 'Share Tech Mono', monospace;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  color: #0a0a0f;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.social-links-large {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
}

.social-link:hover {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  color: #0a0a0f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* ============================================
   FOOTER - Fixed Desktop Layout
   ============================================ */
.site-footer {
  background: rgba(5, 5, 10, 0.95);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.site-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* First column - Logo section */
.footer-section:first-child {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
  flex-shrink: 0;
}

.footer-logo-text {
  flex: 1;
}

.footer-logo-text h3 {
  font-family: 'MOKOTO Glitch 1', 'Share Tech Mono', monospace;
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3px;
  font-size: 1.4rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.footer-logo-text p {
  color: #888;
  font-size: 0.75rem;
  font-family: 'Share Tech Mono', monospace;
}

.footer-description {
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #b0b0b0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  transform: translateY(-3px);
  color: #0a0a0f;
}

/* Footer sections */
.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
}

.footer-section h4:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #00ffff;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px #00ffff;
}

.footer-section:hover h4:after {
  width: 60px;
  background: #ff00ff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #00ffff;
  transform: translateX(5px);
}

.footer-links a i {
  color: #00ffff;
  font-size: 0.9rem;
}

.institution-link {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.institution-link:hover {
  color: #ff00ff;
  text-decoration: underline;
}

.lang-indicator {
  color: #888;
  font-size: 0.7rem;
  margin-left: 4px;
  font-family: 'Share Tech Mono', monospace;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  color: #888;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin-bottom: 5px;
}

.footer-bottom .made-with i {
  color: #ff00ff;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  color: #0a0a0f;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9997;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
  overflow: hidden;
}

.back-to-top:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.back-to-top:hover:before {
  left: 100%;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.5); }
  70% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.3);
}

/* ============================================
   PAGE CONTENT ANIMATION
   ============================================ */
#pageContent {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

#pageContent.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================ */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
}

/* Desktop (1024px to 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .mission-grid {
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 20px;
  }
}

/* Tablet Landscape and below - HAMBURGER MENU ACTIVATES */
@media (max-width: 1024px) {
  /* Navigation becomes hamburger */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(0, 255, 255, 0.3);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-link {
    padding: 15px 0;
    font-size: 1.1rem;
    width: 100%;
    justify-content: flex-start;
  }
  
  .nav-cta {
    margin-top: 20px;
    justify-content: center;
    width: 100%;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Adjust navbar for tablet */
  .navbar {
    padding: 15px 5%;
    height: 70px;
  }
  
  .logo {
    width: 35px;
    height: 35px;
  }
  
  .logo-name {
    font-size: 1.5rem;
  }
  
  .logo-tagline {
    font-size: 0.7rem;
  }
  
  .language-toggle {
    margin-left: 10px;
  }
  
  /* Hero section adjustments */
  .hero-section {
    padding: 150px 0 80px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-graphic {
    width: 500px;
    height: 500px;
  }
  
  /* Mission grid becomes 2x2 */
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    gap: 20px;
  }
  
  /* Achievements grid becomes 2x2 */
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
  
  /* Footer adjustments */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-section:first-child {
    max-width: 100%;
    grid-column: span 2;
  }
  
  .footer-logo {
    justify-content: flex-start;
  }
}

/* Tablet Portrait (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .crew-grid {
    max-width: 600px;
  }
  
  .achievements-grid {
    gap: 20px;
  }
  
  .achievement-card {
    padding: 25px;
  }
  
  .floating-element {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .element-5, .element-6 {
    display: none;
  }
}

/* Mobile Landscape and Portrait (767px and below) */
@media (max-width: 767px) {
  /* Navigation */
  .navbar {
    padding: 12px 5%;
    height: 65px;
  }
  
  .logo {
    width: 30px;
    height: 30px;
  }
  
  .logo-name {
    font-size: 1.3rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .language-toggle {
    margin-left: 5px;
  }
  
  .lang-btn {
    font-size: 0.8rem;
    padding: 4px 6px;
  }
  
  .nav-links {
    width: 280px;
    padding: 80px 25px 25px;
  }
  
  .hamburger {
    padding: 8px;
  }
  
  .bar {
    width: 22px;
  }
  
  /* Hero section */
  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 25px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-graphic {
    width: 300px;
    height: 300px;
    opacity: 0.1;
  }
  
  /* Floating elements - hide most on mobile */
  .floating-element {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .element-1 { top: 10%; left: 2%; }
  .element-2 { top: 70%; left: 3%; }
  .element-3 { top: 20%; right: 2%; }
  .element-4 { top: 80%; right: 3%; }
  .element-5, .element-6 { display: none; }
  
  /* Mission section */
  .mission-section {
    padding: 60px 0;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  /* Crew section */
  .crew-section {
    padding: 60px 0;
  }
  
  .crew-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 25px;
  }
  
  .member-image {
    width: 140px;
    height: 140px;
  }
  
  .member-header h3 {
    font-size: 1.3rem;
  }
  
  .member-header h4 {
    font-size: 0.9rem;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .member-education p {
    font-size: 0.85rem;
  }
  
  /* Achievements section */
  .achievements-section {
    padding: 60px 0;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 20px;
  }
  
  .achievement-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }
  
  .achievement-icon {
    margin-bottom: 10px;
  }
  
  .certificate-links {
    justify-content: center;
  }
  
  /* Join section */
  .join-section {
    padding: 60px 0;
  }
  
  .join-form {
    padding: 25px 20px;
  }
  
  .social-links-large {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  /* Footer */
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section:first-child {
    grid-column: span 1;
    max-width: 100%;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links li {
    justify-content: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  /* Preloader */
  .preloader-logo {
    width: 150px;
  }
  
  #preloader-typewriter {
    font-size: 2rem;
  }
  
  .preloader-subtitle {
    font-size: 0.8rem;
  }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
  .logo-name {
    font-size: 1.1rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
  
  .lang-btn {
    font-size: 0.7rem;
    padding: 3px 5px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 240px;
  }
  
  .member-image {
    width: 120px;
    height: 120px;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .preloader-logo {
    width: 120px;
  }
  
  #preloader-typewriter {
    font-size: 1.6rem;
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-section {
    padding: 100px 0 40px;
    min-height: auto;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 20px;
  }
  
  .nav-links {
    padding-top: 70px;
    overflow-y: auto;
  }
  
  .floating-element {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .preloader-content {
    flex-direction: row;
    gap: 20px;
  }
  
  .preloader-logo {
    width: 100px;
    margin-bottom: 0;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top,
  .mouse-trail,
  .preloader-overlay,
  .loading-bar,
  .hero-actions,
  .floating-elements,
  .hero-graphic,
  .join-section,
  .social-icons {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .container {
    max-width: 100% !important;
  }
  
  .member-card,
  .mission-card,
  .achievement-card {
    border: 1px solid #ddd !important;
    background: white !important;
    box-shadow: none !important;
  }
}