@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0b1a2a;
  --bg-secondary: #10243a;
  --bg-card: #15314a;
  --bg-surface: #1a3d5a;
  --text-primary: #e5f0ff;
  --text-secondary: #9bb4d1;
  --text-muted: #6b8ba8;
  --accent-primary: #3ec4ff;
  --accent-secondary: #6de0c8;
  --accent-hover: #5ac8e6;
  --border-default: rgba(158, 191, 220, 0.2);
  --border-hover: rgba(62, 196, 255, 0.4);
  --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.35);
  --shadow-button: 0 10px 30px rgba(62, 196, 255, 0.35);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.45);
  --transition: 220ms ease;
  --transition-slow: 400ms ease;
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 16px;
  --radius-xlarge: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(62, 196, 255, 0.08), transparent 30%), var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

main {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

section.hero-new {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: auto !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(11, 26, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  border-bottom: 1px solid var(--border-default);
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
  text-decoration: none;
  transition: all var(--transition);
}

.logo:hover {
  color: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-medium);
  transition: all var(--transition);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  background: rgba(62, 196, 255, 0.15);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.nav-links a.active {
  background: rgba(62, 196, 255, 0.2);
  color: var(--accent-primary);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  transition: transform var(--transition);
}

.burger:hover {
  transform: scale(1.1);
}


.hero {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image:hover img {
  transform: scale(1.05);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-medium);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #041320;
  box-shadow: var(--shadow-button);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(62, 196, 255, 0.5);
}

.btn.ghost {
  border-color: var(--border-default);
  color: var(--text-primary);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--border-hover);
  background: rgba(62, 196, 255, 0.1);
  transform: translateY(-2px);
}


.card {
  background: linear-gradient(145deg, rgba(21, 49, 74, 0.95), rgba(16, 36, 58, 0.95));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}


.benefits {
  padding: 60px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.benefits h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-medium);
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--accent-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}


.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: all var(--transition);
}

.accordion-item:hover {
  border-color: var(--border-hover);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.accordion-header:hover {
  background: rgba(62, 196, 255, 0.1);
}

.accordion-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform var(--transition);
  color: var(--accent-primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.accordion-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}


.how-it-works {
  padding: 60px 20px;
}

.how-it-works h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 40px;
}


.new-species {
  padding: 60px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.new-species h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 40px;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.species-card {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.species-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.species-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.species-info {
  padding: 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-default);
}

.species-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--accent-primary);
}

.species-info p {
  font-size: 14px;
  color: var(--text-secondary);
}


.cta-section {
  padding: 60px 20px;
}

.cta-block {
  background: linear-gradient(135deg, rgba(62, 196, 255, 0.15), rgba(109, 224, 200, 0.12));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xlarge);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.cta-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cta-block h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}


.page-header {
  padding: 60px 20px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
}


.tasks-description {
  padding: 40px 20px;
}

.description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.description-text h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.description-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.description-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.description-images img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.tasks-list {
  padding: 40px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.tasks-list h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
}

.tasks-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.task-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.task-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.task-header:hover {
  background: rgba(62, 196, 255, 0.1);
}

.task-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--accent-primary);
}

.task-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.task-icon {
  font-size: 24px;
  color: var(--accent-primary);
  transition: transform var(--transition);
}

.task-item.active .task-icon {
  transform: rotate(45deg);
}

.task-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  padding: 0 24px;
}

.task-item.active .task-content {
  max-height: 500px;
  padding: 20px 24px;
}

.task-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.task-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.task-progress span {
  font-size: 14px;
  color: var(--text-secondary);
}


.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(158, 191, 220, 0.2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.progress-bar.large {
  height: 16px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 999px;
  transition: width var(--transition-slow);
}

.progress-fill.animated {
  animation: progressAnimation 1.5s ease-out;
}

@keyframes progressAnimation {
  from {
    width: 0;
  }
}

.overall-progress {
  padding: 40px 20px;
}

.progress-section {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.progress-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 24px;
}

.progress-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-info span {
  font-size: 16px;
  color: var(--text-secondary);
}

.progress-percent {
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 20px;
}

.progress-note {
  margin-top: 16px;
  color: var(--text-secondary);
  font-style: italic;
}


.my-collection {
  padding: 40px 20px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.collection-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.collection-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.collection-status.open {
  background: rgba(109, 224, 200, 0.3);
  color: var(--accent-secondary);
  border: 1px solid var(--accent-secondary);
}

.collection-status.locked {
  background: rgba(107, 139, 168, 0.3);
  color: var(--text-muted);
  border: 1px solid var(--text-muted);
}

.collection-info {
  padding: 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-default);
}

.collection-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--accent-primary);
}

.collection-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.collection-stats {
  padding: 40px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.collection-stats h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.stat-card h3 {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.collection-progress {
  padding: 40px 20px;
}

.tip-of-day {
  padding: 40px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.tip-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.tip-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tip-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--radius-medium);
}

.tip-content h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
  color: var(--accent-primary);
}

.tip-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.tip-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}


.researchers-grid {
  padding: 40px 20px;
}

.researchers-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.researcher-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.researcher-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.researcher-card img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-medium);
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid var(--border-default);
}

.researcher-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--accent-primary);
}

.researcher-role {
  font-size: 14px;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.researcher-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

.success-stories {
  padding: 40px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.success-stories h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
}

.stories-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.story-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.story-header:hover {
  background: rgba(62, 196, 255, 0.1);
}

.story-header h3 {
  font-size: 18px;
  color: var(--accent-primary);
}

.story-icon {
  font-size: 24px;
  color: var(--accent-primary);
  transition: transform var(--transition);
}

.story-item.active .story-icon {
  transform: rotate(45deg);
}

.story-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  padding: 0 24px;
}

.story-item.active .story-content {
  max-height: 500px;
  padding: 20px 24px;
}

.story-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.story-date {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.latest-discoveries {
  padding: 40px 20px;
}

.latest-discoveries h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
}

.discoveries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.discovery-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.discovery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.discovery-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-medium);
}

.discovery-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--accent-primary);
}

.discovery-info p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.discovery-date {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}


.contact-info {
  padding: 40px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-details-centered {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-details-centered h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
}

.contact-details h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item h3 {
  font-size: 18px;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.map-section {
  padding: 40px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.map-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 24px;
}

.map-container {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-form-section {
  padding: 40px 20px;
}

.contact-form-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 16px;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(62, 196, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}


.merci-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.merci-section {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merci-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xlarge);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}

.merci-card h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
  color: var(--accent-primary);
}

.merci-card p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.merci-note {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}


.footer {
  background: rgba(11, 26, 42, 0.9);
  border-top: 1px solid var(--border-default);
  padding: 32px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition);
  padding: 4px 8px;
  border-radius: var(--radius-small);
}

.footer-links a:hover {
  color: var(--accent-primary);
  background: rgba(62, 196, 255, 0.1);
  transform: translateY(-2px);
}

.footer-contact {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-google-play {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.google-play-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  text-decoration: none;
  transition: all var(--transition);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  width: fit-content;
}

.google-play-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-google-play {
  margin-top: 0;
}

.google-play-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-play-icon svg {
  width: 100%;
  height: 100%;
}

.google-play-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.google-play-text-top {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.google-play-text-bottom {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}


.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 500px;
  width: calc(100% - 40px);
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-large);
  padding: 24px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cookie-popup.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
}

.cookie-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}


.fade-up {
  animation: fadeUp 0.6s ease-out both;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.hero-new.fade-up {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  animation: fadeUp 0.6s ease-out both, fadeUpFallback 0.1s ease-out 0.6s forwards;
}

@keyframes fadeUpFallback {
  to {
    opacity: 1 !important;
    visibility: visible !important;
  }
}


.document-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.document-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-default);
}

.document-section:last-of-type {
  border-bottom: none;
}

.document-section h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.document-section h3 {
  font-size: 20px;
  color: var(--accent-secondary);
  margin-top: 16px;
  margin-bottom: 12px;
}

.document-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.document-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.document-section ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.document-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-default);
}


@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .description-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tip-card {
    grid-template-columns: 1fr;
  }

  .discoveries-grid {
    grid-template-columns: 1fr;
  }

  .discovery-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 20px;
    background: rgba(16, 36, 58, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 16px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-default);
    display: none;
    min-width: 200px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .burger {
    display: block;
  }

  .hero {
    padding: 40px 20px;
  }

  .benefits,
  .how-it-works,
  .new-species,
  .cta-section {
    padding: 40px 20px;
  }

  .description-images {
    grid-template-columns: 1fr;
  }

  .contact-images {
    grid-template-columns: 1fr;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .cta-block {
    padding: 32px 24px;
  }

  .merci-card {
    padding: 32px 24px;
  }

  .contact-form {
    padding: 24px;
  }
}

.minigame-section {
  padding: 60px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.minigame-section h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.game-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.game-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-medium);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-primary);
}

.game-area {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(180deg, rgba(62, 196, 255, 0.1) 0%, rgba(11, 26, 42, 0.8) 100%);
  border-radius: var(--radius-medium);
  overflow: hidden;
  border: 2px solid var(--border-default);
  margin-bottom: 20px;
}

.fish {
  position: absolute;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  animation: swim 3s infinite ease-in-out;
  transition: transform 0.2s;
  z-index: 10;
}

.fish:hover {
  transform: scale(1.2);
}

.fish:active {
  transform: scale(0.9);
}

@keyframes swim {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(20px) translateY(-15px);
  }
  50% {
    transform: translateX(-10px) translateY(10px);
  }
  75% {
    transform: translateX(15px) translateY(5px);
  }
}

.hero-new {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(62, 196, 255, 0.1) 0%, rgba(11, 26, 42, 0.95) 100%);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

.hero-new-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 400px;
}

.hero-new-content > * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-new-text {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-new-text h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block !important;
  visibility: visible !important;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-bonus {
  margin-bottom: 32px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(62, 196, 255, 0.2), rgba(109, 224, 200, 0.2));
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-large);
  padding: 20px 24px;
  box-shadow: var(--shadow-button);
}


.bonus-text {
  display: flex;
  flex-direction: column;
}

.bonus-text strong {
  font-size: 28px;
  color: var(--accent-primary);
  font-weight: 700;
}

.bonus-text span {
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-actions-new {
  display: flex !important;
  gap: 16px;
  flex-wrap: wrap;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-new-image {
  position: relative;
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-new-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex !important;
  gap: 16px;
  background: rgba(11, 26, 42, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-default);
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10;
}

.stat-overlay-item {
  flex: 1;
  text-align: center;
}

.stat-number-large {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1.2;
}

.stat-label-small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.minigame-section-new {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

.section-header-new {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-new h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 12px;
  color: var(--accent-primary);
}

.section-header-new p {
  font-size: 18px;
  color: var(--text-secondary);
}

.game-container-new {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xlarge);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.game-stats-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-item-new {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-surface);
  padding: 20px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-default);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-label-new {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value-new {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-primary);
}

.game-area-new {
  position: relative;
  width: 100%;
  height: 450px;
  background: linear-gradient(180deg, rgba(62, 196, 255, 0.15) 0%, rgba(11, 26, 42, 0.9) 100%);
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 2px solid var(--border-hover);
  margin-bottom: 24px;
}

.game-water-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(62, 196, 255, 0.1) 0%,
    rgba(62, 196, 255, 0.05) 50%,
    rgba(11, 26, 42, 0.8) 100%);
  animation: waterFlow 3s ease-in-out infinite;
}

@keyframes waterFlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.game-controls {
  display: flex;
  gap: 12px;
}

.game-controls .btn {
  flex: 1;
}

.features-section {
  padding: 80px 20px;
  background: var(--bg-primary);
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-new {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
}

.feature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.feature-card-new img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-content {
  padding: 24px;
}

.feature-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent-primary);
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-link {
  color: var(--accent-secondary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.feature-link:hover {
  color: var(--accent-primary);
  gap: 8px;
}

.how-works-new {
  padding: 80px 20px;
  background: rgba(16, 36, 58, 0.5);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #041320;
  box-shadow: var(--shadow-button);
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--accent-primary);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.species-section-new {
  padding: 80px 20px;
  background: var(--bg-primary);
}

.species-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.species-card-new {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.species-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.species-image-wrapper {
  position: relative;
  overflow: hidden;
}

.species-image-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.species-card-new:hover .species-image-wrapper img {
  transform: scale(1.1);
}

.species-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 26, 42, 0.9);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-secondary);
  border: 1px solid var(--accent-secondary);
}

.species-info-new {
  padding: 24px;
}

.species-info-new h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent-primary);
}

.species-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.species-location,
.species-difficulty {
  font-size: 14px;
  color: var(--text-secondary);
}

.species-reward {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
}

.reward-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-primary);
}

.reward-captures {
  font-size: 12px;
  color: var(--text-muted);
}

.species-cta {
  text-align: center;
}

.cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(62, 196, 255, 0.15), rgba(109, 224, 200, 0.12));
}

.cta-final-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-final-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  color: var(--accent-primary);
}

.cta-final-content > p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 1024px) {
  .hero-new-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats-overlay {
    position: static;
    margin-top: 20px;
  }

  .features-grid-new,
  .species-grid-new {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-new {
    padding: 60px 20px;
  }

  .minigame-section-new,
  .features-section,
  .how-works-new,
  .species-section-new,
  .cta-final {
    padding: 60px 20px;
  }

  .game-stats-new {
    grid-template-columns: 1fr;
  }

  .game-controls {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
  }
}

