/* ============================================
   FJORDFUN.SITE - MINIMAL BEGINNER STYLE
   ============================================ */

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

html {
  scroll-behavior: auto;
}

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

/* ============================================
   NAVBAR
   ============================================ */

.neon-navbar {
  background-color: #333;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.neon-navbar.scrolled {
  padding: 0.5rem 0;
}

.neon-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
}

.neon-logo {
  height: 45px;
  width: auto;
}

.neon-brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.neon-toggler {
  border: 1px solid white;
  background-color: transparent;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
}

.neon-toggler i {
  font-size: 1.5rem;
}

.neon-navbar .nav-link {
  color: white;
  font-weight: normal;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  text-decoration: none;
  display: inline-block;
}

.neon-navbar .nav-link:hover {
  background-color: #555;
}

.neon-navbar .nav-link.active {
  background-color: #666;
}

/* ============================================
   HERO SECTION
   ============================================ */

.neon-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
  background-color: #e8e8e8;
}

.neon-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.neon-hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.neon-cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.neon-cta-btn:hover {
  background-color: #555;
}

.neon-cta-btn i {
  margin-right: 0.5rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.neon-features {
  padding: 4rem 0;
  background-color: #fff;
}

.neon-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.neon-section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.neon-section-title p {
  color: #666;
  font-size: 1rem;
}

.neon-feature-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
}

.neon-feature-box:hover {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.neon-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.neon-feature-box h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.neon-feature-box p {
  color: #666;
  font-size: 0.95rem;
}

/* ============================================
   NOTICE BANNER
   ============================================ */

.neon-notice-banner {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 2rem;
  margin: 2rem 0;
}

.neon-notice-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.neon-notice-icon {
  font-size: 2rem;
  color: #ff9800;
}

.neon-notice-text h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.neon-notice-text p {
  color: #666;
  margin: 0;
}

.neon-notice-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.neon-notice-link:hover {
  text-decoration: underline;
}

/* ============================================
   GAMES SECTION
   ============================================ */

.neon-game-section {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

.neon-game-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.neon-game-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.neon-iframe-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #fff;
}

.neon-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.neon-about {
  padding: 4rem 0;
  background-color: #fff;
}

.neon-about-image {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}

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

.neon-about-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.neon-about-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.neon-testimonials {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

.neon-testimonial-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
}

.neon-testimonial-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.neon-testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.neon-testimonial-text {
  color: #666;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.neon-testimonial-author {
  font-weight: bold;
  color: #333;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.neon-contact {
  padding: 4rem 0;
  background-color: #fff;
}

.neon-contact-info {
  margin-bottom: 2rem;
}

.neon-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.neon-contact-item:hover {
  border-color: #999;
}

.neon-contact-form {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 2rem;
}

.neon-contact-form h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

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

.neon-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
  font-size: 0.9rem;
}

.neon-form-control {
  width: 100%;
  padding: 0.75rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

.neon-form-control:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

textarea.neon-form-control {
  resize: vertical;
  min-height: 120px;
}

.neon-submit-btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.neon-submit-btn:hover {
  background-color: #555;
}

/* ============================================
   FOOTER
   ============================================ */

.neon-footer {
  background-color: #333;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.neon-footer-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.neon-footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.neon-footer-brand h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.neon-footer-brand p {
  color: #ccc;
}

.neon-footer-links h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.neon-footer-links ul {
  list-style: none;
}

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

.neon-footer-links a {
  color: #ccc;
  text-decoration: none;
}

.neon-footer-links a:hover {
  color: white;
}

.neon-footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
  font-size: 0.9rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.neon-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.neon-scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.neon-scroll-top:hover {
  background-color: #555;
}

/* ============================================
   POPUP
   ============================================ */

.neon-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.neon-popup.show {
  opacity: 1;
  visibility: visible;
}

.neon-popup-content {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.neon-popup-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.neon-popup-header i {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  display: block;
}

.neon-popup-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.neon-popup-body {
  padding: 2rem;
  color: #666;
}

.neon-popup-body > p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #333;
}

.neon-popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.neon-popup-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #666;
}

.neon-popup-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

.neon-popup-warning {
  background-color: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 1rem;
  margin: 1rem 0 0;
  border-radius: 3px;
  font-size: 0.9rem;
  color: #333;
}

.neon-popup-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.neon-popup-btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.neon-popup-btn:hover {
  background-color: #555;
}

/* ============================================
   PAGE CONTENT (disclaimer, privacy, terms)
   ============================================ */

.neon-page-content {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  background-color: #f5f5f5;
}

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

.neon-page-header i {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
  display: block;
}

.neon-page-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.neon-content-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 4px solid #333;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.neon-content-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.neon-content-card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.neon-content-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin: 1rem 0 0.5rem;
}

.neon-content-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.neon-content-card ul {
  color: #666;
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.neon-content-card li {
  margin-bottom: 0.5rem;
}

.neon-content-card a {
  color: #0066cc;
  text-decoration: none;
}

.neon-content-card a:hover {
  text-decoration: underline;
}

.neon-content-card strong {
  color: #333;
  font-weight: bold;
}

.neon-page-actions {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .neon-hero-title {
    font-size: 2rem;
  }

  .neon-hero-subtitle {
    font-size: 1rem;
  }

  .neon-section-title h2 {
    font-size: 1.8rem;
  }

  .neon-page-header h1 {
    font-size: 1.8rem;
  }

  .neon-notice-content {
    flex-direction: column;
    text-align: center;
  }

  .neon-contact-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .neon-hero-title {
    font-size: 1.5rem;
  }

  .neon-brand-text {
    font-size: 1.2rem;
  }

  .neon-cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .neon-popup-content {
    width: 95%;
  }
}
