    /* Mobile-specific adjustments */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        text-align: center;
        padding: 1rem; /* Adjust padding for smaller screens */
      }

      nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem; /* Add space between logo and nav on mobile */
      }

      nav li {
        margin-bottom: 0.5rem;
        width: 90%;
        text-align: center;
      }

      main {
        display: flex;
        flex-direction: column;
        padding: 1rem;
      }

      #player-section {
        margin: 1rem 0;
      }

      #controls {
        flex-direction: column;
        align-items: center;
      }

      #controls button {
        width: 100%;
        margin-bottom: 0.5rem;
      }

      #slideshow-section img,
      #video-section video,
      #art-display {
        max-width: 100%;
        height: auto;
      }

      #whatsapp-button {
        bottom: 70px;
        right: 10px;
        padding: 12px;
        font-size: 20px;
      }

      .news-ticker {
        font-size: 12px;
        flex-direction: column;
        padding: 4px 0;
      }

      .ticker-title {
        padding: 4px 8px;
      }
    }

    :root {
      --aztec-gold: #DAA520; /* Rich gold for highlights */
      --deep-red: #8B0000; /* Deep, earthy red */
      --turquoise: #40E0D0; /* Bright, vibrant turquoise */
      --earth-brown: #5C4033; /* grounding brown */
      --obsidian-black: #2C3539; /* Dark, almost black */
      --papyrus-white: #F5F5DC; /* Soft, off-white for text */
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif; /* A clean, readable font */
    }

    body {
      color: var(--papyrus-white);
      background: linear-gradient(135deg, var(--earth-brown) 0%, var(--obsidian-black) 100%);
      background-size: 400% 400%;
      animation: backgroundShift 20s ease infinite alternate;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      position: relative; /* For background pattern */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Subtle Aztec pattern in the background */
    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('images/aztecsBg.png');
      opacity: 5.2;
      pointer-events: none;
      z-index: -1;
    }

    @keyframes backgroundShift {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 100% 50%;
      }
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      background: rgba(0, 0, 0, 0.7); /* Slightly darker header */
      border-bottom: 3px solid var(--aztec-gold);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    /* Links within the header */
    nav a {
      color: var(--papyrus-white); /* White text for better contrast */
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    nav a:hover {
      color: var(--aztec-gold); /* Gold on hover */
      transform: translateY(-2px);
    }

    nav ul {
      display: flex;
      gap: 1rem;
      list-style: none;
    }

    nav li {
      padding: 0.5rem 1rem;
      background: var(--deep-red); /* Red background for nav items */
      border-radius: 5px;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
      border: 1px solid var(--aztec-gold); /* Gold border for nav items */
    }

    nav li:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
      background-color: var(--turquoise); /* Turquoise on hover */
    }

    #logo {
      font-family: 'Cinzel Decorative', cursive; /* More elaborate font for logo */
      font-size: 2.2rem;
      font-weight: 700;
      text-shadow: 0 0 15px var(--aztec-gold), 0 0 30px var(--turquoise); /* Gold and turquoise glow */
      animation: glow 3s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px var(--aztec-gold), 0 0 20px var(--turquoise);
      }
      to {
        text-shadow: 0 0 25px var(--aztec-gold), 0 0 50px var(--turquoise);
      }
    }

    main {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
      gap: 2rem; /* Increased gap */
      padding: 2rem;
    }

    section {
      background: rgba(44, 53, 57, 0.85); /* Slightly transparent obsidian black for sections */
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
      padding: 1.5rem;
      border: 2px solid var(--deep-red); /* Red border for sections */
      transition: transform 0.3s ease;
    }

    section:hover {
      transform: translateY(-5px);
    }

    h2 {
      font-family: 'Cinzel Decorative', cursive;
      color: var(--aztec-gold); /* Gold headings */
      margin-bottom: 1rem;
      text-align: center;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    #video-section video,
    #slideshow-section img,
    #art-display {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      border: 2px solid var(--turquoise); /* Turquoise border for media */
    }

    #player-section {
      background: var(--obsidian-black);
      border: 4px solid var(--aztec-gold); /* Gold border for player */
      border-radius: 20px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    #player-section::before,
    #player-section::after {
      content: '';
      position: absolute;
      width: 120%;
      height: 6px; /* Thicker borders */
      background: linear-gradient(90deg, var(--deep-red), var(--aztec-gold), var(--turquoise));
      top: 0;
      left: -10%;
      animation: scrollBar 5s linear infinite;
    }

    #player-section::after {
      top: auto;
      bottom: 0;
      animation-direction: reverse;
    }

    @keyframes scrollBar {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(100%);
      }
    }

    #playlist {
      list-style: none;
      width: 100%;
      max-height: 250px; /* Slightly taller playlist */
      overflow-y: auto;
      margin-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 0.5rem;
    }

    #playlist li {
      padding: 0.7rem;
      cursor: pointer;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s, color 0.3s;
    }

    #playlist li:hover {
      background: rgba(64, 224, 208, 0.2); /* Light turquoise hover */
      color: var(--aztec-gold);
    }

    #playlist li.active {
      background: var(--deep-red); /* Active song in red */
      color: var(--papyrus-white);
      font-weight: bold;
    }

    #controls {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    #controls button {
      padding: 0.8rem 1.5rem; /* Larger buttons */
      border: none;
      border-radius: 8px;
      background: var(--turquoise); /* Turquoise buttons */
      color: var(--obsidian-black); /* Dark text on buttons */
      font-size: 1.1rem;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    #controls button:hover {
      background-color: var(--aztec-gold); /* Gold on hover */
      transform: translateY(-2px);
      color: var(--papyrus-white);
    }

    footer {
      text-align: center;
      padding: 1.5rem;
      background: rgba(0, 0, 0, 0.8);
      color: var(--papyrus-white);
      border-top: 3px solid var(--aztec-gold);
      box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
    }

    /* News Ticker Styling */
    .news-ticker {
      display: flex;
      align-items: center;
      background-color: var(--obsidian-black);
      color: var(--papyrus-white);
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      padding: 10px 0;
      overflow: hidden;
      position: fixed;
      bottom: 0;
      width: 100%;
      z-index: 9999;
      box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.5);
      border-top: 2px solid var(--aztec-gold);
    }

    .ticker-title {
      background-color: var(--deep-red);
      padding: 10px 20px;
      font-weight: bold;
      white-space: nowrap;
      color: var(--papyrus-white);
      border-right: 2px solid var(--aztec-gold);
    }

    .ticker-wrap {
      overflow: hidden;
      flex: 1;
    }

    .ticker-content {
      display: inline-block;
      white-space: nowrap;
      padding-left: 100%;
      animation: scroll-left 75s linear infinite;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    /* WhatsApp Button Styling */
    #whatsapp-button {
      position: fixed;
      bottom: 100px;
      right: 20px;
      background-color: #25d366; /* Standard WhatsApp green */
      color: white;
      font-size: 28px; /* Larger icon */
      padding: 18px; /* Larger button */
      border-radius: 50%;
      text-align: center;
      text-decoration: none;
      z-index: 1000;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    #whatsapp-button:hover {
      transform: scale(1.1) rotate(5deg);
      background-color: #1DA851; /* Slightly darker green on hover */
    }

    /* Chat Button (if used) */
    #chat-button {
      position: fixed;
      bottom: 170px; /* Position above WhatsApp button */
      right: 20px;
      background-color: var(--turquoise); /* Turquoise for chat button */
      color: var(--obsidian-black);
      font-size: 24px;
      padding: 15px;
      border-radius: 50%;
      text-align: center;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    #chat-button:hover {
      transform: scale(1.1);
      background-color: var(--aztec-gold);
    }

    /* Chat Box Styling */
    #chat-box {
      display: none;
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 320px; /* Slightly wider chat box */
      max-height: 450px; /* Taller chat box */
      background-color: var(--papyrus-white);
      border: 2px solid var(--deep-red); /* Red border for chat box */
      border-radius: 10px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      flex-direction: column;
      z-index: 1000;
      overflow: hidden;
      color: var(--obsidian-black); /* Dark text inside chat box */
    }

    #chat-header {
      background-color: var(--deep-red); /* Red header for chat box */
      color: var(--papyrus-white);
      padding: 12px;
      display: flex;
      justify-content: space-between;
      font-weight: bold;
      font-family: 'Cinzel Decorative', cursive; /* Decorative font for chat header */
      font-size: 1.1em;
      border-bottom: 2px solid var(--aztec-gold);
    }

    #chat-messages {
      padding: 10px;
      height: 280px; /* Adjust height */
      overflow-y: auto;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
    }

    #chat-input {
      border: none;
      border-top: 1px solid var(--aztec-gold);
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
      outline: none;
      font-family: 'Montserrat', sans-serif;
    }

    .bot-message {
      background-color: #f1f1f1;
      padding: 8px 12px;
      border-radius: 10px;
      margin-bottom: 8px;
      max-width: 90%;
    }

    .user-message {
      background-color: #dcf8c6;
      padding: 8px 12px;
      border-radius: 10px;
      margin-bottom: 8px;
      align-self: flex-end;
      max-width: 90%;
      text-align: right;
    }

