/* =========================================
   XAVIROTA - Main Stylesheet
   Prefix: xv-
   ========================================= */

:root {
  --xv-bg-primary: #0a0c14;
  --xv-bg-secondary: #0f1220;
  --xv-bg-card: #131829;
  --xv-bg-card-hover: #1a2035;
  --xv-accent-cyan: #00e5ff;
  --xv-accent-purple: #7c3aed;
  --xv-accent-green: #00ff88;
  --xv-accent-orange: #ff6b35;
  --xv-text-primary: #e8eaf6;
  --xv-text-secondary: #8892b0;
  --xv-text-muted: #4a5568;
  --xv-border: rgba(0, 229, 255, 0.12);
  --xv-border-hover: rgba(0, 229, 255, 0.4);
  --xv-gradient-hero: linear-gradient(135deg, #0a0c14 0%, #0f1220 50%, #12102a 100%);
  --xv-gradient-accent: linear-gradient(135deg, #00e5ff, #7c3aed);
  --xv-gradient-green: linear-gradient(135deg, #00ff88, #00bcd4);
  --xv-shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --xv-shadow-glow: 0 0 30px rgba(0, 229, 255, 0.15);
  --xv-radius: 12px;
  --xv-radius-lg: 20px;
  --xv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  background-color: var(--xv-bg-primary);
  color: var(--xv-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--xv-text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  font-family: 'Inter', 'Rajdhani', sans-serif;
  color: var(--xv-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--xv-accent-cyan);
  text-decoration: none;
  transition: var(--xv-transition);
}

a:hover { color: #fff; }

/* ---- LAYOUT ---- */
.xv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.xv-section {
  padding: 80px 0;
}

.xv-section-alt {
  background-color: var(--xv-bg-secondary);
  padding: 80px 0;
}

/* ---- BUTTONS ---- */
.xv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--xv-accent-cyan), var(--xv-accent-purple));
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--xv-transition);
  position: relative;
  overflow: hidden;
}

.xv-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--xv-accent-purple), var(--xv-accent-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.xv-btn-primary:hover::before { opacity: 1; }
.xv-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 229, 255, 0.35); color: #fff; }
.xv-btn-primary span { position: relative; z-index: 1; }

.xv-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--xv-accent-cyan);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--xv-accent-cyan);
  cursor: pointer;
  transition: var(--xv-transition);
}

.xv-btn-secondary:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
  color: var(--xv-accent-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

/* ---- SECTION HEADERS ---- */
.xv-section-label {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--xv-accent-cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.xv-section-title {
  margin-bottom: 1rem;
}

.xv-section-title .xv-gradient-text {
  background: var(--xv-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ---- NAVBAR ---- */
.xv-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--xv-transition);
  background: transparent;
}

.xv-navbar.xv-scrolled {
  background: rgba(10, 12, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--xv-border);
  padding: 0.6rem 0;
}

.xv-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.xv-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--xv-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.xv-logo:hover { opacity: 0.85; }

.xv-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.xv-nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--xv-text-secondary);
  letter-spacing: 0.05em;
  transition: var(--xv-transition);
  position: relative;
}

.xv-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--xv-accent-cyan);
  transition: width 0.3s;
}

.xv-nav-links a:hover { color: var(--xv-text-primary); }
.xv-nav-links a:hover::after { width: 100%; }

.xv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.xv-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--xv-text-primary);
  transition: var(--xv-transition);
}

.xv-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 12, 20, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.xv-mobile-nav.active { display: flex; }

.xv-mobile-nav a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--xv-text-primary);
  font-weight: 700;
}

.xv-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--xv-text-primary);
  cursor: pointer;
}

/* ---- HERO ---- */
.xv-hero-gaming {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--xv-gradient-hero);
  padding-top: 80px;
}

.xv-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.xv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.xv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xv-accent-cyan);
  margin-bottom: 1.5rem;
}

.xv-hero-badge .xv-pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--xv-accent-green);
  border-radius: 50%;
  animation: xv-pulse-anim 1.5s infinite;
}

@keyframes xv-pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.xv-hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.xv-hero-highlight {
  background: var(--xv-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xv-hero-desc {
  font-size: 1.1rem;
  color: var(--xv-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}

.xv-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.xv-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--xv-border);
  flex-wrap: wrap;
}

.xv-hero-stat-item .xv-stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--xv-accent-cyan);
}

.xv-hero-stat-item .xv-stat-label {
  font-size: 0.85rem;
  color: var(--xv-text-muted);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.xv-hero-image-block {
  position: relative;
  z-index: 2;
}

.xv-hero-image-block img {
  width: 100%;
  max-width: 550px;
  border-radius: var(--xv-radius-lg);
  border: 1px solid var(--xv-border);
  box-shadow: var(--xv-shadow-glow), var(--xv-shadow-card);
}

.xv-hero-float-card {
  position: absolute;
  background: rgba(19, 24, 41, 0.95);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  animation: xv-float 3s ease-in-out infinite;
}

.xv-hero-float-card:nth-child(2) { animation-delay: 1s; }
.xv-hero-float-card:nth-child(3) { animation-delay: 2s; }

@keyframes xv-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.xv-float-icon {
  width: 36px;
  height: 36px;
  background: var(--xv-gradient-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.xv-float-text .xv-float-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--xv-text-primary);
}

.xv-float-text .xv-float-sub {
  font-size: 0.7rem;
  color: var(--xv-text-muted);
}

/* ---- QUIZ SECTION ---- */
.xv-quiz-section {
  padding: 80px 0;
  background: var(--xv-bg-secondary);
}

.xv-quiz-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.xv-quiz-tab {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--xv-border);
  background: transparent;
  color: var(--xv-text-secondary);
  cursor: pointer;
  transition: var(--xv-transition);
}

.xv-quiz-tab.active,
.xv-quiz-tab:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--xv-accent-cyan);
  color: var(--xv-accent-cyan);
}

.xv-quiz-panel { display: none; }
.xv-quiz-panel.active { display: block; }

.xv-quiz-card {
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.xv-quiz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--xv-gradient-accent);
}

.xv-quiz-progress-bar {
  background: rgba(255, 255, 255, 0.08);
  height: 6px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.xv-quiz-progress-fill {
  height: 100%;
  background: var(--xv-gradient-accent);
  border-radius: 50px;
  transition: width 0.5s ease;
  width: 0%;
}

.xv-quiz-counter {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--xv-text-muted);
  margin-bottom: 1.5rem;
}

.xv-quiz-question {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--xv-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.xv-quiz-options {
  display: grid;
  gap: 0.75rem;
}

.xv-quiz-option {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius);
  padding: 0.9rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--xv-text-secondary);
  cursor: pointer;
  transition: var(--xv-transition);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.xv-quiz-option:hover {
  border-color: var(--xv-accent-cyan);
  color: var(--xv-text-primary);
  background: rgba(0, 229, 255, 0.05);
}

.xv-quiz-option.correct {
  border-color: var(--xv-accent-green);
  background: rgba(0, 255, 136, 0.1);
  color: var(--xv-accent-green);
}

.xv-quiz-option.incorrect {
  border-color: var(--xv-accent-orange);
  background: rgba(255, 107, 53, 0.1);
  color: var(--xv-accent-orange);
}

.xv-quiz-option.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.xv-option-letter {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.xv-quiz-feedback {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--xv-radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  display: none;
}

.xv-quiz-feedback.show { display: block; }
.xv-quiz-feedback.correct-fb { background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.3); color: var(--xv-accent-green); }
.xv-quiz-feedback.incorrect-fb { background: rgba(255, 107, 53, 0.1); border: 1px solid rgba(255, 107, 53, 0.3); color: var(--xv-accent-orange); }

.xv-quiz-next {
  margin-top: 1.5rem;
  display: none;
}

.xv-quiz-next.show { display: block; }

.xv-quiz-result {
  text-align: center;
  padding: 2rem;
  display: none;
}

.xv-quiz-result.show { display: block; }

.xv-result-score {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: var(--xv-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.xv-result-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: var(--xv-text-secondary);
  margin-bottom: 1.5rem;
}

/* ---- SKILL WIDGET ---- */
.xv-skill-widget {
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.xv-skill-widget::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
  border-radius: 50%;
}

.xv-skill-select-group {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.xv-skill-select-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xv-text-muted);
  margin-bottom: 0.4rem;
}

.xv-skill-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius);
  padding: 0.75rem 1rem;
  color: var(--xv-text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--xv-transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300e5ff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.xv-skill-select:focus {
  outline: none;
  border-color: var(--xv-accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.xv-skill-select option { background: var(--xv-bg-card); }

.xv-skill-result {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--xv-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}

.xv-skill-result.show { display: block; }

.xv-skill-result-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--xv-accent-cyan);
  margin-bottom: 0.75rem;
}

.xv-skill-result-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: var(--xv-text-secondary);
  line-height: 1.7;
}

.xv-skill-badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.xv-skill-badge {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #a78bfa;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

/* ---- TIMELINE ---- */
.xv-timeline-wrap {
  position: relative;
  padding: 2rem 0;
}

.xv-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--xv-accent-cyan), transparent);
  transform: translateX(-50%);
}

.xv-timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.xv-timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.xv-timeline-item:nth-child(odd) {
  flex-direction: row;
}

.xv-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.xv-timeline-content {
  flex: 1;
  max-width: calc(50% - 2.5rem);
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius);
  padding: 1.5rem;
  transition: var(--xv-transition);
}

.xv-timeline-content:hover {
  border-color: var(--xv-border-hover);
  transform: translateY(-3px);
}

.xv-timeline-year {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--xv-accent-cyan);
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}

.xv-timeline-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--xv-text-primary);
  margin-bottom: 0.5rem;
}

.xv-timeline-desc {
  font-size: 0.9rem;
  color: var(--xv-text-secondary);
  line-height: 1.6;
}

.xv-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--xv-accent-cyan);
  border-radius: 50%;
  border: 3px solid var(--xv-bg-secondary);
  box-shadow: 0 0 10px var(--xv-accent-cyan);
  margin-top: 1.5rem;
}

/* ---- ARTICLE CARD ---- */
.xv-article-card {
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  overflow: hidden;
  transition: var(--xv-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.xv-article-card:hover {
  transform: translateY(-5px);
  border-color: var(--xv-border-hover);
  box-shadow: var(--xv-shadow-glow);
}

.xv-article-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.xv-article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.xv-article-tag {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--xv-accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.xv-article-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--xv-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.xv-article-card-excerpt {
  font-size: 0.9rem;
  color: var(--xv-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.xv-article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--xv-border);
}

.xv-article-meta {
  font-size: 0.8rem;
  color: var(--xv-text-muted);
}

/* ---- CAROUSEL ---- */
.xv-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.xv-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.xv-carousel-item {
  min-width: 100%;
  padding: 0 1rem;
}

.xv-quote-card {
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.xv-quote-icon {
  font-size: 3rem;
  color: var(--xv-accent-cyan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.xv-quote-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--xv-text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.xv-quote-author {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--xv-accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.xv-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.xv-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--xv-border);
  background: var(--xv-bg-card);
  color: var(--xv-text-primary);
  cursor: pointer;
  transition: var(--xv-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.xv-carousel-btn:hover {
  border-color: var(--xv-accent-cyan);
  color: var(--xv-accent-cyan);
}

.xv-carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.xv-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--xv-text-muted);
  cursor: pointer;
  transition: var(--xv-transition);
  border: none;
}

.xv-carousel-dot.active {
  background: var(--xv-accent-cyan);
  width: 20px;
  border-radius: 3px;
}

/* ---- REVIEWS ---- */
.xv-review-card {
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition: var(--xv-transition);
}

.xv-review-card:hover {
  border-color: var(--xv-border-hover);
  transform: translateY(-3px);
}

.xv-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.xv-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--xv-border);
}

.xv-review-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--xv-text-primary);
}

.xv-review-stars {
  color: #ffd700;
  font-size: 0.85rem;
}

.xv-review-text {
  font-size: 0.95rem;
  color: var(--xv-text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* ---- TEAM ---- */
.xv-team-card {
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--xv-transition);
}

.xv-team-card:hover {
  border-color: var(--xv-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--xv-shadow-glow);
}

.xv-team-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.xv-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.xv-team-card:hover .xv-team-img-wrap img {
  transform: scale(1.05);
}

.xv-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 20, 0.8), transparent);
}

.xv-team-body {
  padding: 1.5rem;
}

.xv-team-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--xv-text-primary);
  margin-bottom: 0.25rem;
}

.xv-team-role {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--xv-accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.xv-team-bio {
  font-size: 0.9rem;
  color: var(--xv-text-secondary);
  line-height: 1.6;
}

/* ---- COUNTERS ---- */
.xv-counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.xv-counter-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  transition: var(--xv-transition);
}

.xv-counter-item:hover {
  border-color: var(--xv-border-hover);
  transform: translateY(-3px);
}

.xv-counter-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--xv-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xv-counter-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--xv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ---- FOOTER ---- */
.xv-footer {
  background: var(--xv-bg-secondary);
  border-top: 1px solid var(--xv-border);
  padding: 60px 0 30px;
}

.xv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.xv-footer-brand p {
  font-size: 0.9rem;
  color: var(--xv-text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 280px;
}

.xv-footer-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xv-text-primary);
  margin-bottom: 1rem;
}

.xv-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.xv-footer-links a {
  font-size: 0.9rem;
  color: var(--xv-text-muted);
  transition: var(--xv-transition);
}

.xv-footer-links a:hover { color: var(--xv-accent-cyan); }

.xv-footer-bottom {
  border-top: 1px solid var(--xv-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.xv-footer-copy {
  font-size: 0.85rem;
  color: var(--xv-text-muted);
}

.xv-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.xv-footer-legal a {
  font-size: 0.8rem;
  color: var(--xv-text-muted);
}

/* ---- COOKIE BANNER ---- */
.xv-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 600px;
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--xv-shadow-card);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.xv-cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.xv-cookie-text {
  font-size: 0.9rem;
  color: var(--xv-text-secondary);
  margin-bottom: 1rem;
}

.xv-cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.xv-cookie-accept {
  background: var(--xv-gradient-accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--xv-transition);
}

.xv-cookie-accept:hover { opacity: 0.85; }

.xv-cookie-decline {
  background: transparent;
  color: var(--xv-text-muted);
  border: 1px solid var(--xv-border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--xv-transition);
}

.xv-cookie-decline:hover { border-color: var(--xv-text-muted); color: var(--xv-text-primary); }

/* ---- PAGE HERO ---- */
.xv-page-hero {
  padding: 140px 0 80px;
  background: var(--xv-gradient-hero);
  position: relative;
  overflow: hidden;
}

.xv-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(0, 229, 255, 0.08), transparent 60%);
}

.xv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--xv-text-muted);
  margin-bottom: 1rem;
}

.xv-breadcrumb a { color: var(--xv-text-muted); }
.xv-breadcrumb a:hover { color: var(--xv-accent-cyan); }
.xv-breadcrumb .xv-sep { color: var(--xv-text-muted); }

/* ---- ARTICLE PAGE ---- */
.xv-article-layout {
  max-width: 820px;
  margin: 0 auto;
}

.xv-article-header {
  padding: 140px 0 60px;
  background: var(--xv-gradient-hero);
  position: relative;
  overflow: hidden;
}

.xv-article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.06), transparent 60%);
}

.xv-article-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--xv-radius-lg);
  border: 1px solid var(--xv-border);
  margin: 2rem 0;
}

.xv-article-content h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  color: var(--xv-text-primary);
}

.xv-article-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--xv-accent-cyan);
}

.xv-article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.xv-article-content img {
  width: 100%;
  border-radius: var(--xv-radius);
  margin: 2rem 0;
  border: 1px solid var(--xv-border);
}

.xv-article-content blockquote {
  border-left: 3px solid var(--xv-accent-cyan);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(0, 229, 255, 0.05);
  border-radius: 0 var(--xv-radius) var(--xv-radius) 0;
}

.xv-article-content blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--xv-text-primary);
  margin: 0;
}

/* ---- CONTACT ---- */
.xv-contact-form-wrap {
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius-lg);
  padding: 2.5rem;
}

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

.xv-form-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xv-text-muted);
  margin-bottom: 0.5rem;
}

.xv-form-input,
.xv-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius);
  padding: 0.85rem 1rem;
  color: var(--xv-text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: var(--xv-transition);
}

.xv-form-input:focus,
.xv-form-textarea:focus {
  outline: none;
  border-color: var(--xv-accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.xv-form-input.error,
.xv-form-textarea.error {
  border-color: var(--xv-accent-orange);
}

.xv-form-error {
  font-size: 0.8rem;
  color: var(--xv-accent-orange);
  margin-top: 0.3rem;
  display: none;
}

.xv-form-error.show { display: block; }

.xv-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.xv-captcha-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.xv-captcha-question {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--xv-text-primary);
}

.xv-captcha-input {
  width: 80px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--xv-border);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  color: var(--xv-text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.xv-captcha-input:focus {
  outline: none;
  border-color: var(--xv-accent-cyan);
}

.xv-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--xv-bg-card);
  border: 1px solid var(--xv-border);
  border-radius: var(--xv-radius);
  margin-bottom: 1rem;
  transition: var(--xv-transition);
}

.xv-contact-info-item:hover { border-color: var(--xv-border-hover); }

.xv-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--xv-accent-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.xv-contact-info-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xv-text-muted);
  margin-bottom: 0.2rem;
}

.xv-contact-info-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--xv-text-primary);
}

/* ---- LEGAL PAGES ---- */
.xv-legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.xv-legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--xv-accent-cyan);
  border-bottom: 1px solid var(--xv-border);
  padding-bottom: 0.5rem;
}

.xv-legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--xv-text-primary);
}

.xv-legal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.xv-legal-content ul {
  color: var(--xv-text-secondary);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.xv-legal-content ul li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.xv-legal-date {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--xv-radius);
  padding: 0.75rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--xv-text-muted);
  margin-bottom: 2rem;
}

/* ---- THANK YOU ---- */
.xv-thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1.5rem 80px;
}

.xv-thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid var(--xv-accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--xv-accent-green);
  margin: 0 auto 1.5rem;
  animation: xv-success-bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes xv-success-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ---- ABOUT PAGE ---- */
.xv-about-timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.xv-about-timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--xv-border);
}

.xv-about-timeline-item:last-child::before { display: none; }

.xv-about-year-badge {
  width: 42px;
  height: 42px;
  background: var(--xv-gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ---- SVG DIVIDERS ---- */
.xv-divider-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
}

.xv-divider-wave svg {
  display: block;
  width: 100%;
}

/* ---- SCROLL ANIMATIONS ---- */
.xv-fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.xv-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.xv-fade-in-delay-1 { transition-delay: 0.1s; }
.xv-fade-in-delay-2 { transition-delay: 0.2s; }
.xv-fade-in-delay-3 { transition-delay: 0.3s; }

/* ---- UTILITIES ---- */
.xv-text-center { text-align: center; }
.xv-mb-1 { margin-bottom: 1rem; }
.xv-mb-2 { margin-bottom: 2rem; }
.xv-mb-3 { margin-bottom: 3rem; }
.xv-mt-1 { margin-top: 1rem; }
.xv-mt-2 { margin-top: 2rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .xv-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .xv-timeline-line { display: none; }

  .xv-timeline-item,
  .xv-timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .xv-timeline-content {
    max-width: 100%;
  }

  .xv-timeline-dot { display: none; }
}

@media (max-width: 768px) {
  .xv-nav-links { display: none; }
  .xv-hamburger { display: flex; }

  .xv-hero-cta { flex-direction: column; }

  .xv-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .xv-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .xv-hero-stats { gap: 1.5rem; }

  .xv-section, .xv-section-alt { padding: 60px 0; }
}

@media (max-width: 480px) {
  .xv-quiz-card { padding: 1.5rem; }
  .xv-counter-grid { grid-template-columns: repeat(2, 1fr); }
}

.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

.xv-article-tag{
  width: max-content;
}