@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --primary: #ea580c; /* CS2 Tactical Orange / Faceit */
  --secondary: #64748b; /* Slate Gray */
  --accent: #f59e0b; /* Amber */
  --bg-dark: #0a0a0c; /* Very dark grid background */
  --glass-bg: rgba(20, 20, 25, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
}

/* Tactical Progress Bar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--primary);
  z-index: 100;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--primary);
}

body {
  background-color: var(--bg-dark);
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  position: relative;
  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: 40px 40px;
}

.font-heading {
  font-family: 'Rajdhani', sans-serif;
}

/* tsparticles background */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Tactical Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 2px; /* Sharp edges */
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(234, 88, 12, 0.5); /* Orange hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Tactical Highlights */
.text-neon {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 5px rgba(234, 88, 12, 0.5);
}

.text-neon-blue {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 5px rgba(100, 116, 139, 0.5);
}

.neon-border {
  border: 1px solid var(--primary);
  box-shadow: none;
}

.neon-border:hover {
  box-shadow: inset 2px 0 0 var(--primary);
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  position: relative;
  z-index: 1;
  color: white;
  border-radius: 0px; /* Sharp edge */
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  position: relative;
  color: white;
  border-radius: 0px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(234, 88, 12, 0.1);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
}

/* HLTV Style Stat Card */
/* HLTV Style Stat Card */
.hltv-stat-card {
  background: rgba(20, 20, 25, 0.9);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--primary);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.hltv-stat-card .stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.hltv-stat-card .stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.hltv-stat-card:hover {
  border-top-color: var(--accent);
  transform: scale(1.02);
  background: rgba(30, 30, 40, 0.9);
}

/* Timeline Custom Styles */
.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
  transform-origin: top;
}

.timeline-dot {
  position: absolute;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 0; /* Square for tactical feel */
  background: var(--primary);
  border: 2px solid var(--bg-dark);
  z-index: 1;
}

/* Sponsorship Packages Grid */
.sponsorship-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.sponsorship-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.sponsorship-card:hover::after {
  transform: translateX(0);
}

.sponsorship-card:hover {
  border-color: rgba(234, 88, 12, 0.5);
}

.sponsorship-card.premium {
  border: 1px solid var(--accent);
}

.sponsorship-card.premium:hover {
  transform: translateY(-5px);
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
  color: var(--primary); /* Removed gradient for a more solid tactical feel */
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
