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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #0A2540;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 37, 64, 0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-logo {
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00CED1;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  color: #00CED1;
  text-decoration: none;
  transition: opacity 0.3s;
}

.header-nav a:hover {
  opacity: 0.7;
}

.header-button {
  background: linear-gradient(135deg, #00CED1, #1E90FF);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.header-button:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00CED1;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #0A2540 0%, #1E5A8E 50%, #0A4A6E 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '🐋';
  position: absolute;
  font-size: 20rem;
  opacity: 0.1;
  top: -50px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '🐠';
  position: absolute;
  font-size: 15rem;
  opacity: 0.1;
  bottom: -30px;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content::before {
  content: '🎣 🐟 🌊';
  display: block;
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: glow 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00CED1, #FFF, #1E90FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #87CEEB;
}

.hero-button {
  display: inline-block;
  background: linear-gradient(135deg, #00CED1, #1E90FF);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.hero-button:hover {
  transform: scale(1.05);
}

/* Features */
.features {
  padding: 60px 2rem;
  background: #0A4A6E;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  text-align: center;
  color: #00CED1;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.features-item {
  text-align: center;
  padding: 2rem;
  background: rgba(30, 90, 142, 0.5);
  border-radius: 10px;
}

.features-number {
  font-size: 2.5rem;
  color: #00CED1;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.features-text {
  color: #87CEEB;
  font-size: 1.1rem;
}

/* Game Section */
.game-section {
  padding: 60px 2rem;
  background: #0A2540;
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.game-title {
  color: #00CED1;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.game-frame {
  width: 100%;
  height: 900px;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 206, 209, 0.3);
}

.game-frame iframe {
  width: 100%;
  height: 100%;
}

.game-fullscreen {
  display: inline-block;
  margin-top: 1rem;
  color: #87CEEB;
  text-decoration: none;
  transition: color 0.3s;
}

.game-fullscreen:hover {
  color: #00CED1;
}

/* FAQ */
.faq {
  padding: 60px 2rem;
  background: #0A4A6E;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  color: #00CED1;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-item {
  background: rgba(30, 90, 142, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.faq-question {
  color: #00CED1;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.faq-answer {
  color: #87CEEB;
}

/* About */
.about {
  padding: 60px 2rem;
  background: #0A2540;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  color: #00CED1;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-text {
  color: #87CEEB;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Disclaimer */
.disclaimer {
  padding: 60px 2rem;
  background: #0A4A6E;
}

.disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.disclaimer-header {
  text-align: center;
  margin-bottom: 3rem;
}

.disclaimer-icon {
  font-size: 3rem;
  color: #00CED1;
  font-weight: bold;
  margin-bottom: 1rem;
}

.disclaimer-title {
  color: #00CED1;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.disclaimer-description {
  color: #87CEEB;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.disclaimer-card {
  background: rgba(30, 90, 142, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.disclaimer-card-title {
  color: #00CED1;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.disclaimer-card-text {
  color: #87CEEB;
}

/* Contact */
.contact {
  padding: 60px 2rem;
  background: #0A2540;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  color: #00CED1;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  color: #87CEEB;
  font-weight: bold;
}

.contact-input,
.contact-textarea {
  padding: 1rem;
  border: 2px solid #1E5A8E;
  border-radius: 8px;
  background: #0A4A6E;
  color: #fff;
  font-size: 1rem;
}

.contact-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-button {
  background: linear-gradient(135deg, #00CED1, #1E90FF);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-button:hover {
  transform: scale(1.02);
}

/* Footer */
.footer {
  padding: 40px 2rem;
  background: #000;
  color: #87CEEB;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-disclaimer {
  margin-bottom: 2rem;
}

.footer-disclaimer-title {
  color: #00CED1;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-disclaimer-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-link {
  color: #87CEEB;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #00CED1;
}

.footer-copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: rgba(10, 37, 64, 0.98);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu a {
    color: #00CED1;
    text-decoration: none;
    font-size: 1.1rem;
  }

  .mobile-play-button {
    background: linear-gradient(135deg, #00CED1, #1E90FF);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
  }

  .hero-title {
    font-size: 2rem;
  }

  .game-section {
    padding: 20px 0.5rem;
  }

  .game-frame {
    height: 80vh;
    border-radius: 10px;
  }

  .game-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .disclaimer-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .game-section {
    padding: 10px 0.5rem;
  }

  .game-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .game-frame {
    height: calc(100vh - 75px);
    border-radius: 8px;
  }

  .game-fullscreen {
    display: none;
  }
}
