 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      /* Custom Earthy Brown-Green Theme */
      background: linear-gradient(-45deg, #3c2f2f, #2d5016, #4a4a2a, #1a3a1a);
      background-size: 400% 400%;
      animation: gradientWave 20s ease infinite;
      margin: 0;
      padding: 0;
      color: #fff;
      overflow-x: hidden;
      position: relative;
    }

    @keyframes gradientWave {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Floating Particles Background */
    .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
      50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
    }

    /* Background Elements */
    body::before, body::after {
      content: '';
      position: fixed;
      z-index: 0;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.3;
    }

    body::before {
      width: 300px;
      height: 300px;
      /* Earthy accent colors - moss green */
      background: #7c8471;
      top: 10%;
      left: 5%;
      animation: pulse 4s ease-in-out infinite;
    }

    body::after {
      width: 250px;
      height: 250px;
      /* Earthy accent colors - warm brown */
      background: #a0826d;
      bottom: 10%;
      right: 5%;
      animation: pulse 4s ease-in-out infinite 2s;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.3; }
      50% { transform: scale(1.2); opacity: 0.5; }
    }

    /* Simple Navbar */
    .navbar-custom {
      background: rgba(60, 47, 47, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(160, 130, 109, 0.3);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
    }


    /* Main Content */
    .peta-page {
      padding-top: 120px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .peta-intro {
      max-width: 800px;
      margin: auto;
      padding: 10px 20px 10px 20px;
      position: relative;
      z-index: 2;
    }

    .peta-intro h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #ffffff;
      /* Earthy glow - soft green-brown mix */
      text-shadow: 0 0 20px rgba(156, 169, 134, 0.6);
      animation: titleGlow 3s ease-in-out infinite;
    }

    @keyframes titleGlow {
      0%, 100% { 
        /* Earthy glow animation */
        text-shadow: 0 0 20px rgba(156, 169, 134, 0.6); 
      }
      50% { 
        /* Intense earthy glow */
        text-shadow: 0 0 30px rgba(156, 169, 134, 0.8), 0 0 40px rgba(160, 130, 109, 0.4); 
      }
    }

    .peta-intro p {
      font-size: 1.2em;
      color: #f0f0f0;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .line-deco {
      width: 120px;
      height: 4px;
      /* Earthy gradient - brown to sage green */
      background: linear-gradient(90deg, #a0826d, #9ca986, #a0826d);
      margin: 30px auto;
      border-radius: 2px;
      animation: growLine 1.5s ease forwards, shimmer 2s ease-in-out infinite 1.5s;
      /* Earthy shadow */
      box-shadow: 0 0 15px rgba(160, 130, 109, 0.5);
    }

    @keyframes growLine {
      from { width: 0; opacity: 0; }
      to { width: 120px; opacity: 1; }
    }

    @keyframes shimmer {
      0%, 100% { background-position: -200% 0; }
      50% { background-position: 200% 0; }
    }

    /* Map Sections */
    .map-section {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .map-description {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-align: left;
      position: relative;
      overflow: hidden;
    }

    .map-description::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: slideShine 3s ease-in-out infinite;
    }

    @keyframes slideShine {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    .map-description h2 {
      font-size: 1.8rem;
      /* Earthy accent color - sage green */
      color: white;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .map-description p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #e0e0e0;
      text-align: justify;
    }

    .peta-img-wrapper {
      position: relative;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
    }

    .peta-img-wrapper::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      /* Earthy border gradient - brown and green tones */
      background: linear-gradient(45deg, #a0826d, #9ca986, #7c8471, #a0826d);
      background-size: 400% 400%;
      animation: borderGlow 3s ease infinite;
      border-radius: 20px;
      z-index: -1;
    }

    @keyframes borderGlow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .peta-img {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      cursor: zoom-in;
      transition: all 0.4s ease;
      filter: brightness(0.9);
    }

    .peta-img:hover {
      transform: scale(1.02);
      filter: brightness(1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    /* Modal */
    .modal-peta {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
    }

    .modal-peta.show {
      display: flex;
      animation: modalFadeIn 0.4s ease;
    }

    @keyframes modalFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-img-zoom {
      max-width: 90%;
      max-height: 90%;
      border-radius: 15px;
      box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
      animation: modalZoomIn 0.4s ease;
    }

    @keyframes modalZoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .close-btn {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 40px;
      color: white;
      cursor: pointer;
      z-index: 10001;
      transition: all 0.3s ease;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .close-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
    }

    /* Scroll Animations */
    .animate {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .animate.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up {
      transform: translateY(30px);
    }

    .fade-left {
      transform: translateX(-50px);
    }

    .fade-right {
      transform: translateX(50px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .peta-intro h1 {
        font-size: 2.2rem;
      }
      
      .nav-links {
        display: none;
      }
      
      .map-description {
        padding: 20px;
        text-align: center;
      }
      
      .modal-img-zoom {
        max-width: 95%;
        max-height: 80%;
      }
      
      .close-btn {
        top: 20px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
      }
    }

    /* Loading Animation */
    .loading-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
              border-top-color: #a0826d;
      animation: spin 1s ease-in-out infinite;
      margin-left: 10px;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }