body {
  font-family: 'Signika Negative', sans-serif;
  background-color: #121212;
  color: #ffffff;
}

.fortune-title {
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  color: #c93b2d;
  text-align: center;
  margin-bottom: 20px;
}

.fortune-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.container {
  max-width: 900px;
  margin: 0 auto;
}
#banner-explorer {
  background-color: #1f1f1f;
  padding: 15px 0;
}

.voyage-navigator {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.burger-icon {
  display: none;
  cursor: pointer;
}

.burger-icon span {
  font-size: 2rem;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.dock-anchor {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.dock-anchor .material-icons {
  margin-right: 5px;
}

.captain-block {  
  min-height: 80vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: linear-gradient(45deg, #2e2e2e 0%, #1a1a1a 100%);
  text-align: center;
  margin: 0 auto;
}

.btn-play {
  display: inline-block;
  padding: 15px 25px;
  background-color: #c93b2d;
  color: #121212;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}

.btn-play:hover {
  background-color: #e96b5f;
}

#crew-sign {
  background-color: #1f1f1f;
  text-align: center;
  padding: 15px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .burger-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #1f1f1f;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 4px;
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.nav-open {
    transform: translateY(0);
  }
}

#royal-about {
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}

.about-title {
  font-family: 'Monoton', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #c93b2d;
}

.about-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 6px;
}

.about-description p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

#fortune-advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.advantage-card {
  background: linear-gradient(135deg, #c93b2d 0%, #f9ea9f 100%);
  border-radius: 8px;
  color: #121212;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  flex: 1 1 280px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
}

.advantage-card:hover {
  transform: scale(1.05) rotate(1deg);
}

.advantage-card h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.advantage-card p {
  font-size: 1rem;
  line-height: 1.4;
}

.advantage-icon {
  font-size: 3rem;
  color: #121212;
}

#call-to-adventure {
  position: relative;
  height: 60vh;
  background: url('assets/parallax-bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cta-title {
  position: relative;
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  color: #c93b2d;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

#game-showcase {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-container {
  display: flex;
  width: 600px;
  max-width: 100%;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.game-image {
  width: 50%;
  object-fit: cover;
}

.game-info {
  width: 50%;
  padding: 30px;
  text-align: center;
}

.game-title {
  font-size: 2.5rem;
  font-family: 'Monoton', cursive;
  color: #c93b2d;
  margin-bottom: 20px;
}

.btn-play-game {
  display: inline-block;
  padding: 15px 30px;
  background-color: #c93b2d;
  color: #121212;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-play-game:hover {
  background-color: #e96b5f;
}

@media (max-width: 768px) {
  .game-container {
    flex-direction: column;
  }

  .game-image,
  .game-info {
    width: 100%;
  }
}

#testimonials {
  padding: 60px 20px;
  text-align: center;
  background-color: #1a1a1a;
}

.testimonials-title {
  font-family: 'Monoton', cursive;
  font-size: 2.5rem;
  color: #c93b2d;
  margin-bottom: 30px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-card {
  background: linear-gradient(135deg, #2e2e2e, #3d3d3d);
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.testimonial-author span {
  font-weight: bold;
  color: #c93b2d;
}

@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }
}

#call-to-adventure-2 {
  position: relative;
  height: 60vh;
  background: url('assets/parallax-bg2.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cta-title {
  position: relative;
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  color: #c93b2d;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

@media (max-width: 768px) {
  .cta-title  {
    font-size: 2rem;
  }
}

#newsletter {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
  color: #ffffff;
}

.newsletter-title {
  font-family: 'Monoton', cursive;
  font-size: 2.5rem;
  color: #c93b2d;
  margin-bottom: 10px;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.subscription-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

#email-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #c93b2d;
  border-radius: 4px;
  font-size: 1rem;
}

#subscribe-btn {
  padding: 12px 20px;
  background-color: #c93b2d;
  color: #121212;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

#subscribe-btn:hover {
  background-color: #e96b5f;
}

.subscription-message {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #c93b2d;
}

@media (max-width: 600px) {
  .subscription-form {
    flex-direction: column;
    gap: 10px;
  }
}

#faq {
  padding: 60px 20px;
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

.faq-title {
  font-family: 'Monoton', cursive;
  font-size: 2.5rem;
  color: #c93b2d;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #444;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.2rem;
  background: none;
  border: none;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question:hover {
  color: #c93b2d;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
  padding: 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

#contact-us {
  padding: 60px 20px;
  background: #1a1a1a;
  color: #ffffff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contact-info {
  width:  calc(40% - 20px);
}

.contact-title {
  font-family: 'Monoton', cursive;
  font-size: 2rem;
  color: #c93b2d;
  margin-bottom: 20px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-info .material-icons {
  font-size: 1.5rem;
  color: #c93b2d;
}

.contact-form-container {
  width:  calc(55% - 20px);
  padding: 30px;
  background: url('assets/form-bg.jpg') no-repeat center center/cover rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .contact-info,
  .contact-form-container {
    width: 100%;
  }
  .contact-title {
    text-align: center;
  }
  .contact-info p {
    justify-content: center;
  }
}

.universal-form input,
.universal-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #c93b2d;
  border-radius: 4px;
  font-size: 1rem;
}

.universal-form textarea {
  height: 120px;
  resize: none;
}

.universal-form button {
  width: 100%;
  padding: 12px;
  background-color: #c93b2d;
  color: #121212;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.universal-form button:hover {
  background-color: #e96b5f;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #2e2e2e;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
  position: relative;
}

.modal-content h2 {
  color: #c93b2d;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 1.2rem;
  color: #ffffff;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
}

#disclaimer {
  padding: 60px 20px;
  background: #c93b2d;
  color: #121212;
  text-align: center;
  border-top: 4px solid #121212;
}

.disclaimer-title {
  font-family: 'Monoton', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
}

.disclaimer-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.5;
  text-align: left;
}

.help-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.help-links a {
  font-size: 1.1rem;
  font-weight: bold;
  color: #121212;
  text-decoration: none;
  background: #ffcc00;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.help-links a:hover {
  background: #ffe680;
}

#site-footer {
  padding: 40px 20px;
  background: #121212;
  color: #ffffff;
  text-align: center;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-age .material-icons {
  font-size: 2.5rem;
  color: #c93b2d;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links a {
  font-size: 1rem;
  color: #c93b2d;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.kraken-cookie-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  z-index: 9999;
}

.kraken-cookie-content p {
  font-size: 1rem;
}

.kraken-cookie-content a {
  color: #c93b2d;
  text-decoration: underline;
}

#kraken-cookie-accept {
  background: #c93b2d;
  color: #121212;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

#kraken-cookie-accept:hover {
  background: #e96b5f;
}

.leviathan-age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.leviathan-age-box {
  background: #2e2e2e;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.leviathan-icon {
  font-size: 4rem;
  color: #c93b2d;
}

.leviathan-age-box h2 {
  color: #c93b2d;
  margin-bottom: 10px;
}

.leviathan-age-box p {
  font-size: 1.2rem;
  color: #ffffff;
}

.leviathan-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.leviathan-buttons button {
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

#leviathan-confirm {
  background: #c93b2d;
  color: #121212;
}

#leviathan-confirm:hover {
  background: #e96b5f;
}

#leviathan-decline {
  background: #d9534f;
  color: #ffffff;
}

#leviathan-decline:hover {
  background: #c9302c;
}
