/* ==========================================================================
   LVG ESPORTS - Modern Aesthetic Style
   ========================================================================== */
   
:root {
  /* Colors */
  --bg-dark: #000000;
  --bg-darker: #050505;
  --bg-card: rgba(15, 10, 25, 0.8);
  
  --primary-glow: #a600ff;
  --secondary-glow: #ffffff;
  --accent-blue: #7000ff;
  
  --text-main: #ffffff;
  --text-muted: #8b9bb4;
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  
  /* Spacing & Sizes */
  --nav-height: 80px;
  --border-radius: 12px;
  
  /* Utilities */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(166, 0, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(112, 0, 255, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Glassmorphism Panel Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  z-index: 2;
}

/* Typography Enhancements */
.glow-text {
  color: var(--primary-glow);
  text-shadow: 0 0 10px rgba(166, 0, 255, 0.4), 0 0 20px rgba(166, 0, 255, 0.2);
}

h1, h2, h3 {
  font-family: var(--font-display);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-blue), var(--primary-glow));
  color: #000;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 12px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(166, 0, 255, 0.3);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 0, 255, 0.5);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-main);
  font-weight: 600;
  font-family: var(--font-main);
  padding: 12px 28px;
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background: rgba(255,255,255,0.05);
}

.btn-text {
  color: var(--primary-glow);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-text:hover {
  text-shadow: 0 0 8px rgba(166, 0, 255, 0.6);
  padding-left: 5px;
}

/* Pulse Animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(166, 0, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(166, 0, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 0, 255, 0); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(2, 3, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.brand-logo span {
  color: var(--primary-glow);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-glow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-glow);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(5,7,10,0.2) 0%, rgba(5,7,10,1) 100%),
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxwYXRoIGQ9Ik0wLDBMMjAsMjAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIgc3Ryb2tlLXdpZHRoPSIxIi8+Cjwvc3ZnPg==') repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.hero .subtitle {
  color: var(--primary-glow);
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero .title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero .description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.hero-graphics {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px; height: 400px;
  background: var(--primary-glow);
  top: -100px; right: -100px;
}

.orb-2 {
  width: 300px; height: 300px;
  background: var(--secondary-glow);
  bottom: -50px; left: -100px;
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

/* About / Vision Mission Section */
.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  padding: 40px;
  transition: var(--transition);
  border-top: 1px solid rgba(166, 0, 255, 0.2);
}

.info-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--primary-glow);
  box-shadow: 0 15px 40px rgba(166, 0, 255, 0.1);
}

.info-card h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  letter-spacing: 1px;
}

.info-card p {
  color: var(--text-muted);
}

.icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(166, 0, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  margin-bottom: 20px;
}

.icon-wrap.accent-purple {
  background: rgba(112, 0, 255, 0.1);
  color: #b900ff;
}

#missionCard:hover {
  border-top-color: #b900ff;
  box-shadow: 0 15px 40px rgba(112, 0, 255, 0.1);
}

/* Teams Section */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.team-image {
  height: 200px;
  background: #111;
  position: relative;
  overflow: hidden;
}

.grid-pattern {
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.8;
  transition: var(--transition);
}

.team-card:hover .image-overlay {
  opacity: 1;
  background: rgba(0,0,0,0.2);
}

.team-card:first-child .team-image {
  background: linear-gradient(135deg, #111, rgba(255, 0, 60, 0.2));
}

.team-image.purple-tint {
  background: linear-gradient(135deg, #111, rgba(112, 0, 255, 0.2));
}

.team-image.cyan-tint {
  background: linear-gradient(135deg, #111, rgba(166, 0, 255, 0.2));
}

.team-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.team-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Contact Section */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.social-btn:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,0.05);
}

.social-btn.facebook:hover { border-color: #1877F2; color: #1877F2; }
.social-btn.instagram:hover { border-color: #E1306C; color: #E1306C; }
.social-btn.tiktok:hover { border-color: #25F4EE; color: #25F4EE; }

.contact-form {
  padding: 40px;
  border-top: 2px solid var(--primary-glow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-main);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-glow);
  box-shadow: 0 0 10px rgba(166, 0, 255, 0.1);
}

.w-100 {
  width: 100%;
}

/* Footer */
.footer {
  border-top: var(--glass-border);
  background: #020305;
  padding: 30px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .title { font-size: 3rem; }
  .split-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero .title { font-size: 2.5rem; }
  .hero .subtitle { font-size: 1rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
}
