

:root {
  
  --bg-primary: #1a1f1e;
  --bg-secondary: #252b2a;
  --bg-tertiary: #2f3635;
  --bg-hover: #3a4241;
  --bg-game: #1e2423;
  
  
  --accent-primary: #4ade80;
  --accent-secondary: #22c55e;
  --accent-button: #16a34a;
  --accent-success: #10b981;
  
  
  --text-primary: #e5e7e6;
  --text-secondary: #b8bcbb;
  --text-muted: #7a7f7e;
  --text-heading: #ffffff;
  
  
  --fs-gold: #f59e0b;
  --fs-gold-light: #fbbf24;
  
  
  --border-color: #3d4443;
  
  
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-accent: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-fs: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
}



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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


section[id] {
  scroll-margin-top: 80px;
}



h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-button) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent-primary);
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-success);
}



header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-card);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  z-index: 1001;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-primary);
  background: var(--bg-tertiary);
  box-shadow: var(--shadow-card);
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 1001;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}



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

.section {
  padding: 4rem 0;
}



.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-button) 0%, var(--accent-primary) 100%);
  color: var(--text-heading);
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}



.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-accent);
}

.card-title {
  color: var(--accent-primary);
  margin-bottom: 1rem;
}



.hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1f2a28 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(37, 43, 42, 0.4);
  border: 1px solid rgba(61, 68, 67, 0.5);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



.fs-points {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-tertiary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 2px solid var(--fs-gold);
  box-shadow: var(--shadow-fs);
}

.fs-points .fs-icon {
  color: var(--fs-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.fs-points .fs-value {
  color: var(--fs-gold-light);
  font-weight: 700;
  font-size: 1.1rem;
}



.game-container {
  background: var(--bg-game);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-accent);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}



footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  padding: 4rem 0 1rem;
  margin-top: 4rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-button));
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section h4 {
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item .icon {
  font-size: 1.2rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item .content {
  flex: 1;
}

.footer-contact-item .content strong {
  color: var(--text-heading);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact-item .content a {
  color: var(--accent-primary);
  text-decoration: none;
}

.footer-contact-item .content a:hover {
  color: var(--accent-success);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.fs-footnote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fs-footnote strong {
  color: var(--fs-gold);
}


@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}



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

.article-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.article-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card-content .btn {
  margin-top: auto;
}

.article-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.article-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}



.courses-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.course-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-button-wrapper {
  margin-top: auto;
  padding-top: 1.5rem;
}

.course-button-wrapper > a.btn {
  width: 100%;
  display: block;
  text-align: center;
}

.course-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
}

.course-item h3 {
  color: var(--accent-primary);
  margin-bottom: 1rem;
}



.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.content-image:hover {
  transform: scale(1.02);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: 0;
}

.article-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .card-image,
  .feature-image {
    height: 200px;
  }
  
  .article-image {
    max-height: 300px;
  }
}



@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h4 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  .hero-card {
    padding: 1.5rem;
  }
  
  .hero-card h1 {
    font-size: 1.75rem;
  }
  
  .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 0;
    color: var(--text-secondary);
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
    padding-left: 1.5rem;
  }
  
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .container {
    padding: 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .articles-grid,
  .courses-list {
    grid-template-columns: 1fr;
  }
  
  
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
    display: block;
  }
  
  
  table {
    min-width: 600px;
    width: max-content;
    display: table;
    border-collapse: collapse;
  }
  
  
  .section table,
  .card table,
  .container table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  
  table th,
  table td {
    padding: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    min-width: 100px;
  }
  
  table th {
    font-size: 0.9rem;
    position: sticky;
    left: 0;
    z-index: 1;
  }
  
  
  .section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  .card {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .container {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  
  h1, h2, h3, h4, h5, h6 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  
  .text-center {
    text-align: center;
  }
  
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .card {
    padding: 1.5rem;
  }
}


@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .hero-card {
    padding: 1rem;
  }
  
  .hero-card h1 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0.75rem;
  }
  
  table {
    min-width: 500px;
  }
  
  table th,
  table td {
    padding: 0.4rem;
    font-size: 0.8rem;
  }
}




.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border-radius: 8px;
  display: block;
}


.container table,
.section table,
.card table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: var(--bg-tertiary);
  border-radius: 8px;
  overflow: hidden;
  min-width: 600px; 
  display: table;
}

table th {
  background: var(--bg-secondary);
  color: var(--accent-primary);
  font-weight: 600;
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

table td {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

table tr:nth-child(even) {
  background: rgba(74, 222, 128, 0.05);
}

table tr:hover {
  background: rgba(74, 222, 128, 0.1);
}



.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info a {
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-success);
}

.map-container {
  display: flex;
  flex-direction: column;
}

.google-map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.google-map:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-accent);
}

.google-map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease;
}

.google-map:hover iframe {
  filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
  .contact-info,
  .map-container {
    width: 100%;
  }
  
  .google-map iframe {
    min-height: 250px;
  }
}



.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }



.accordion {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: var(--bg-tertiary);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: var(--bg-hover);
}

.accordion-header.active {
  background: var(--bg-hover);
  border-bottom: 1px solid var(--accent-primary);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-heading);
  font-weight: 600;
}

.accordion-icon {
  color: var(--accent-primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 1.5rem;
}

.accordion-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.accordion-content ul {
  margin-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 2;
}



.info-box {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-left: 4px solid var(--accent-primary);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.info-box.warning {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.1) 0%, rgba(255, 68, 68, 0.1) 100%);
  border-left-color: #ffaa00;
}

.info-box.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
  border-left-color: var(--accent-success);
}

.info-box h4 {
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box.warning h4 {
  color: #f59e0b;
}

.info-box.success h4 {
  color: var(--accent-success);
}



.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-accent);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-button) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-button));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-accent);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}



.timeline {
  position: relative;
  padding: 2rem 0;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--accent-primary);
  border: 3px solid var(--bg-secondary);
  box-shadow: 0 0 0 3px var(--accent-primary);
}

.timeline-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.timeline-date {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}



.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(74, 222, 128, 0.2);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-success);
  border: 1px solid var(--accent-success);
}

.badge-warning {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid #ffaa00;
}



@media (max-width: 768px) {
  .accordion-header {
    padding: 1rem;
  }
  
  .accordion-content.active {
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 1rem;
  }
  
  .timeline-item {
    padding-left: 3rem;
  }
  
  .timeline-item::before {
    left: 0.5rem;
  }
}
