    /* 
  === GLOBAL TYPOGRAPHY RESET + FIRE THEME STRUCTURE ===

  This block sets the foundational visual language for the entire site.
  - It resets default browser margin, padding, and scroll behavior for a clean slate.
  - Applies a transparent background so visual elements (video, mist, etc.) show through.
  - Defines the global font family, base font size, line height, and default text color.

  A custom font "CrushYourEnemies" is loaded and reserved for cinematic, hero-style elements.

  All h1–h3 headers use the Cinzel serif font to evoke a mythic tone, 
  accented with gold color and soft text-shadow glows for a divine spark.

  Paragraphs are styled for readability with centered alignment, max-width limits, 
  and subtle glow. The Cinzel font is also applied here to preserve thematic unity.

  Special class `.intro-text` and ID `#line` receive elevated styling — 
  larger uppercase text using the custom "CrushYourEnemies" font, 
  increased letter spacing, glowing shadows, and faded white opacity — 
  perfect for intros, proclamations, or immersive callouts.
*/
    html, body {
        height: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif !important;
        font-size: 13px;
        line-height: 1.5;
        color: #fff;
        top: 0px !important;
        background: transparent;
    }
    
    @font-face {
        font-family: 'CrushYourEnemies';
        src: url('../fonts/Crushyourenemies.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    
    h1, h2, h3 {
        font-family: 'Cinzel', serif !important;
        margin-bottom: 1rem;
        color: gold;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #fff !important;
        max-width: 800px;
        margin: 0 auto 1.5rem;
        text-shadow: 0 0 5px rgba(255,255,255,0.3);
        font-family: 'Cinzel', serif !important;
    }
    
    /* === EXCEPTION TYPOGRAPHY === */
        .intro-text,
        .intro-text p,
        #line {
        font-family: 'CrushYourEnemies', serif !important;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 1px;
        line-height: 2.0;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
        text-transform: uppercase;
    }
    
    .metric-value,
    .orange-text,
    .fire-orange {
        color: #ff8800 !important;
        font-size: 0.85rem !important;
        font-family: monospace !important;
    }
    
    .section-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-shadow: none;
        color: #eee;
        font-family: 'Cinzel', serif !important;
    }
    
    @media (max-width: 768px) {
    p {
            font-size: 0.9rem !important;
            line-height: 1.5 !important;
        }
    }
    
    
   /* 
  === Fire Background Video Styling ===

  This is the **core immersive backdrop** that plays behind every section.

  #backgroundVideo:
  - Fixed to the viewport so it stays static as content scrolls or shifts.
  - Fullscreen width and height (100vw x 100vh) ensures total coverage.
  - `object-fit: cover` scales the video naturally, maintaining aspect ratio without distortion.
  - `z-index: -1` places the video behind all other content layers.
  - `filter: brightness(0.45)` darkens the footage slightly to enhance text readability above it.
  - `pointer-events: none` ensures the video doesn't interfere with any clicks or hover events.

  💡 This is the **atmospheric heartbeat** of your world. 
     It runs silently under all, setting tone and texture without ever stealing focus.
*/
    
    /* === Fire Background Video Styling === */
    #backgroundVideo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.45);
        pointer-events: none;
    }
    
    /* 
  === HEADER LAYOUT + GOOGLE TRANSLATE WIDGET ===

  #site-header:
  Anchors a top-of-page placeholder bar, fixed across all pages, 
  with a transparent background — can act as a structural placeholder 
  for scroll syncing or layering UI beneath/above.

  .header-container:
  This is the visual header bar. Fixed to the top, styled with 
  semi-transparent black for an elegant overlay effect. 
  It contains site elements like logo, wallet info, or navigation 
  and uses flexbox to distribute space between items.

  .custom-translate:
  Positions the Google Translate dropdown in the lower-left corner 
  of the screen. Styled with fire theme typography (Cinzel), 
  stacked column layout, and a clean modern spacing.

  .custom-translate select.goog-te-combo:
  Customizes the look of the injected Google Translate <select>. 
  Applies dark styling, glowing borders on hover, and a 
  branded look that matches the Tower’s visual theme.

  .goog-te-menu2 and sub-elements:
  Deep restyling of Google’s injected translation menu. 
  Overrides default white styling and adds dark panels, gold glow hovers, 
  rounded corners, and scroll control — transforming a generic widget 
  into something that blends with your world seamlessly.

  Attribution (logo + text):
  Even Google's logo and credit line are stylized here to reflect 
  the fire theme and maintain aesthetic consistency.

  @media max-width:
  The entire translate widget is hidden on small screens to prevent 
  layout clutter. This ensures focus on the core UX for mobile users.

  body top fix:
  Resolves a common "body jump" glitch that occurs 
  when fixed headers shift layout unexpectedly.

  💡 This block ensures the **top of your world is locked, styled, and internationalized** — 
  with translation available and intentional design from edge to edge.
*/
      
    #site-header {
        position: fixed;
        width: 100%;
        height: 40px; /* <-- Set your desired nav bar height */
        top: 0;
        left: 0;
        z-index: 10000;
        background: rgba(0, 0, 0, 0);
    }
    
    /* 🌟 Main Header Styling */
    .header-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    }
    
    /* === GOOGLE TRANSLATE CONTAINER === */
    .custom-translate {
        position: fixed;
        bottom: 75px;
        left: 20px;
        z-index: 9999;
        font-family: 'Cinzel', serif;
        font-size: 14px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    /* === MAIN DROPDOWN STYLING === */
    .custom-translate select.goog-te-combo {
        width: 200px;
        background-color: #1a1a1a;
        color: #ffffff;
        border: 1px solid #333;
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 14px;
        font-family: 'Cinzel', serif;
        cursor: pointer;
        appearance: none;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    }

    /* Hover effect on the select box */
    .custom-translate select.goog-te-combo:hover {
        border-color: #ff8800;
        color: #ff8800;
    }
    
    /* === GOOGLE-INJECTED DROPDOWN MENU ITEMS === */
    .goog-te-menu-value span,
    .goog-te-menu2-item div {
        font-family: 'Cinzel', serif !important;
        color: #ffffff !important;
        background-color: #1a1a1a !important;
        border-radius: 10px !important;
        transition: background-color 0.2s ease;
    }
    
    /* Hover for language items */
    .goog-te-menu2-item div:hover {
    background-color: #2a2a2a !important;
    color: #ff8800 !important;
    }
    
    /* === DROPDOWN PANEL STYLING === */
    .goog-te-menu2 {
        background-color: #000 !important;
        border-radius: 12px !important;
        padding: 8px !important;
        border: 1px solid #333 !important;
    }
    
    /* === RESTORE AND STYLE GOOGLE ATTRIBUTION === */
    .goog-logo-link {
        display: inline-block !important;
        color: #888 !important;
        font-size: 12px !important;
        text-decoration: none !important;
        margin-left: 6px;
    }
    
    .goog-logo-link:hover {
        color: #ff8800 !important;
    }
    
    .goog-te-gadget span {
        display: inline !important;
        font-size: 12px !important;
        color: #aaa !important;
    }
    
    /* === RESPONSIVE HIDE FOR SMALL DEVICES === */
    @media screen and (max-width: 768px) {
            .custom-translate {
            display: none;
        }
    }
    
    /* === FIX BODY JUMP BUG === */
    body {
        top: 0px !important;
    }
    
    /* 
  === 🌐 Web3 Component Dashboard Styling ===

  This section styles the **core wallet & network dashboard UI** — visible in the top-right or fixed areas of the interface.

  .logo-wrap img:
  - Controls sizing of the project’s logo in the dashboard region.

  .dashboard-section:
  - Arranges wallet data and controls in a single horizontal row.
  - Uses `flex` layout with spacing (`gap`) for a clean, responsive arrangement.

  .wallet-address, .wallet-balance:
  - Displays the current user’s wallet address and token balance in simple text.
  - Styled for clarity, consistent font size, and visibility against dark backgrounds.

  .logout-btn:
  - A styled button for disconnecting the wallet session.
  - Rounds the edges, matches theme color, and includes hover feedback.

  #network-select:
  - A **fixed-position network selector dropdown** that stays pinned in the interface.
  - Uses dark mode theme, fire-accent hover behavior, and `z-index: 9999` to stay on top.
  - Clean rounded edges, custom `box-shadow`, and tailored font settings for UI consistency.

  Scrollbar & hover customizations:
  - Ensures the dropdown remains elegant, scrolled smoothly, and matches the fire theme.
  - Includes hover glow and highlight feedback for usability.

  #switch-network-button img:
  - Used if the user is switching via an icon/button, not just the dropdown.
  - Ensures consistent image sizing and spacing.

  🔥 This block defines **essential crypto-native UI** — wallet, network, and logout are the keys to all on-chain action.
*/


    /* 🌟 Logo Styling */
    .logo-wrap img {
        height: 50px;
        max-width: 200px;
    }
    
    /* 🌟 Wallet Info and Network Selector */
    .dashboard-section {
        display: flex;
        align-items: center;
        gap: 15px;
        color: white;
    }
    
    .wallet-address,
    .wallet-balance {
        font-size: 14px;
        color: white;
    }

    .logout-btn {
        background-color: #d9534f;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .logout-btn:hover {
        background-color: #c9302c;
    }
    
    #network-select {
        position: fixed;        /* 🔥 Anchor it anywhere on screen */
        top: 15px;              /* 👈 Set vertical position */
        right: 80px;            /* 👈 Set horizontal position (or use left) */
        height: 40px;
        width: 200px;
        margin: 0;
        background-color: #1a1a1a;
        color: white;
        border: 1px solid #333;
        border-radius: 12px;
        appearance: none;
        padding: 8px 12px;
        font-size: 14px;
        font-family: 'Cinzel', serif;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        z-index: 9999; /* Ensure it stays above content */
    }

    /* Optional: Hover effect to match theme */
    #network-select:hover {
        border-color: #ff8800;
        color: #ff8800;
    }

    /* Custom dropdown arrow */
    #network-select::-ms-expand {
        display: none;
    }
    
    #network-select:focus {
        outline: none;
        box-shadow: 0 0 5px #444;
    }
    
    /* Custom scrollbar for the dropdown */
    #network-select option {
        background-color: #1a1a1a;
        color: white;
    }
    
    #network-select::-webkit-scrollbar {
        width: 6px;
    }
    
    #network-select::-webkit-scrollbar-thumb {
        background-color: #444;
        border-radius: 3px;
    }
    
    #network-select::-webkit-scrollbar-track {
        background-color: #2a2a2a;
    }
    
    #switch-network-button img {
        margin-right: 40px; /* ✅ Added margin-right */
        height: 50px;
        width: 50px;
        cursor: pointer;
    }
    
    @media (max-width: 768px) {
  .dashboard-section,
  #network-select,
  .wallet-address,
  .wallet-balance,
  .logout-btn {
    display: none !important;
  }
}

/* === 🔱 PRIMARY NAVIGATION WRAPPER === */
/* This is the main navigation bar fixed near the top of the screen. 
   It sits just below the header and stays visible as the user scrolls. */
#primary-navigation {
  background: rgba(0, 0, 0, 0.8);  /* Semi-transparent black background */
  position: fixed;                /* Anchors it to the viewport */
  top: 85px;                     /* Offset from the top (header height) */
  left: 0;
  width: 100%;
  z-index: 999;                   /* High stacking to sit above most elements */
}

/* === 🌐 MAIN MENU STRUCTURE === */
/* This wraps the top-level nav items inside the nav bar */
.menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 30px;                      /* Space between menu items */
}

.menu-item {
  position: relative;            /* Needed for absolute sub-menu positioning */
}

.menu-item > a {
  color: #fff;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  padding: 12px 16px;
  display: block;
  transition: color 0.3s;
}

.menu-item > a:hover {
  color: #ff8800;                /* Fire orange hover effect */
}

/* === ⬇️ DROPDOWN STYLING === */
/* Hidden by default and shown on hover; absolute positioning aligns below menu item */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(0, 0, 0);
  padding: 15px;
  z-index: 1000;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.75);
  scrollbar-width: thin;
  scrollbar-color: #444 #111;
}

/* === 🔍 WebKit Scrollbar Overrides === */
.sub-menu::-webkit-scrollbar {
  width: 6px;
}
.sub-menu::-webkit-scrollbar-track {
  background: #111;
}
.sub-menu::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 3px;
}

/* === 🔥 Hover Reveal === */
/* This shows the dropdown when hovering over the menu item */
.menu-item:hover .sub-menu {
  display: block;
}

/* === Section Headings Within Submenus === */
.sub-menu h2 {
  color: #ff8800;
  font-size: 14px;
  margin: 8px 0;
  font-family: 'Cinzel', serif;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

/* === Menu Item Inside Submenu === */
.sub-menu li {
  list-style: none;
  margin-bottom: 8px;
}

.sub-menu li a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
  padding: 5px 0;
  transition: color 0.25s ease;
}

.sub-menu li a:hover {
  color: #ff8800;
}

/* === Icon Styling For Items In Dropdown === */
.sub-menu img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  #primary-navigation {
    display: none !important;
  }
}



        /* 🌟 Navigation Bar Styling */
        .navbar-container {
            position: relative;
            top: 70px; /* matches the height of the header */
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 999;
            display: flex;
            justify-content: center;
        }
      
        #site-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 9000;
            background: rgba(0, 0, 0, 0.4);
            font-family: monospace;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        @media screen and (max-width: 1024px) {
          #site-footer {
            display: none !important;
          }
        }
    
        #audio-toggle {
        background: transparent;
        border: none;
        cursor: pointer;
        position: fixed;
        bottom: 100px;
        right: 20px;
        z-index: 1000;
        width: 60px;
        height: 60px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
    }

    #audio-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    }
    
    /* 🎵 Image inside button */
    #audio-toggle img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }
    
    /* 🔇 When Muted */
    #audio-toggle.muted {
        filter: grayscale(100%) brightness(0.5);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    }
      
    #logo {
        padding: 15px;  
        width: 18vw;
        min-width: 175px;
        max-width: 350px;
        height: auto;
        transition: all 0.3s ease;
    }
  
    #pepe-nav {
        position: fixed;
        top: 75px; 
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 9999;
        display: flex;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }
  
    #pepe-nav ul {
        list-style: none;
        display: flex;
        justify-content: center; 
        gap: 80px;
        margin: 0;
        padding: 0;
    }
      
    #pepe-nav li a {
        color: #ff8800 !important;
        font-size: 0.85rem !important;
        font-family: monospace !important;
        text-decoration: none;
        letter-spacing: 1px;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3); 
        transition: all 0.3s ease;
    }
  
    #pepe-nav li a:hover {
        color: white;
        transform: scale(1.05);
        border: 2px solid #ff8800;
        padding: 6px 12px;
        border-radius: 6px;
        background-color: rgba(255, 136, 0, 0.1);
        box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
    }
  
    @media (max-width: 768px) {
        #hamburger {
          display: block;
          font-size: 2rem;
          color: gold;
          cursor: pointer;
          position: absolute;
          top: 10px;
          right: 20px;
          z-index: 10001;
    }
  
    #pepe-nav ul {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        gap: 15px;
        box-shadow: 0 0 15px rgba(255, 94, 0, 0.5);
    }
  
    #pepe-nav ul.show {
      display: flex;
    }
  
    #pepe-nav li a {
      font-size: 1rem;
    }
  }
      
    #pepe-nav2 {
        position: fixed;
        bottom: 0px; 
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        z-index: 9999;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }
    
    #pepe-nav2 ul {
        list-style: none;
        display: flex;
        justify-content: center; 
        gap: 60px;
        margin: 0;
        padding: 0;
    }
    
    #pepe-nav2 li a {
        color: #ff8800 !important;
        font-size: 0.85rem !important;
        font-family: monospace !important;
        text-decoration: none;
        letter-spacing: 1px;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3); 
        transition: all 0.3s ease;
    }
    
    #pepe-nav2 li a:hover {
        color: white;
        transform: scale(1.05);
    }
    
    /* Hide footer on mobile devices */
        @media screen and (max-width: 768px) {
        #pepe-nav2 {
            display: none;
        }
    }
    
    .intro-text p {
        font-size: 1.3rem;
        max-width: 800px;
        opacity: 0;
        transition: opacity 2s ease-in-out;
        line-height: 1.8;
    }
    
    .fade-in {
        opacity: 1 !important;
    }
    
    .fade-out {
        opacity: 0 !important;
    }
    
    .cta-btn {
        background-color: #1dd05d;
        padding: 15px 30px;
        color: black;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.2rem;
        margin-top: 20px;
    }
  
    /* 🎧 Audio Toggle Styling */
  
  section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    min-height: 100vh;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  section p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    section h2 {
      font-size: 1.5rem; /* was 2rem */
    }
  
    section p {
      font-size: 1rem; /* was 1.2rem */
      line-height: 1.5;
    }
  }
  
  .token-image {
    display: block;
    margin: 20px auto;
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px gold);
  }
      
  .section-container {
    position: relative; /* important to position child elements */
    width: 100%;
    max-width: 1000px; /* Optional constraint */
    min-height: 550px;
    max-height: none;         /* 🔥 Let it grow if needed */
    height: auto;
    overflow: visible;        /* 🔥 Prevent unnecessary scroll battles */
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    z-index: 9999;
  }
  
      /* Background video */
      .background-mist {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Use COVER again to stretch over the container */
        opacity: 0.25;
        z-index: 0;
        pointer-events: none;
      }
      
      /* Content over video */
      .intro-text {
        position: relative;
        z-index: 1; /* Make sure it's above the mist */
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      /* Optional: Limit height for text block if it overflows */
      .intro-text p {
        max-width: 700px;
        margin: 20px 0;
      }
      
      .section-container:hover {
        box-shadow: 0 0 25px rgba(255, 94, 0, 0.7), 0 0 50px rgba(255, 94, 0, 0.4);
        transform: scale(1.01);
      }
      
      /* Dark Theme Scrollbar (Chrome, Edge, Safari) */
      .section-container::-webkit-scrollbar {
        width: 8px;
      }
      
      .section-container::-webkit-scrollbar-track {
        background: #111;
      }
      
      .section-container::-webkit-scrollbar-thumb {
        background-color: #444;
        border-radius: 10px;
        border: 2px solid #111;
      }
      
      
      /* Firefox Dark Theme Scrollbar */
      .section-container {
        scrollbar-width: thin;
        scrollbar-color: #444 #111;
      }
  
      .section-content {
        width: 100%;
        max-width: 750px; /* Inner content aligned neatly */
        padding: 10px;
      }
      
      @media (max-width: 768px) {
        .section-container {
          min-height: 400px;
          max-height: 600px;
          padding: 30px 20px;
        }
      }
      
      .social-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px; /* space between buttons */
        margin-top: 30px;
      }
      
      .social-links a {
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        color: gold;
        padding: 12px 25px;
        border-radius: 10px;
        text-decoration: none;
        border: 2px solid gold;
        transition: all 0.3s ease;
        box-shadow: 0 0 8px rgba(255, 140, 0, 0.2);
      }
      
      .social-links a:hover {
        box-shadow: 0 0 20px rgba(255, 94, 0, 0.7);
        transform: scale(1.05);
        color: #fff;
        border-color: orange;
      }
      
      @media (max-width: 768px) {
        .social-links {
          flex-direction: column;
          align-items: center;
          gap: 15px;
        }
      
        .social-links a {
          width: 80%;
          max-width: 300px;
          text-align: center;
        }
      }
      
.pepe-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind the text */
    pointer-events: none; /* Clicks pass through */
    overflow: hidden; /* Hide any overflow if image gets wild */
  }
  
  .pepe-ghost img {
    width: 100%; /* <<< Full width */
    height: 100%; /* <<< Full height */
    object-fit: cover; /* <<< Critical: Cover full container naturally */
    opacity: 0.5; /* <<< Gentle ghosty faintness */
    filter: blur(1px) brightness(1.2); /* Optional ghosty effect */
  }
      
    @keyframes ghostFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  
  .pepe-ghost {
    animation: ghostFloat 10s ease-in-out infinite;
  }
      
  #coin-wrapper {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  
    .intro-text,
    .intro-text p,
    #line {
        font-family: 'Crushyourenemies', serif;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 1px;
        line-height: 2.0; /* 👈 key property */
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
        text-transform: uppercase;
    }
  
    #coin-sigil {
        width: 140px; /* ðŸ”¥ Slightly larger */
        height: auto;
    }
    
    .contract-box {
        margin-top: 20px;
    }
    
    #contract-address {
        font-family: 'Courier New', monospace;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 10px;
        border-radius: 8px;
        display: inline-block;
        word-break: break-all;
    }
          
    .contract-actions {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }
  
.contract-actions button,
.contract-actions a {
    background: transparent;
    border: 2px solid #ffa500;
    color: #ffa500;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.contract-actions button:hover,
.contract-actions a:hover {
    background: #ffa500;
    color: #000;
}
  

.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 12000;
    font-family: monospace;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 1024px) {
.fixed-footer {
        display: none !important;
    }
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-row.bottom-row span {
    color: #ffffff !important;
}

    /* Optional style refinements */
    .social-link,
    .label,
    .meta-link {
        color: white;
        font-size: 0.85rem;
        text-decoration: none;
    }
    
    .meta-link:hover,
    .social-link:hover {
        opacity: 0.7;
    }
    
    input[type="text"] {
        background: #000;
        color: #ff8800;
        border: 1px solid #333;
        padding: 0.4rem 0.6rem;
        border-radius: 6px;
        width: 200px;
        font-family: monospace;
        font-size: 0.85rem;
        text-align: center;
    }

    button {
        background: #222;
        color: white;
        border: none;
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 500;
        transition: background 0.2s ease;
    }
    
    button:hover {
        background: #444;
    }
    
    /* Responsive hide for mobile */
    @media screen and (max-width: 768px) {
    .fixed-footer {
            display: none !important;
        }
    }
    
    .scrolls-data-container {
        position: relative;
        background: transparent;
        padding: 0;
        border-radius: 12px;
        width: 100%;
        height: auto; /* or remove max-height if it’s causing scrolls */
        overflow-y: visible;
        text-align: left;
        color: #fff;
        margin-top: 0;
        margin-bottom: 40px;
        z-index: 10000;
    }

    @media (max-width: 768px) {
    .scrolls-data-container {
            max-width: 95vw;         /* fills screen but respects some padding */
            padding: 10px;           /* slightly tighter padding for mobile */
        }
    }
    
    /* 🔧 Minimal Dark Scrollbar */
    .scrolls-data-container::-webkit-scrollbar {
        width: 8px;
    }

    .scrolls-data-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05); /* subtle dark track */
        border-radius: 10px;
    }
    
    .scrolls-data-container::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.15); /* light handle */
        border-radius: 10px;
        border: 2px solid transparent;
        background-clip: content-box;
    }
    
    /* For Firefox */
    .scrolls-data-container {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.05);
    }
    
    .scrolls-data-heading {
        font-size: 22px;
        margin-bottom: 25px;
        color: #f5f5f5;
    }
    
    .scrolls-data-block {
        display: flex;
        flex-direction: column;
        margin-bottom: 25px;
    }

    .scrolls-data-label {
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .scrolls-data-input {
        padding: 10px;
        font-size: 14px;
        border: 1px solid #444;
        border-radius: 6px;
        background: #111;
        color: #eee;
        margin-bottom: 8px;
    }
    
    .scrolls-data-button {
        width: fit-content;
        padding: 6px 12px;
        font-size: 13px;
        background: #333;
        color: #fff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }
    
    .scrolls-data-button:hover {
        background: #555;
    }
    
    .scrolls-data-links {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;
    }
    
    .scrolls-data-link {
        color: #ddd;
        text-decoration: none;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .scrolls-data-link:hover {
        text-decoration: underline;
    }
    
    /* 🔥 Main Scrollable Container */
    .scrollable {
        position: relative;
        width: 100%;
        min-height: 100vh; /* instead of fixed height */
        overflow: hidden;
        z-index: 0;
    }
    
    /* 🎥 Global Video Background - loads ONCE */
    .background-mist {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1; /* Below everything else */
    }
    
    /* 🔥 Each Section */
    .scrollable > section {
        /* Add this */
        display: flex;
        justify-content: center;
        align-items: center;
        
        /* existing styles */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        z-index: 1;
    }

    /* 🔥 Section Content Styling */
    .section-container {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
    }

    /* 🚀 Show Active Section */
    .scrollable > section.active {
        display: block;
        opacity: 1;
    }
    
    /* 🔧 Minimal Scrollbar Styling (Cross-Browser) */
    .scrolls-data-container::-webkit-scrollbar {
      width: 8px;
    }
    .scrolls-data-container::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
    }
    .scrolls-data-container::-webkit-scrollbar-thumb {
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      border: 2px solid transparent;
      background-clip: content-box;
    }
    
    /* ✨ Fade-In/Out Animations (if needed) */
    .fade-in {
      animation: fadeIn 0.5s ease-in forwards;
    }
    .fade-out {
      animation: fadeOut 0.5s ease-out forwards;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes fadeOut {
      from { opacity: 1; }
      to { opacity: 0; }
    }

    /* 📱 Responsive Adjustments */
    @media (max-width: 768px) {
      .scrollable {
        width: 100vw;
        overflow-x: hidden;
      }
    
      .scrollable > section {
        width: 100vw;
      }
    
      body {
        overflow-x: hidden;
      }
    
      .scrolls-data-container {
        max-width: 100vw;
        overflow-x: hidden;
        padding: 16px;
      }
    
      .scrolls-data-input {
        width: 100%;
      }
    }


    .scroll-nav-button {
      background: none;
      border: none;
      padding: 0.5em;
      cursor: pointer;
      transition: transform 0.2s ease;
    }
    
    .scroll-nav-button:hover {
      transform: scale(1.1);
    }
    
    .nav-arrow {
      width: 90px;   /* Adjust size as needed */
      height: auto;
      display: block;
    }

    #nextBtn, #prevBtn {
      position: fixed;
      bottom: 20%;
      transform: translateY(-50%);
      z-index: 9999;
      font-size: 2.2rem;
      color: white;
      background: rgba(0, 0, 0, 0.4);
      border: none;
      padding: 12px;
      border-radius: 50%;
      cursor: pointer;
      pointer-events: auto;
      transition: transform 0.25s ease, box-shadow 0.3s ease;
    }
    
    #prevBtn { left: 15px; }
    #nextBtn { right: 15px; }
    
    #nextBtn:hover, #prevBtn:hover {
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 0 12px rgba(255, 136, 0, 0.6);
    }

    .scrollable {
    /* REMOVE margin-top */
        padding-top: clamp(80px, 10vh, 120px); /* slightly reduced for balance */
    }
    
    /* 📂 /public/css/styles.css */
    .mythic-alert {
        position: fixed;
        top: 15px; /* 🔥 Elevated to the top of the viewport */
        left: 50%; /* 🔥 Center horizontally */
        transform: translateX(-50%); /* 🔥 Perfect centering */
        background-color: rgba(30, 30, 30, 0.95);
        color: #66ff99;
        padding: 15px 30px;
        border-radius: 10px;
        font-family: 'Arial', sans-serif;
        z-index: 12500; /* 🔥 Higher than the highest tower */
        opacity: 0.95;
        animation: floatDown 0.3s ease-out;
        border: 1px solid #66ff99;
        text-align: center;
    }
    
    @keyframes floatDown {
      from {
        transform: translate(-50%, -20px);
        opacity: 0;
      }
      to {
        transform: translate(-50%, 0);
        opacity: 0.95;
      }
    }
    
    .fade-out {
      animation: fadeOut 1s forwards;
    }

    @keyframes fadeOut {
      from {
        opacity: 0.95;
      }
      to {
        opacity: 0;
      }
    }


/* 🌌 Main Token Widget Container */
.token-widget-container {
    position: relative;
    width: 100%;
    height: 400px;                    /* Slightly increased for better fit */
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.token-background {
    position: absolute;
    top: 30%;                        /* Centered vertically */
    left: 15%;
    width: 150;
    height: 150;
    transform: translate(-50%, -50%);
    opacity: 0.5;                    /* Slight transparency for a sleek look */
    z-index: 1;
}

/* 🚀 Overlay Content */
.overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    padding: 15px;
    box-sizing: border-box;
}

/* 🌌 Network Title */
.network-title {
    text-align: center;
    font-size: 1.4rem;               /* Slightly larger for emphasis */
    color: #ff8800;                  /* Fire orange color */
    font-family: monospace;
}

/* 🌌 Description Container */
.description-container {
    width: 100%;
    max-height: 100px;
    background-color: rgba(0, 0, 0, 0.8); /* Slightly darker */
    color: white;                         /* White for contrast */
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    text-align: left;
    overflow-y: auto;
    font-family: monospace;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #333 #111;
}

/* 🔥 Dark Theme Scrollbar */
.description-container::-webkit-scrollbar {
    width: 6px;
}

.description-container::-webkit-scrollbar-track {
    background: #111;
}

.description-container::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
    border: 1px solid #111;
}

/* 🌌 Price Row Styling */
.price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
    margin-bottom: 0px;
}

/* 🌌 Price Row Styling */
.price-metrics-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* 🏷️ Unified Style for All Fields */
.price-input, 
.metric-value {
    flex: 1;                              /* Flex evenly within the row */
    max-width: 175;                       /* Ensures exactly 4 fit in one row */
    background-color: #000;                
    color: white;
    border: 1px solid #555;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    height: 40px;                         /* Increased height for visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;                     /* Prevents overflow from large numbers */
    white-space: nowrap;                  /* Prevents text wrapping */
    text-overflow: ellipsis;              /* Adds "..." if text overflows */
    box-sizing: border-box;               /* Include border in width calculation */
}

/* 🏷️ Metric Container for Title and Field */
.metric-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 📌 Metric Title Styling */
.metric-title {
    font-size: 12px;
    color: white;                    /* 🔥 White color for labels */
    margin-bottom: 2px;
    font-weight: 600;
}

/* 🔥 Unified Style for All Fields */
.metric-value {
    flex: 1;
    max-width: 200px;
    background-color: #000;
    color: #ff8800;                    /* Fire orange for consistency */
    border: 1px solid #333;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: monospace !important;
    font-size: 0.85rem !important;
    box-sizing: border-box;
}

/* Parent container for the login button */
.login-section {
  position: fixed;              /* Anchor to viewport */
  top: 10px;                    /* 15% from top of screen */
  left: 50%;                    /* Center horizontally */
  transform: translateX(-50%); /* Perfect centering */
  z-index: 9999;                /* Keep above other content */
  display: inline-block;
  cursor: pointer;
}

/* Metamask button styling */
.login-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for button */
.login-section:hover .login-btn {
  transform: scale(1.3);
}

/* Image/icon hover styling */
.hover-icon {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.hover-icon:hover {
  transform: scale(1.3);
}

/* === CLOSE BUTTON === */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 10000;
}

.close-btn svg {
  width: 100%;
  height: 100%;
  fill: #ff8800;
}

/* 🌌 Main Country Widget Container */
.country-widget-container {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
}

.country-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind the text */
  pointer-events: none;
  overflow: hidden;
}

.country-ghost img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  filter: blur(1px) brightness(1.2);
  border-radius: 15px; /* 🔥 Rounded edges */
}

/* 🔥 Realm Modal Styles - Dark Theme */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95); /* near black */
  z-index: 12001;
  overflow-y: auto;
  padding: 4rem 1rem;
  backdrop-filter: blur(2px);
}

.modal-content {
  background: #1b1b1b;
  color: #e2e2e2;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  line-height: 1.7;
  font-family: 'Georgia', serif;
}

.view-report-btn {
  margin-top: 1rem;
  background: #111;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: 1px solid #444;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-report-btn:hover {
  background: #333;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  cursor: pointer;
  color: #bbb;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #fff;
}
