/*
Theme Name: Vikseen Virtual
Theme URI: https://vikseenvirtual.com
Author: Vikseen Virtual
Description: Custom WordPress theme from Emergent
Version: 1.0
*/



:root {
  /* Background Colors */
  --bg-page: #FFFFFF;        /* clean white */
  --bg-card: #F9F9F9;        /* soft card */
  --bg-subtle: #F2F2F2;      /* subtle sections */
  --bg-section: #0B0B0B;     /* dark sections (hero / footer) */
  
  /* Text Colors */
  --text-primary: #0B0B0B;   /* near-black */
  --text-secondary: #444444;
  --text-light: #777777;
  
  /* Border Colors */
  --border-light: #E0E0E0;
  --border-medium: #CCCCCC;
  --border-strong: #999999;
  
  /* Brand Colors (AFG) */
  --brand-primary: #F4C430;  /* GOLD from logo */
  --brand-dark: #0B0B0B;     /* black shield */
  --brand-hover: #C9A227;   /* darker gold hover */
  
  /* Accent Colors (use sparingly) */
  --accent-red: #D62828;
  --accent-green: #2E7D32;
  
  /* Spacing System */
  --spacing-xs: 8px;
  --spacing-small: 16px;
  --spacing-medium: 24px;
  --spacing-large: 32px;
  --spacing-xl: 48px;
  --spacing-giant: 64px;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.22);
}


/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter',
               -apple-system,
               BlinkMacSystemFont,
               'Segoe UI',
               Roboto,
               Oxygen,
               Ubuntu,
               Cantarell,
               'Apple Color Emoji',
               'Segoe UI Emoji',
               'Segoe UI Symbol',
               sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-page);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === TYPOGRAPHY === */
.display-large {
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-primary);
}

.display-medium {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.heading-1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.heading-2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.heading-3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.body-large {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

.body-medium {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

.body-small {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light);
}

.caption {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

/* === LAYOUT === */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 12px;
}

.section-padding {
  padding: var(--spacing-giant) 0;
}

.section-header {
  margin-bottom: var(--spacing-xl);
}

/* === NAVIGATION === */
.network-header {
  background: var(--bg-page);
  position: fixed;
  top: 32px;
  width: 100%;
  z-index: 99999;
  padding: 0 12px;
  transition: top 0.3s ease;
}

.nav-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--brand-dark);
  border-radius: 25px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.network-logo {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.network-logo:hover {
  opacity: 0.9;
}

.network-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.network-nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s ease;
}

.network-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 14px;
  min-height: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: var(--brand-dark);
  padding: 24px;
  z-index: 99998;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 20px;
  transition: background 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* === BUTTONS === */
.btn-primary {
  background: var(--brand-primary);
  color: var(--brand-dark);
  border: none;
  border-radius: 25px;
  padding: 14px 32px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  min-height: 48px;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: var(--brand-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  border-radius: 25px;
  padding: 12px 30px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  min-height: 48px;
  font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
  background: var(--brand-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-cta {
  border-radius: 33px;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
  background: var(--brand-primary);
  color: var(--brand-dark);
  min-height: 54px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn-cta:hover {
  background: var(--brand-hover);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 69, 52, 0.25);
}

/* === CARDS === */
.network-card {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-large);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.content-card {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}

/* === HERO SECTION === */
.hero-section {
  padding: 140px 0 var(--spacing-giant);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-page);
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-subheadline {
  margin: var(--spacing-medium) 0 var(--spacing-large);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-small);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

/* === BACKGROUND SECTIONS === */
.bg-subtle {
  background: var(--bg-subtle);
}

.bg-section {
  background: var(--bg-section);
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-large);
  margin-top: var(--spacing-xl);
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-small);
}

.feature-item h3 {
  margin-bottom: var(--spacing-small);
}

.statement-box {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-large);
  background: var(--bg-page);
  border-radius: 24px;
  border: 2px solid var(--border-light);
}

/* === STEPS GRID === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-large);
  margin-top: var(--spacing-xl);
}

.step-card {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-large);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--brand-primary);
  color: var(--brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--spacing-medium);
}

.step-card h3 {
  margin-bottom: var(--spacing-small);
}

.link-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brand-dark);
  text-decoration: none;
  margin-top: var(--spacing-small);
  display: inline-block;
  transition: opacity 0.2s ease;
}

.link-text:hover {
  opacity: 0.8;
}

/* === WHY SECTION === */
.why-grid {
  text-align: center;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-small);
  justify-content: center;
  margin-top: var(--spacing-medium);
}

.audience-tag {
  background: var(--brand-primary);
  color: var(--brand-dark);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
}

/* === STATS GRID === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-large);
  margin-top: var(--spacing-xl);
}

.stat-card {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-large);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-small);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  font-weight: 500;
}

.activity-box {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-large);
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--bg-section);
  padding: var(--spacing-giant) 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--spacing-medium);
}

.cta-content p {
  margin-bottom: var(--spacing-large);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-small);
  justify-content: center;
}

/* === FOOTER === */
.footer {
  background: var(--brand-dark);
  color: white;
  padding: var(--spacing-giant) 0 var(--spacing-large);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-large);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-small);
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-large);
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-small);
  color: var(--brand-primary);
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--spacing-large);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* === PAGE HERO === */
.page-hero {
  padding: 140px 0 var(--spacing-giant);
  text-align: center;
  background: var(--bg-page);
}

.page-hero h1 {
  margin-bottom: var(--spacing-medium);
}

/* === DOWNLOAD PAGE === */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-large);
}

.download-card {
  text-align: center;
}

.download-icon {
  font-size: 64px;
  margin-bottom: var(--spacing-medium);
}

.download-buttons {
  margin-top: var(--spacing-medium);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-large);
  margin-top: var(--spacing-xl);
}

.requirement-card {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-large);
  box-shadow: var(--shadow-sm);
}

.requirement-list {
  list-style: none;
  margin-top: var(--spacing-medium);
}

.requirement-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

.requirement-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-dark);
  font-weight: 700;
}

/* === CONTRIBUTOR PAGE === */
.benefit-card {
  text-align: center;
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: var(--spacing-small);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contributor-form {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-medium);
}

.form-group {
  margin-bottom: var(--spacing-medium);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 16px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-medium);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-dark);
}

.form-textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-primary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.success-message {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 2px solid var(--brand-primary);
  margin-top: var(--spacing-large);
}

/* === DATABASE PAGE === */
.search-filter-container {
  background: var(--bg-card);
  border-radius: 32px;
  padding: var(--spacing-large);
  box-shadow: var(--shadow-sm);
}

.search-box {
  margin-bottom: var(--spacing-medium);
}

.search-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-medium);
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-dark);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-small);
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid var(--border-medium);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: white;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--brand-dark);
}

.database-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-large);
}

.player-card {
  text-align: center;
}

.player-image {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--spacing-medium);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-primary);
}

.player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-info h3 {
  margin-bottom: 8px;
}

.player-rating {
  margin-top: var(--spacing-medium);
  padding: var(--spacing-small);
  background: var(--bg-page);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.rating-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-dark);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-medium);
  margin-top: var(--spacing-xl);
}

.pagination-btn {
  padding: 12px 24px;
  border: 2px solid var(--brand-dark);
  border-radius: 25px;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--brand-dark);
  color: white;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-info {
  font-weight: 500;
  color: var(--text-primary);
}

/* === ANIMATIONS === */
.animated {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animated.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

.animated.delay-200ms {
  transition-delay: 200ms;
}

.animated.delay-500ms {
  transition-delay: 500ms;
}

.animated.zoomIn {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.animated.zoomIn.ready {
  opacity: 1;
  transform: scale(1);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 781px) {
  .network-header {
    top: 0;
    position: fixed;
  }
  
  .nav-wrapper {
    border-radius: 0;
    padding: 16px;
  }
  
  .network-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-section {
    padding: 120px 0 var(--spacing-large);
    min-height: auto;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group .btn-cta,
  .hero-cta-group .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .feature-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .filter-row {
    grid-template-columns: 1fr;
  }
}

/* === UTILITY CLASSES === */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}
