  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }


  body {
      font-family: 'Libre Baskerville', serif;
      background-color: #f4f7fa;
      color: #2c3e50;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background-image: linear-gradient(rgba(200, 200, 200, 0.05) 2px, transparent 2px),
          linear-gradient(90deg, rgba(200, 200, 200, 0.05) 2px, transparent 2px);
      background-size: 30px 30px;
  }

  /* Header Styles */
 

  /* Hero Section */
  .hero-section {
      padding: 8rem 0 4rem;
      /* background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%); */
      position: relative;
      overflow: hidden;
  }

  .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
  }

  .hero-content {
      max-width:100%;
      margin: 0 auto;
      text-align: center;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(249, 115, 22, 0.08);
      color: #f97316;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 2rem;
      border: 1px solid rgba(249, 115, 22, 0.2);
  }

  .hero-title {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #1a1a1a;
      line-height: 1.5;
      letter-spacing: -0.02em;
  }

  .hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 3rem;
      color: #6b7280;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
      line-height: 1.5;
  }

  .hero-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
  }

  .meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #9ca3af;
      font-size: 0.875rem;
      font-weight: 500;
  }

  .author-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f97316, #ea580c);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 0.75rem;
  }

  /* Featured Image */
  .featured-image {
      margin: 4rem 0;
      text-align: center;

  }

  .featured-img {
      width: 100%;
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease;
  }

  .featured-img:hover {
      transform: scale(1.01);
  }

  /* Main Content */
  .main-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .content-section {

      border-radius: 12px;
      padding: 3rem;
      margin-bottom: 2rem;

      position: relative;
  }

  .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
  }

  .section-content {
      font-size: 1.125rem;
      line-height: 1.7;
      color: #374151;
  }

  .section-content p {
      margin-bottom: 1.5rem;
  }

  .section-content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1a1a1a;
      margin: 2.5rem 0 1rem 0;
      letter-spacing: -0.01em;
  }

  .section-content ul,
  .section-content ol {
      margin: 1.5rem 0;
      padding-left: 1.5rem;
  }

  .section-content li {
      margin-bottom: 0.75rem;
      color: #4b5563;
  }

  .highlight-box {
      background: linear-gradient(135deg, #fef3c7, #fed7aa);
      border-left: 3px solid #f97316;
      padding: 1.5rem;
      margin: 2rem 0;
      border-radius: 8px;
      font-style: italic;
      color: #92400e;
      font-weight: 500;
  }

  /* Image Gallery Section */
  .image-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.5rem;
      margin: 4rem 0;
  }

  .gallery-item {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
  }

  .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      border-color: rgba(0, 0, 0, 0.1);
  }

  .gallery-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }

  .gallery-content {
      padding: 1.5rem;
  }

  .gallery-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
  }

  .gallery-desc {
      color: #6b7280;
      font-size: 0.95rem;
      line-height: 1.6;
  }

  /* Stats Section */
  .stats-section {
      background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
      color: white;
      padding: 4rem 0;
      margin: 4rem 0;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
  }

  .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      text-align: center;
  }

  .stat-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }

  .stat-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
  }

  .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: block;
      color: #f97316;
  }

  .stat-label {
      font-size: 1rem;
      opacity: 0.9;
      font-weight: 500;
  }

  /* Quote Section */
  .quote-section {
      background: #f9fafb;
      padding: 4rem;
      border-radius: 16px;
      margin: 4rem 0;
      text-align: center;
      border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .quote-icon {
      font-size: 3rem;
      color: #f97316;
      margin-bottom: 2rem;
      opacity: 0.8;
  }

  .quote-text {
      font-size: 1.5rem;
      font-style: italic;
      line-height: 1.5;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      color: #1a1a1a;
      font-weight: 500;
  }

  .quote-author {
      color: #6b7280;
      font-weight: 500;
  }

  /* CTA Section */
  .cta-section {
      
    background: linear-gradient(135deg, #3498db, #2ecc71);
      color: white;
      padding: 4rem;
 
      text-align: center;
      margin: 4rem 0;
  }

  .cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
  }

  .cta-subtitle {
      font-size: 1.125rem;
      margin-bottom: 2rem;
      opacity: 0.95;
      font-weight: 400;
  }

  .cta-button {
      background: white;
      color: #f97316;
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
      display: inline-block;
  }

  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }


 /* Footer */
    .site-footer {
        flex-shrink: 0;
        text-align: center;
        padding: 1rem;
        color: #6b7280;
        font-size: 0.8rem;
    }

    .site-footer a {
        color: #3498db;
        text-decoration: none;
    }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
      .nav-buttons {
          display: none;
      }

      .hero-title {
          font-size: 2.5rem;
      }

      .hero-subtitle {
          font-size: 1.125rem;
      }

      .hero-meta {
          flex-direction: column;
          gap: 1rem;
      }

      .content-section {
          padding: 2rem;
          margin-bottom: 1.5rem;
      }

      .section-title {
          font-size: 1.875rem;
      }

      .section-content {
          font-size: 1rem;
      }

      .image-gallery {
          grid-template-columns: 1fr;
          gap: 1.5rem;
      }

      .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 1.5rem;
      }

      .stat-number {
          font-size: 2rem;
      }

      .quote-text {
          font-size: 1.25rem;
      }

      .cta-title {
          font-size: 2rem;
      }

      .footer-links {
          flex-direction: column;
          gap: 1rem;
      }
  }

  @media (max-width: 480px) {

      .hero-container,
      .main-content,
      .stats-container,
      .footer-content {
          padding: 0 1rem;
      }

      .content-section,
      .quote-section,
      .cta-section {
          padding: 1.5rem;
      }

      .hero-title {
          font-size: 2rem;
      }

      .stats-grid {
          grid-template-columns: 1fr;
      }
  }

  /* Smooth Animations */
  .content-section,
  .gallery-item,
  .stat-item {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
  }

  .gallery-item:nth-child(1) {
      animation-delay: 0.1s;
  }

  .gallery-item:nth-child(2) {
      animation-delay: 0.2s;
  }

  .gallery-item:nth-child(3) {
      animation-delay: 0.3s;
  }

  .stat-item:nth-child(1) {
      animation-delay: 0.1s;
  }

  .stat-item:nth-child(2) {
      animation-delay: 0.2s;
  }

  .stat-item:nth-child(3) {
      animation-delay: 0.3s;
  }

  .stat-item:nth-child(4) {
      animation-delay: 0.4s;
  }

  @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

.scroll-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceY 1.5s infinite;
}

.scroll-indicator-chevron {
    width: 20px;
    height: 20px;
    border-right: 4px solid #f97316;
    border-bottom: 4px solid #f97316;
    transform: rotate(45deg);
}


@keyframes bounceY {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, 8px);
        opacity: 0.5;
    }
}


   /* Navigation styles */
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        position: relative;
    }

    .nav-left {
        display: flex;
        align-items: center;
        /* Reduce the gap between nav items for a more compact look */
        gap: 0.5rem;
    }

    .nav-logo {
        height: 50px;
        margin-right: 0.5rem;
    }

    .webLogo {
        height: 100%;
    }

   /* Navigation buttons */
    .nav-button {
        background: #3498db;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .nav-button:hover {
        background-color: #2980b9;
    }

    .signin-btn {
        background: none;
        border: 2px solid #3498db;
        color: #3498db;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s, color 0.3s;
    }

    .signin-btn:hover {
        background-color: #3498db;
        color: white;
    }

    .getstarted-btn {
        background: linear-gradient(135deg, #3498db, #2ecc71);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .getstarted-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

    /* Style update for nav items to make them more compact */
    .nav-item {
        color: rgb(92, 91, 91);
        font-weight: bold;
        padding: 0.5rem 0.7rem;
        transition: color 0.2s;
        position: relative;
    }

    /* Add subtle hover effect */
    .nav-item:hover {
        color: #33A2C6;
    }

    /* Optional: Add a subtle separator between nav items */
    .nav-items-group {
        display: flex;
        align-items: center;
        border-left: 1px solid #e0e0e0;
        padding-left: 0.5rem;
        margin-left: 0.5rem;
    }

    .nav-buttons {
        display: flex;
        gap: 0.8rem;
        /* Slightly reduce the gap between buttons */
    }

    /* Discord icon styling */
    .fa-discord {
        color: #5865F2;
    }

    /* Hamburger menu */
    .hamburger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #2c3e50;
        margin: 3px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    .mobile-menu-item {
        display: block;
        padding: 1rem;
        margin: 0.5rem 0;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.3s;
    }

    .mobile-menu-item:hover {
        color: #3498db;
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-item {

        text-decoration: none;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .nav-item {
            display: none;
        }

        .nav-buttons {
            display: none;
        }

        .hamburger-menu {
            display: flex;
        }
    }

    /* Additional mobile styles */
    @media (max-width: 537px) {
        .webLogo2 {
            width: 100%;
            height: 100%;
        }
    }