/* ================================================
   RESORT LIFE RP - Main Stylesheet
   ================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #000000;
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a855f7, #ec4899);
  border-radius: 4px;
}

/* === ANIMATIONS === */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-20px) rotate(45deg); }
}

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

@keyframes glow {
  0%, 100% { filter: blur(80px) opacity(0.5); }
  50% { filter: blur(100px) opacity(0.7); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

/* === BACKGROUND EFFECTS === */
.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  animation: glow 8s ease-in-out infinite;
}

.bg-glow-1 {
  top: 10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.35) 0%, transparent 70%);
}

.bg-glow-2 {
  bottom: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
  animation-delay: 2s;
}

.bg-glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
  animation-delay: 4s;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(147, 51, 234, 0.3);
  box-shadow: 0 4px 30px rgba(147, 51, 234, 0.2);
  animation: slideDown 0.5s ease-out;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06b6d4, #a855f7, #ec4899);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.7);
}

.logo-icon span {
  font-size: 28px;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  color: white;
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-text-gradient {
  background: linear-gradient(90deg, #06b6d4, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: transparent;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.nav-item:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.nav-item.active {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.nav-item svg {
  width: 16px;
  height: 16px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-count {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

/* Serveur en ligne - Vert */
.player-count.online {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.player-count.online .player-dot {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.player-count.online .player-text {
  color: #10b981;
}

/* Serveur hors ligne - Rouge */
.player-count.offline {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

.player-count.offline .player-dot {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: none;
}

.player-count.offline .player-text {
  color: #ef4444;
}

.player-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.player-text {
  color: #10b981;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #06b6d4, #a855f7, #ec4899);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.7);
}

.btn-play svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(147, 51, 234, 0.3);
  padding: 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
}

.mobile-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* === MAIN CONTENT === */
main {
  position: relative;
  z-index: 10;
  padding-top: 80px;
}

/* === HERO SECTION === */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  border: 2px solid rgba(168, 85, 247, 0.3);
  pointer-events: none;
}

.hero-decor-1 {
  top: 15%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation: float 4s ease-in-out infinite;
}

.hero-decor-2 {
  bottom: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-color: rgba(6, 182, 212, 0.3);
  animation: float2 3s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  margin-bottom: 40px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

/* Hero badge offline state */
.hero-badge.offline .hero-badge-dot {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: none;
}

.hero-badge-text {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.hero-title {
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Orbitron', monospace;
}

.hero-title-gradient {
  background: linear-gradient(90deg, #06b6d4, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(168, 85, 247, 0.5));
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(90deg, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #06b6d4, #a855f7, #ec4899);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(168, 85, 247, 0.5);
}

.btn-secondary svg {
  color: #5865F2;
}

.btn-small {
  padding: 12px 24px;
  font-size: 14px;
}

/* === STATS === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.stat-card svg {
  width: 24px;
  height: 24px;
  color: #a855f7;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 28px;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-family: 'Rajdhani', sans-serif;
}

/* === SECTIONS === */
section {
  padding: 80px 24px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.2);
  border-radius: 50px;
  color: #a855f7;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
}

.section-title-gradient {
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-center {
  text-align: center;
  margin-top: 48px;
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-icon.blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.feature-icon.purple { background: linear-gradient(135deg, #a855f7, #ec4899); }
.feature-icon.red { background: linear-gradient(135deg, #ef4444, #f97316); }
.feature-icon.pink { background: linear-gradient(135deg, #ec4899, #ef4444); }
.feature-icon.yellow { background: linear-gradient(135deg, #f59e0b, #eab308); }
.feature-icon.green { background: linear-gradient(135deg, #10b981, #14b8a6); }

.feature-title {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 8px;
}

.feature-desc {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.5;
}

/* === CATEGORY SECTIONS === */
.category-section {
  margin-bottom: 60px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.category-bar {
  width: 4px;
  height: 40px;
  border-radius: 4px;
}

.category-bar.blue { background: linear-gradient(180deg, #06b6d4, #3b82f6); }
.category-bar.green { background: linear-gradient(180deg, #10b981, #14b8a6); }
.category-bar.red { background: linear-gradient(180deg, #ef4444, #f97316); }

.category-title {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.category-icon svg {
  width: 24px;
  height: 24px;
}

.category-icon.blue { background: rgba(6, 182, 212, 0.2); }
.category-icon.blue svg { color: #06b6d4; }
.category-icon.green { background: rgba(16, 185, 129, 0.2); }
.category-icon.green svg { color: #10b981; }
.category-icon.red { background: rgba(239, 68, 68, 0.2); }
.category-icon.red svg { color: #ef4444; }

.category-card-title {
  font-size: 17px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 8px;
}

.category-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* === DISCORD CTA === */
.discord-cta {
  max-width: 1000px;
  margin: 0 auto;
}

.discord-card {
  position: relative;
  padding: 60px;
  border-radius: 24px;
  overflow: hidden;
}

.discord-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5865F2, #a855f7, #ec4899);
  opacity: 0.9;
}

.discord-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.discord-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.discord-text h3 {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  margin-bottom: 12px;
}

.discord-text p {
  font-size: 18px;
  opacity: 0.9;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: white;
  border-radius: 14px;
  color: #5865F2;
  font-size: 17px;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-discord:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* === FILTER BAR === */
.filter-bar {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  background: transparent;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: white;
}

.filter-btn.active {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
}

/* === JOB GRID === */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
}

.job-card.illegal {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.job-card.illegal:hover {
  border-color: rgba(239, 68, 68, 0.5);
}

.job-header {
  display: flex;
  gap: 16px;
}

.job-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-icon.legal {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.job-icon.illegal {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.job-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.job-content {
  flex: 1;
}

.job-title {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 8px;
}

.job-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.job-info {
  font-size: 13px;
  margin-bottom: 4px;
}

.job-info-label {
  color: rgba(255,255,255,0.4);
}

.job-info-value {
  color: #10b981;
  font-weight: 600;
}

/* === ACCORDION (RULES) === */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255,255,255,0.05);
}

.accordion-header svg {
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 24px 24px;
}

.accordion-item.open .accordion-content {
  display: block;
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255,255,255,0.7);
}

.rule-dot {
  width: 6px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  flex-shrink: 0;
}

.rules-notice {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === TEAM GRID === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
}

.team-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 12px;
  color: white;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 4px;
}

.team-role {
  color: rgba(255,255,255,0.5);
}

.team-recruit {
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  text-align: center;
}

.team-recruit h3 {
  font-size: 32px;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  margin-bottom: 16px;
}

.team-recruit p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

/* === APPLY GRID === */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.apply-card {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-card:hover,
.apply-card.selected {
  background: rgba(168, 85, 247, 0.15);
  border-color: #a855f7;
}

.apply-header {
  display: flex;
  gap: 16px;
}

.apply-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apply-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.apply-content {
  flex: 1;
}

.apply-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.apply-title {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}

.apply-status {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}

.apply-status.open {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.apply-status.limited {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.apply-details {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.apply-card.selected .apply-details {
  display: block;
}

.apply-reqs-title {
  color: #a855f7;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 12px;
}

.apply-req {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.apply-req-dot {
  width: 4px;
  height: 4px;
  background: #a855f7;
  border-radius: 50%;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-apply:hover {
  transform: scale(1.05);
}

/* === PROCESS CARD === */
.process-card {
  padding: 48px;
  background: rgba(255,255,255,0.03);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.process-title {
  font-size: 28px;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  text-align: center;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
}

.process-number {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.process-step-title {
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 4px;
}

.process-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* === FOOTER === */
footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(147, 51, 234, 0.2);
  padding: 40px 24px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #06b6d4, #a855f7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon span {
  font-weight: 900;
  font-family: 'Orbitron', monospace;
}

.footer-logo-text {
  font-weight: 800;
  font-family: 'Orbitron', monospace;
  letter-spacing: 2px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  display: flex;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #a855f7;
  border-color: #a855f7;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 200;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .feature-grid,
  .team-grid,
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-container {
    height: 70px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-icon span {
    font-size: 22px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .nav-right {
    display: none;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .hero-title {
    font-size: 50px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .feature-grid,
  .team-grid,
  .job-grid,
  .apply-grid {
    grid-template-columns: 1fr;
  }
  
  .discord-content {
    flex-direction: column;
    text-align: center;
  }
  
  .discord-text h3 {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .category-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 16px;
  }
}
