

:root {
  
  --primary-deep: #0A4D68;
  --accent-aqua: #05BFDB;
  --secondary-ocean: #088395;
  
  
  --fantasy-gold: #FFD700;
  --catch-orange: #FF6B35;
  --lure-purple: #9D4EDD;
  
  
  --foam-white: #F8F9FA;
  --wave-gray: #000000;
  --deep-shadow: #1A1A2E;
  
  
  --water-gradient: linear-gradient(135deg, #0A4D68 0%, #088395 50%, #05BFDB 100%);
  --gold-glow: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --ocean-gradient: linear-gradient(180deg, #0A4D68 0%, #088395 100%);
}



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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--water-gradient);
  color: var(--foam-white);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(5, 191, 219, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(8, 131, 149, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(10, 77, 104, 0.1) 0%, transparent 50%);
  animation: bubbleFloat 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}



h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--accent-aqua), var(--fantasy-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h3 {
  font-size: 2rem;
  color: var(--accent-aqua);
}

p {
  margin-bottom: 1rem;
  color: var(--foam-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}



header {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--accent-aqua), var(--fantasy-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--foam-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-aqua);
  transform: translateY(-2px);
}


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

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

.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);
}



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



.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card p {
  color: var(--foam-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}



.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--ocean-gradient);
  color: var(--foam-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: var(--accent-aqua);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--fantasy-gold);
}

.btn-gold {
  background: var(--gold-glow);
  color: var(--deep-shadow);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
  background: #FFED4E;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}



.game-container {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.score-display {
  font-size: 2.5rem;
  color: var(--fantasy-gold);
  margin: 1rem 0;
  font-weight: bold;
}

.game-area {
  background: var(--ocean-gradient);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.fish {
  position: absolute;
  cursor: pointer;
  transition: transform 0.1s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.fish:hover {
  transform: scale(1.1);
}

.fish:active {
  transform: scale(0.9);
}



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

.article-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.article-card p {
  color: var(--foam-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-aqua);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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



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

.media-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(26, 26, 46, 0.6);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: scale(1.05);
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-item::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--foam-white);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.media-item:hover::after {
  opacity: 1;
}



footer {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 4rem 2rem 1rem;
  margin-top: 4rem;
  border-top: 2px solid var(--accent-aqua);
}

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

.footer-section {
  min-width: 200px;
}

.footer-section h3 {
  color: var(--accent-aqua);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-section h4 {
  color: var(--accent-aqua);
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
}

.footer-section p,
.footer-section a,
.footer-section li {
  color: var(--foam-white);
  text-decoration: none;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

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

.footer-section a:hover {
  color: var(--accent-aqua);
  text-decoration: underline;
}

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

.footer-section .contact-info p {
  margin-bottom: 0.4rem;
}


.fs-explanation {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid var(--fantasy-gold);
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

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

.footer-newsletter {
  background: rgba(5, 191, 219, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.footer-newsletter input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--foam-white);
  margin-bottom: 0.8rem;
  font-family: inherit;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter button {
  width: 100%;
  padding: 0.8rem;
  background: var(--accent-aqua);
  color: var(--deep-shadow);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: var(--fantasy-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foam-white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}




@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    text-align: left;
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    width: 100%;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    background: rgba(5, 191, 219, 0.2);
    transform: translateX(5px);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
  }
  
  main {
    padding: 1.5rem 1rem;
  }
  
  .articles-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  
  .hero-section {
    min-height: 400px;
    padding: 2rem 1rem;
  }
  
  .hero-card {
    padding: 2rem 1.5rem;
  }
  
  .hero-card h1 {
    font-size: 1.8rem;
  }
  
  .hero-card p {
    font-size: 1rem;
  }
  
  
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 1rem 0;
  }
  
  .data-table {
    min-width: 600px;
    font-size: 0.9rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .data-table th {
    font-size: 0.9rem;
  }
  
  
  .card {
    padding: 1.5rem 1rem;
  }
  
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-box {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  
  .hero-image {
    height: 250px;
    margin: 1rem auto;
  }
  
  .article-image,
  .about-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .hero-section {
    min-height: 350px;
    padding: 1.5rem 1rem;
  }
  
  .hero-card {
    padding: 1.5rem 1rem;
  }
  
  .hero-card h1 {
    font-size: 1.5rem;
  }
  
  .data-table {
    min-width: 500px;
    font-size: 0.8rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.5rem 0.4rem;
    font-size: 0.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  main {
    padding: 1rem 0.5rem;
  }
  
  .card {
    padding: 1rem 0.75rem;
  }
  
  
  form {
    position: relative;
    z-index: 1;
  }
  
  form button[type="submit"] {
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
    touch-action: manipulation;
    cursor: pointer;
  }
}



@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: slideIn 0.6s ease-out;
}



.accordion {
  margin: 1.5rem 0;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content p,
.accordion-content li {
  color: var(--foam-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.accordion-item:hover {
  border-color: var(--accent-aqua);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 191, 219, 0.1);
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: rgba(5, 191, 219, 0.2);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--accent-aqua);
}

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

.accordion-item.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-item.active .accordion-content {
  max-height: 1000px;
  padding: 1.5rem;
}

.accordion-content p {
  margin-bottom: 1rem;
}

.accordion-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}



.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
  background: rgba(5, 191, 219, 0.2);
  color: var(--accent-aqua);
  font-weight: 600;
  font-size: 1rem;
}

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

.data-table tr:hover {
  background: rgba(255, 255, 255, 0.1);
}

.data-table td {
  color: var(--foam-white);
}

.data-table .highlight {
  color: var(--fantasy-gold);
  font-weight: 600;
}



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

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-aqua);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-box .stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--fantasy-gold);
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  color: var(--accent-aqua);
  font-size: 1.1rem;
  font-weight: 600;
  -webkit-text-stroke: 1px #000000;
  text-shadow: 
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000,
    -1px 0 0 #000000,
    1px 0 0 #000000,
    0 -1px 0 #000000,
    0 1px 0 #000000;
}



.article-image,
.about-image,
.feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover,
.about-image:hover,
.feature-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin: 2rem auto;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../image/Fish_and_fishing_202512080814.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 3rem 2rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.7), rgba(8, 131, 149, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--foam-white);
  max-width: 800px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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



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

.info-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.info-card p {
  color: var(--foam-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-aqua);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h4 {
  color: var(--accent-aqua);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}



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

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent-aqua);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-aqua);
  border: 3px solid var(--primary-deep);
}

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

.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-aqua);
}

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

.timeline-date {
  color: #000000;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

