/* Neon Rouge, Cyan & Blue-Black Theme - RSN Branding */
:root {
  --neon-rouge: #FF006E;
  --neon-cyan: #00D9FF;
  --blue-black: #0a1128;
  --text-light: #e0f0ff;
  --glow-shadow: 0 0 10px rgba(0, 217, 255, 0.6), 0 0 20px rgba(255, 0, 110, 0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, var(--blue-black) 0%, #1a2a3a 50%, #0f1b2e 100%);
  color: var(--text-light);
  font-family: 'Montserrat', 'Avenir Next', sans-serif;
  line-height: 1.6;
}

/* Main Content */
main {
  width: 100%;
  max-width: 1000px;
  padding: 2rem 1rem;
  margin: 0 auto;
}

section {
  text-align: center;
  margin: 2rem auto;
  padding: 2rem 1rem;
  border-radius: 12px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
  margin: 1rem 0;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 700;
}

p {
  text-align: center;
  margin: 1rem auto;
  max-width: 800px;
}

/* Cards & Containers */
.card {
  background-color: rgba(26, 42, 58, 0.8);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--glow-shadow), inset 0 0 10px rgba(0, 217, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 1rem auto;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.8), 0 0 30px rgba(255, 0, 110, 0.6), inset 0 0 15px rgba(255, 0, 110, 0.3);
  border-color: var(--neon-rouge);
}

.card-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.drop {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #39ff14;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.95), 0 0 14px rgba(57, 255, 20, 0.7);
  pointer-events: none;
}

section {
  width: 100%;
  margin: 2rem auto;
}

/* Lists */
ul, ol {
  text-align: center;
  list-style-position: inside;
  margin: 1rem auto;
}

/* Links */
a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

a:hover, a:focus {
  color: var(--neon-rouge);
  text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .card-container {
    gap: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  main {
    padding: 1rem 0.5rem;
  }

  section {
    padding: 1rem 0.5rem;
  }

  .card {
    padding: 1.5rem 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
