/* ==========================================================================
   1. BASE RESET & COLOR VARIABLES
   ========================================================================== */
:root {
  --bg-color: #000000;
  --accent-color: #c9a86a;
  --text-color: #ffffff;
  --card-bg: #121212;
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Tahoma', 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   2. DESKTOP NAVBAR (Floating Top-Middle Pill Design)
   ========================================================================== */
.Navbar {
  position: absolute;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgba(26, 26, 26, 0.9);
  padding: 12px 30px;
  border-radius: 30px;
  border: 1px solid var(--accent-color);
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.2);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.Navbar a {
  color: var(--text-color);
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--transition-speed);
  display: flex;
  align-items: center;
  gap: 8px;
}

.Navbar a:hover {
  color: var(--accent-color);
}

/* ==========================================================================
   3. HERO & HEADER LAYOUT
   ========================================================================== */
.Main_Grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.Hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), 
              url('./img/Herobg.jpg') center/cover no-repeat; 
  display: flex;
  flex-direction: column;
}

.Top {
  display: flex;
  align-items: center;
  padding: 25px 5%;
  width: 100%;
}

.Logo img {
  max-height: 60px;
}

/* Social icons pushed right next to the Language Selector */
#Top_Contact {
  display: flex;
  gap: 12px;
  margin-left: auto; 
  margin-right: 15px;
}

#Top_Contact a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-speed);
}

#Top_Contact a:hover {
  background-color: var(--accent-color);
  color: #000000;
}

.Language select {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.Middle.Content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}


.Game_Container {
  width: 95%;
  max-width: 420px; /* Keeps the compact handheld size on mobile */
  height: 600px;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--accent-color, #c9a86a);
  background-color: #000000;
  box-shadow: 0 0 25px rgba(201, 168, 106, 0.25);
}

.Game_Container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
#Header
{
font-size: 2.5rem;
font-weight: 900;
color: #c9a86a;

}


.amp 
{
font-size: 2.0rem;
font-weight: 700;
color: #c9a86a;
}


/* ==========================================================================
   5. FOOTER SECTION
   ========================================================================== */
/* ==========================================================================
   FOOTER SECTION & MAP FIX
   ========================================================================== */
.Footer {
  padding: 60px 5% 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--accent-color);
  background-color: var(--bg-color);
  width: 100%;
}

.Menu_bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.Menu_bottom ul {
  display: flex;
  list-style: none;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Proper Map Container Dimensions */
.Bottom_Contact {
  width: 100%;
  max-width: 900px; /* Limits max width on large screens so it doesn't stretch too far */
  height: 400px;    /* Gives it a proper height instead of a squished box */
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--accent-color);
  margin: 0 auto;
}

.Bottom_Contact iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  filter: grayscale(80%) invert(90%);
}

.Bottom_Contact .Social_Buttons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid var(--accent-color);
  display: flex;
  gap: 12px;
}


.Map_Phone_Overlay {
  position: absolute;
  bottom: 20px;
  left: 20px; /* Positioned on the bottom-left corner of the map */
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid var(--accent-color);
  backdrop-filter: blur(5px);
}

.Map_Phone_Overlay a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
}

.Map_Phone_Overlay a:hover {
  color: #ffffff;
}

/* ==========================================================================
   7. DISCLAIMER & COPYRIGHT
   ========================================================================== */
.Disclaimer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #888888;
  border-top: 1px solid #1a1a1a;
  background-color: #000000;
}

/* Inject Copyright Text into empty HTML Disclaimer div */


/* ==========================================================================
   6. MOBILE & TABLET STICKY BOTTOM NAVBAR 
   ========================================================================== */
@media screen and (max-width: 991px) {

  /* Adds bottom padding so content doesn't get hidden behind the sticky bar */
  body {
    padding-bottom: 90px !important; 
  }

  /* Header mobile layout alignment */
  .Top {
    flex-wrap: wrap !important;
    padding: 15px !important;
  }
  
  .Logo { order: 1 !important; }
  .Language { order: 2 !important; margin-left: auto !important; }

  #Top_Contact { 
    order: 3 !important;
    width: 100% !important; 
    justify-content: center !important; 
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 20px !important; 
  }

  

  /* Full-Width Square Bottom Dock Bar */
  .Navbar {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    
    /* Layout */
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    
    /* Dimensions & Safe area */
    height: calc(65px + env(safe-area-inset-bottom, 0px)) !important;
    padding: 0 10px env(safe-area-inset-bottom, 0px) 10px !important;
    
    /* Colors & Square / Flat Edges */
    background-color: #000000 !important;
    border-radius: 0 !important; /* Converts pill to full rectangular square edges */
    border: none !important;
    border-top: 2px solid var(--accent-color) !important;
    box-shadow: 0 -4px 20px rgba(201, 168, 106, 0.3) !important;
    
    /* Viewport lock */
    transform: none !important;
    z-index: 2147483647 !important;
  }

  .Navbar a {
    color: var(--text-color) !important;
    white-space: nowrap !important;
    font-size: 0.70rem !important;
    padding: 6px 10px !important;
    border-radius: 0 !important;
  }
  
  .Navbar a:hover {
    color: var(--accent-color) !important;
  }

  .Bottom_Contact {
    width: 100% !important;
    height: 300px !important;
  }

  .Bottom_Contact .Social_Buttons {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 15px !important;
  }
}


/* ==========================================================================
   MOBILE MAP BUTTONS OVERLAY FIX
   ========================================================================== */
@media screen and (max-width: 768px) {
  .Bottom_Contact {
    height: 450px !important;
    
  }

  /* Center the social buttons horizontally near the top */
  .Bottom_Contact .Social_Buttons {
    top: 45px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    padding: 8px 15px !important;
  }

  /* Center the phone number pill horizontally at the bottom */
  .Map_Phone_Overlay {
    bottom: 5px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    max-width: 90% !important;
    text-align: center !important;
  }

  .Map_Phone_Overlay a {
    justify-content: center !important;
    font-size: 0.9rem !important;
  }
}


@media screen and (min-width: 1024px) {
  .Game_Container {
    max-width: 850px; /* Expands width on desktop */
    height: 650px;    /* Gives enough vertical headroom */
  }
}