

html {
  scroll-behavior: smooth;
}

:root {
  
  --bg-primary: #0a1628;
  --bg-secondary: #1a2332;
  --bg-tertiary: #252f3f;
  --bg-hover: #2d3a4d;
  --bg-game: #0f1a2a;
  
  
  --accent-primary: #ff6b6b;        
  --accent-secondary: #ff8e8e;      
  --accent-button: #ff5252;         
  --accent-turquoise: #4ecdc4;      
  --accent-aqua: #26d0ce;           
  --accent-success: #45b7d1;        
  
  
  --text-primary: #f0f8ff;          
  --text-secondary: #b8d4e3;        
  --text-muted: #7a9eb5;            
  --text-heading: #ffffff;
  
  
  --fs-gold: #ffb347;               
  --fs-gold-light: #ffd700;         
  --fs-coral: #ff7f50;              
  
  
  --border-color: #3a4a5c;
  --border-coral: rgba(255, 107, 107, 0.3);
  --border-turquoise: rgba(78, 205, 196, 0.3);
  
  
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  
  
  --gradient-primary: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  --gradient-water: linear-gradient(180deg, #1a4a5c 0%, #2a6b7a 50%, #1a4a5c 100%);
  --gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #4ecdc4 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
}



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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}



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: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 2rem;
  color: var(--accent-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h4 {
  font-size: 1.5rem;
  color: var(--text-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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



header {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(37, 47, 63, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-coral);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-sunset);
  transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-primary);
  background: rgba(255, 107, 107, 0.1);
}


.menu-toggle {
  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;
}

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

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

.menu-toggle:hover span {
  background: var(--accent-primary);
}


.fs-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 2px solid var(--fs-gold);
  box-shadow: var(--shadow-card);
}

.fs-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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



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

.section {
  padding: 4rem 0;
}



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

.btn-primary {
  background: var(--gradient-sunset);
  color: var(--text-heading);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

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

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



.card {
  background: linear-gradient(145deg, rgba(26, 35, 50, 0.8) 0%, rgba(37, 47, 63, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-coral);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  transition: left 0.5s ease;
  z-index: 0;
}

.card:hover::before {
  left: 0;
}

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

.card > * {
  position: relative;
  z-index: 1;
}



.hero {
  background-image: url('../image/Fishing_202512080659.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 47, 66, 0.75) 50%, rgba(10, 22, 40, 0.85) 100%),
    radial-gradient(circle at 30% 40%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.hero .card {
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

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



footer {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(37, 47, 63, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--border-turquoise);
  padding: 4rem 0 1rem;
  margin-top: 4rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sunset);
}

.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 {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-turquoise);
  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-turquoise);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

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

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

.fs-footnote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-coral);
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-turquoise);
}

.footer-section h4 {
  color: var(--accent-turquoise);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



.accordion {
  margin: 2rem 0;
}

.accordion-item {
  background: linear-gradient(145deg, rgba(26, 35, 50, 0.8) 0%, rgba(37, 47, 63, 0.8) 100%);
  border: 1px solid var(--border-coral);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--accent-turquoise);
  box-shadow: var(--shadow-card);
}

.accordion-header {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  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: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(78, 205, 196, 0.15) 100%);
}

.accordion-header h3 {
  margin: 0;
  color: var(--text-heading);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

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

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

.accordion-content strong {
  color: var(--accent-turquoise);
}



table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: linear-gradient(145deg, rgba(26, 35, 50, 0.6) 0%, rgba(37, 47, 63, 0.6) 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-coral);
}

table thead {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
}

table th {
  padding: 1rem;
  text-align: left;
  color: var(--text-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent-turquoise);
}

table td {
  padding: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

table tbody tr:hover {
  background: rgba(78, 205, 196, 0.1);
}

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



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

.stat-card {
  background: linear-gradient(145deg, rgba(26, 35, 50, 0.8) 0%, rgba(37, 47, 63, 0.8) 100%);
  border: 1px solid var(--border-turquoise);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 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: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



.tips-box {
  background: linear-gradient(145deg, rgba(255, 179, 71, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  border-left: 4px solid var(--fs-gold);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.tips-box h4 {
  color: var(--fs-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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



.comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.comparison-table table {
  min-width: 600px;
  width: 100%;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--accent-turquoise);
}



.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
  border: 1px solid var(--border-coral);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.tag:hover {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
  border-color: var(--accent-turquoise);
  transform: translateY(-2px);
}



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

.feature-card {
  background: linear-gradient(145deg, rgba(26, 35, 50, 0.8) 0%, rgba(37, 47, 63, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-coral);
  border-radius: 16px;
  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: var(--gradient-sunset);
  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-card);
}

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

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



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

.article-card {
  background: linear-gradient(145deg, rgba(26, 35, 50, 0.8) 0%, rgba(37, 47, 63, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-coral);
}

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

.article-card-content {
  padding: 1.5rem;
}

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



.game-canvas-container {
  position: relative;
  background: var(--gradient-water);
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--accent-turquoise);
  box-shadow: var(--shadow-card);
}



.info-box {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(78, 205, 196, 0.15) 100%);
  border-left: 4px solid var(--accent-primary);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  backdrop-filter: blur(10px);
}

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

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

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

.info-box.success {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.15) 0%, rgba(69, 183, 209, 0.15) 100%);
  border-left-color: var(--accent-success);
}

.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: linear-gradient(145deg, rgba(26, 35, 50, 0.8) 0%, rgba(37, 47, 63, 0.8) 100%);
  border: 1px solid var(--border-coral);
  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-card);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -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;
}



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

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

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

table tr:nth-child(even) {
  background: rgba(255, 107, 107, 0.05);
}

table tr:hover {
  background: rgba(255, 107, 107, 0.1);
}



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



@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  nav {
    flex-wrap: nowrap;
    padding: 0 1rem;
  }
  
  .menu-toggle {
    display: flex;
    order: 2;
  }
  
  .fs-display {
    order: 3;
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .logo {
    order: 1;
    font-size: 1.5rem;
    flex: 1;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.98) 0%, rgba(37, 47, 63, 0.98) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--border-coral);
    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;
    text-align: left;
    font-size: 1.1rem;
  }
  
  .nav-links a::before {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent-primary);
    padding-left: 1.5rem;
  }
  
  
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .menu-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .container {
    padding: 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  .articles-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .fs-display {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
  }
  
  table thead,
  table tbody,
  table tr {
    display: table;
    width: 100%;
    table-layout: auto;
  }
  
  table th,
  table td {
    display: table-cell;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-width: 100px;
    max-width: 200px;
  }
  
  table th {
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
    margin: 1rem 0;
  }
  
  .comparison-table table {
    min-width: 600px;
    width: 100%;
    display: table;
  }
  
  .comparison-table th,
  .comparison-table td {
    font-size: 0.8rem;
    padding: 0.6rem 0.4rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  
  .card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  
  .accordion-header h3 {
    font-size: 1.1rem;
    padding-right: 2rem;
  }
  
  
  .section {
    padding: 2rem 0;
  }
}



.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(255, 107, 107, 0.2);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.badge-success {
  background: rgba(78, 205, 196, 0.2);
  color: var(--accent-turquoise);
  border: 1px solid var(--accent-turquoise);
}

.badge-warning {
  background: rgba(255, 179, 71, 0.2);
  color: var(--fs-gold);
  border: 1px solid var(--fs-gold);
}



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

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

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

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

@media (max-width: 768px) {
  .google-map iframe {
    min-height: 300px;
  }
}



.article-image,
.card-image,
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
  object-fit: cover;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.article-image:hover,
.card-image:hover {
  transform: scale(1.02);
}

.hero-image {
  max-height: 500px;
  object-fit: cover;
}

.card-image {
  max-height: 300px;
  margin-bottom: 1rem;
}

.article-image {
  max-height: 400px;
}

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

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

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



.registration-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(26, 35, 50, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
  outline: none;
  border-color: var(--accent-turquoise);
  background: rgba(26, 35, 50, 0.95);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="password"]::placeholder {
  color: var(--text-muted);
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
}

.checkbox-group {
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent-turquoise);
}

.checkbox-group label {
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--accent-turquoise);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox-group a:hover {
  color: var(--accent-primary);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: var(--accent-primary);
}

.form-group input:valid:not(:placeholder-shown) {
  border-color: var(--accent-success);
}

@media (max-width: 768px) {
  .registration-form {
    margin-top: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
}


@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0.75rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  table th,
  table td {
    font-size: 0.75rem;
    padding: 0.5rem 0.3rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    font-size: 0.7rem;
    padding: 0.5rem 0.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

