


:root {
  
  --deep-swamp-black: #0A0F0A;
  --swamp-dark: #1A2E1A;
  --swamp-green: #2D4A2D;
  --swamp-medium: #3D5A3D;
  
  
  
  --marsh-green: #1B3A1B;
  --bog-green: #2D4A2D;
  --dark-moss: #1A2E1A;
  --swamp-teal: #1A3A2A;
  
  
  --swamp-accent: #4A6B4A;
  --moss-light: #5A7A5A;
  --swamp-highlight: #6B8A6B;
  --registration-accent: #7BA07B; 
  --fs-bonus-color: #8BB08B; 
  
  
  --deep-black: #000000;
  --charcoal-dark: #1A1A1A;
  --text-dark: #D0D0D0;
  --text-medium: #A0A0A0;
  --text-light: #E0E0E0;
  --medium-gray: #4A4A4A;
  --light-gray: #E0E0E0;
  --background-light: #152015;
  --white: #FFFFFF;
  
  
  --swamp-gradient: linear-gradient(135deg, #0A0F0A 0%, #1A2E1A 50%, #2D4A2D 100%);
  --dark-gradient: linear-gradient(180deg, #1A2E1A 0%, #0A0F0A 100%);
  --moss-gradient: linear-gradient(135deg, #2D4A2D 0%, #3D5A3D 100%);
  --fs-gradient: linear-gradient(135deg, #4A6B4A 0%, #5A7A5A 100%);
  
  
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.4);
}


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

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a:hover {
  color: var(--moss-light);
}


header {
  background: var(--swamp-gradient);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

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

.nav-links a {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--moss-light);
}


.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-button span {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

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


.fs-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fs-gradient);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--card-shadow);
}

.fs-display .fs-icon {
  font-size: 1.2rem;
}

.fs-display .fs-value {
  font-size: 1.1rem;
}


main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 200px);
}


.hero {
  background: var(--dark-gradient);
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


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

.btn-primary {
  background: var(--swamp-accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--moss-light);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.btn-secondary {
  background: var(--swamp-medium);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--swamp-accent);
  transform: translateY(-2px);
}

.btn-success {
  background: var(--bog-green);
  color: var(--white);
}

.btn-success:hover {
  background: var(--swamp-teal);
}


.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  overflow-x: visible;
}


@media (max-width: 768px) {
  .card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

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

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--swamp-dark);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}


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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


.game-container {
  background: var(--dark-gradient);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

#gameCanvas {
  background: var(--swamp-medium);
  border-radius: 8px;
  border: 3px solid var(--swamp-dark);
  display: block;
  margin: 1rem auto;
  cursor: crosshair;
}

.game-info {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.game-stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

.game-stat .label {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.game-stat .value {
  color: var(--swamp-dark);
  font-size: 1.2rem;
}

.game-stat.fs-stat .value {
  color: var(--moss-light);
}


.quiz-container {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--swamp-dark);
  margin-bottom: 1.5rem;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.answer-btn {
  padding: 1rem;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.answer-btn:hover {
  background: var(--swamp-medium);
  border-color: var(--swamp-accent);
}

.answer-btn.selected {
  background: var(--swamp-accent);
  color: var(--white);
  border-color: var(--swamp-dark);
}

.answer-btn.correct {
  background: var(--bog-green);
  color: var(--white);
}

.answer-btn.incorrect {
  background: #e74c3c;
  color: var(--white);
}

.quiz-result {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.quiz-result.success {
  background: var(--fresh-green);
  color: var(--white);
}

.quiz-result.info {
  background: var(--swamp-medium);
  color: var(--white);
}


.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.article-content img {
  width: 100%;
  border-radius: 8px;
  margin: 2rem 0;
}

.article-content h2 {
  color: var(--swamp-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  color: var(--swamp-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
}

.article-content ul,
.article-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: var(--charcoal-dark);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  box-shadow: var(--card-shadow);
  border-radius: 8px;
  overflow: hidden;
}

.article-content table thead {
  background: var(--swamp-gradient);
  color: var(--white);
}

.article-content table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  color: var(--charcoal-dark);
}

.article-content table tbody tr:nth-child(even) {
  background: var(--light-gray);
}

.article-content table tbody tr:hover {
  background: rgba(45, 74, 45, 0.2);
}


footer {
  background: var(--deep-swamp-black);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: var(--moss-light);
}

.footer-section a:hover {
  color: var(--swamp-highlight);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-contact-info {
  margin-top: 0.5rem;
}

.footer-contact-info p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.footer-contact-info a {
  color: var(--moss-light);
  text-decoration: none;
}

.footer-contact-info a:hover {
  color: var(--swamp-highlight);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: var(--swamp-accent);
  transform: translateY(-3px);
}

.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter input {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-newsletter button {
  width: 100%;
  padding: 0.75rem;
  background: var(--swamp-accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: var(--moss-light);
}

.footer-resources {
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-bottom-links {
  margin-top: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--moss-light);
}

.fs-explanation {
  background: rgba(74, 107, 74, 0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-left: 4px solid var(--moss-light);
}

.fs-explanation strong {
  color: var(--moss-light);
}


@media (max-width: 768px) {
  nav {
    flex-direction: row;
    gap: 0;
    padding: 0 1rem;
    flex-wrap: wrap;
  }
  
  
  .mobile-menu-button {
    display: flex;
    order: 2;
  }
  
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--swamp-gradient);
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  
  .nav-links.mobile-open {
    display: flex;
    max-height: 500px;
    padding: 1rem 0;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    display: block;
    text-align: left;
    padding: 1rem 2rem;
    width: 100%;
    border-radius: 0;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.2);
    padding-left: 2.5rem;
  }
  
  
  .logo {
    order: 1;
    flex: 1;
  }
  
  .fs-display {
    order: 3;
    margin-left: auto;
  }
  
  h1 { 
    font-size: 1.75rem; 
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  h2 { 
    font-size: 1.4rem; 
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  h3 {
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  h4 {
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  main {
    padding: 1rem;
  }
  
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  iframe {
    max-width: 100%;
  }
  
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
  }
  
  .footer-bottom-links a {
    margin: 0 0.25rem;
  }
  
  
  .accordion-header {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .accordion-content {
    padding: 1rem !important;
  }
  
  
  .info-table {
    font-size: 0.8rem;
    display: table;
    width: 100%;
    min-width: 600px;
    margin: 1rem 0;
  }
  
  
  .card:has(.info-table),
  section .card:has(.info-table),
  .card > div:has(.info-table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  
  .card .info-table,
  section .card .info-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .card .info-table thead,
  .card .info-table tbody,
  .card .info-table tr {
    display: table;
    width: 100%;
    table-layout: auto;
  }
  
  .info-table th,
  .info-table td {
    padding: 0.75rem 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    min-width: 100px;
  }
  
  
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
    display: block;
  }
  
  .table-wrapper .info-table {
    min-width: 600px;
    margin: 0;
  }
  
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card .stat-number {
    font-size: 2rem;
  }
  
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  
  form input,
  form textarea {
    font-size: 0.9rem;
  }
  
  
  .card {
    padding: 1.5rem 1rem;
  }
  
  
  section {
    padding: 1.5rem 1rem;
  }
}


@media (max-width: 480px) {
  h1 { 
    font-size: 1.5rem; 
  }
  h2 { 
    font-size: 1.25rem; 
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .info-table {
    font-size: 0.75rem;
  }
  
  .info-table th,
  .info-table td {
    padding: 0.5rem 0.4rem;
    font-size: 0.75rem;
  }
  
  .card {
    padding: 1rem 0.75rem;
  }
  
  main {
    padding: 0.5rem;
  }
  
  .hero {
    padding: 1.5rem 0.75rem;
  }
  
  
  p, li, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  
  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    white-space: normal;
  }
  
  
  .logo {
    font-size: 1.2rem;
  }
  
  .fs-display {
    font-size: 0.85rem;
  }
}


form {
  max-width: 600px;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--swamp-dark);
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  outline: none;
  border-color: var(--swamp-accent);
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button[type="submit"] {
  width: 100%;
  margin-top: 1rem;
}


@keyframes fsPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.fs-updated {
  animation: fsPulse 0.5s ease;
}

@keyframes fishCaught {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.fish-caught-animation {
  animation: fishCaught 0.5s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


.accordion {
  margin: 2rem 0;
}

.accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--card-shadow-hover);
}

.accordion-header {
  background: var(--swamp-gradient);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: linear-gradient(135deg, #1A2E1A 0%, #2D4A2D 100%);
}

.accordion-header.active {
  background: var(--deep-swamp-black);
}

.accordion-icon {
  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: 2000px;
  padding: 1.5rem;
}

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

.accordion-content ul,
.accordion-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.accordion-content li {
  margin-bottom: 0.5rem;
  color: var(--charcoal-dark);
}


.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  display: table;
}


.card > .info-table,
section > .card > .info-table,
.card > div > .info-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.card > .info-table table,
section > .card > .info-table table,
.card > div > .info-table table {
  width: 100%;
  min-width: 600px;
}

.info-table thead {
  background: var(--swamp-gradient);
  color: var(--white);
}

.info-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.info-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--light-gray);
  color: var(--charcoal-dark);
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table tbody tr:hover {
  background: rgba(45, 74, 45, 0.15);
}

.info-table tbody tr:nth-child(even) {
  background: rgba(236, 240, 241, 0.3);
}

.info-table tbody tr:nth-child(even):hover {
  background: rgba(45, 74, 45, 0.25);
}


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

.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--swamp-accent);
  margin-bottom: 0.5rem;
}

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


.feature-box {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--swamp-accent);
}

.feature-box h3 {
  color: var(--swamp-dark);
  margin-bottom: 1rem;
}

.feature-box.success {
  border-left-color: var(--bog-green);
}

.feature-box.warning {
  border-left-color: var(--moss-light);
}

.feature-box.info {
  border-left-color: var(--swamp-accent);
}


#registration-status {
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

form input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

form input[type="password"]:focus {
  outline: none;
  border-color: var(--swamp-accent);
}

form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--swamp-accent);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

form label[for*="reg-"] {
  display: flex;
  align-items: start;
  cursor: pointer;
  margin-bottom: 1rem;
}

form label[for*="reg-"] span {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

form label[for*="reg-"] a {
  color: var(--swamp-accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

form label[for*="reg-"] a:hover {
  color: var(--moss-light);
}


#registration-form {
  max-width: 600px;
}

#registration-form .btn-primary {
  background: var(--button-primary-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  width: 100%;
  margin-top: 0.5rem;
}

#registration-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

#registration-form .btn-primary:active {
  transform: translateY(0);
}


.hero .btn-primary {
  background: var(--button-primary-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.hero .btn-primary:active {
  transform: translateY(0);
}


html {
  scroll-behavior: smooth;
}

