* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a0f1a 0%, #0a0a1a 50%, #0b0b2a 100%);
  color: #fff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Animated Glowing Background with FreeFire vibe */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(100, 80, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(180, 100, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(80, 120, 255, 0.1) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(100, 80, 255, 0.03) 0px, rgba(100, 80, 255, 0.03) 2px, transparent 2px, transparent 8px);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* FreeFire Style Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(100, 80, 255, 0.6), rgba(180, 100, 255, 0.2));
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* Custom Scrollbar - Blue/Purple Gradient */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a1a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5b3cff, #9b4dff, #c55eff);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6f4cff, #ae5dff, #d56eff);
}

/* Navbar - Modern Glassmorphism */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(10, 10, 26, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 60, 255, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(91, 60, 255, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5b3cff, #9b4dff, #c55eff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(91, 60, 255, 0.6);
  transition: all 0.3s ease;
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(91, 60, 255, 0.5); }
  50% { box-shadow: 0 0 30px rgba(155, 77, 255, 0.9); }
}

.logo-img img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

.logo h1 {
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff, #b07cff, #8b5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(91, 60, 255, 0.3);
}

/* Nav Links with Gradient Boxes - Blue/Purple */
.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(91, 60, 255, 0.2), rgba(155, 77, 255, 0.1));
  border: 1px solid rgba(91, 60, 255, 0.5);
  backdrop-filter: blur(4px);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
  background: linear-gradient(135deg, #5b3cff, #9b4dff, #c55eff);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(91, 60, 255, 0.6);
  transform: translateY(-2px);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Hero Section */
.hero {
  padding: 4rem 0 2.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(91, 60, 255, 0.3), rgba(155, 77, 255, 0.2));
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-size: 0.9rem;
  border: 1px solid rgba(155, 77, 255, 0.6);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(91, 60, 255, 0.3);
  font-weight: 600;
}

.hero h2 {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, #fff, #b07cff, #7c4dff, #c55eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(91, 60, 255, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1.5rem auto;
  color: #d0c0ff;
}

/* Info Cards with Purple/Blue Glow */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
}

.card {
  background: rgba(20, 18, 40, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 1.8rem;
  width: 280px;
  text-align: center;
  border: 1px solid rgba(91, 60, 255, 0.5);
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(91, 60, 255, 0.3);
  border-color: rgba(155, 77, 255, 0.8);
}

.card i {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #7c4dff, #c55eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Orbitron', monospace;
}

.card p {
  font-size: 0.95rem;
  color: #c0b0ff;
}

.feature-text {
  background: linear-gradient(135deg, rgba(91, 60, 255, 0.15), rgba(155, 77, 255, 0.1));
  padding: 2rem;
  border-radius: 36px;
  margin: 2rem 0;
  border-left: 5px solid #7c4dff;
  text-align: center;
  backdrop-filter: blur(4px);
}

.btn-apply {
  display: inline-block;
  background: linear-gradient(95deg, #5b3cff, #9b4dff, #c55eff);
  padding: 1rem 2.8rem;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 60px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(91, 60, 255, 0.5);
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
  font-family: 'Orbitron', monospace;
}

.btn-apply::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;
}

.btn-apply:hover::before {
  left: 100%;
}

.btn-apply:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(155, 77, 255, 0.8);
}

/* Apply Form Section */
.apply-section {
  max-width: 700px;
  margin: 3rem auto;
  background: rgba(20, 18, 40, 0.85);
  border-radius: 32px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(91, 60, 255, 0.6);
  box-shadow: 0 0 40px rgba(91, 60, 255, 0.2);
}

.apply-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, #fff, #b07cff, #c55eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #b07cff;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(91, 60, 255, 0.5);
  background: rgba(10, 10, 26, 0.8);
  color: white;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #9b4dff;
  box-shadow: 0 0 12px rgba(155, 77, 255, 0.5);
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: normal;
  color: #ddd;
}

button {
  background: linear-gradient(95deg, #5b3cff, #9b4dff, #c55eff);
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Orbitron', monospace;
  box-shadow: 0 4px 15px rgba(91, 60, 255, 0.4);
}

button:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 25px rgba(155, 77, 255, 0.6);
}

.status-msg {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.back-home {
  text-align: center;
  margin-top: 1.5rem;
}

.back-home a {
  color: #b07cff;
  text-decoration: none;
  transition: 0.2s;
}

.back-home a:hover {
  text-shadow: 0 0 8px #b07cff;
}

/* Footer with Blue/Purple Gradient Text */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
  background: linear-gradient(180deg, rgba(10, 10, 30, 0.9), rgba(5, 5, 20, 0.95));
  border-top: 1px solid rgba(91, 60, 255, 0.4);
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  margin: 0.4rem 0;
  color: #b0a0ff;
}

.footer-content a {
  color: #b07cff;
  text-decoration: none;
  transition: 0.2s;
}

.footer-content a:hover {
  text-shadow: 0 0 6px #b07cff;
}

.dev-glow {
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(135deg, #5b3cff, #9b4dff, #c55eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 700px) {
  .hero h2 { font-size: 2.3rem; }
  .nav-links a { padding: 0.5rem 1.2rem; margin-left: 0; }
  nav { padding: 0.8rem 1rem; flex-wrap: wrap; gap: 1rem; }
  .container { padding: 0 1rem; }
  .logo h1 { font-size: 1.3rem; }
  .info-grid { gap: 1rem; }
  .card { width: 100%; max-width: 280px; }
  .apply-section { margin: 2rem 1rem; padding: 1.5rem; }
}