/* Layout and Typography */
body {
  background: #181818;
  color: #f5c242;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #00B7FF;
  text-decoration: none;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #f5c242;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.1rem;
  color: #fff8e1;
  margin-bottom: 2rem;
}

/* Main Container */
.main-container {
  max-width: 98vw;
  width: 98vw;
  min-height: 80vh;
  margin: 40px auto 30px auto;
  padding: 3rem 2vw 2.5rem 2vw;
  background: #222;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  text-align: center;
}

@media (max-width: 900px) {
  .main-container {
    max-width: 98vw;
    padding: 2rem 2vw 1.5rem 2vw;
  }
}

/* Ribbon Bar (Header) */
.ribbon-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 1rem;   /* Reduced vertical and horizontal padding */
  background: #181818;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

.logo-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ribbon-logo {
  height: 28px;           /* Reduced from 40px to 28px */
  width: auto;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.ribbon-btn {
  background: linear-gradient(90deg, #f5c242 0%, #bfa14a 100%);
  color: #181818 !important;
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
}

.ribbon-btn.active,
.ribbon-btn:hover {
  background: linear-gradient(90deg, #bfa14a 0%, #f5c242 100%);
  color: #222 !important;
}

.login-btn {
  padding: 0.5rem 1.3rem;
  background: linear-gradient(90deg, #f5c242 0%, #bfa14a 100%);
  color: #181818 !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

.login-btn:hover {
  background: linear-gradient(90deg, #bfa14a 0%, #f5c242 100%);
  color: #222 !important;
}

/* Main Container Background Logo */
.main-container.bg-logo {
  position: relative;
  background: rgba(34,34,34,0.92);
  margin-top: 1rem;      /* Smaller gap, or use 0 for no gap */
  z-index: 1;
  overflow: hidden;
}

.main-container.bg-logo::before {
  content: "";
  background: url('/images/bsgLogo.png') no-repeat center center;
  background-size: 320px auto;
  opacity: 0.07;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.main-container.bg-logo > * {
  position: relative;
  z-index: 1;
}

/* Security List */
.security-list {
  text-align: left;
  margin: 2rem auto 2rem auto;
  padding: 0 0 0 1.2rem;
  max-width: 500px;
  color: #fff8e1;
  font-size: 1.05rem;
}

.security-list li {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.security-list strong,
.highlight {
  color: #f5c242;
  font-weight: bold;
}

/* Map Styles */
.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 2.5rem auto 0 auto;
  min-height: 300px;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.map-pin {
  position: absolute;
  width: 20px;    /* or your preferred size */
  height: 20px;
  border-radius: 50%;           /* Makes the image circular */
  object-fit: cover;            /* Ensures the image fills the circle */
  background: #181818;          /* Optional: fallback background */
  border: 2px solid #f5c242;    /* Optional: gold border for visibility */
  transform: translate(-50%, -100%);
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}