:root {
  --color-midnight: #0c0b0a; /* Deep warm black - absolutely NO blue */
  --color-midnight-light: #1a1715; /* Rich warm dark charcoal */
  --color-gold: #ffd166; /* Vivid warm yellow/gold */
  --color-gold-hover: #ffdf99;
  --color-amber: #f7a072; /* Warm harvest amber */
  --color-red: #ef233c; /* Sharp royal red */
  --color-red-dark: #b7092b; /* Rich crimson */
  --color-ivory: #ffffff; /* Crisp pure white */
  --color-ivory-dim: #f4f4f9; /* Warm off-white */
  --color-accent-glow: rgba(239, 35, 60, 0.15); /* Warm red/gold ambient glow */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Inter', sans-serif;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --border-gold: 1px solid rgba(255, 209, 102, 0.3);
  --border-red: 1px solid rgba(239, 35, 60, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-midnight);
  color: var(--color-ivory);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* Background Magic with Red and Gold Tones */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 10%, rgba(239, 35, 60, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-ivory);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.3;
}

p {
  color: var(--color-ivory-dim);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* Regulatory Disclaimer Top Bar */
.disclaimer-top-bar {
  background-color: #0c0b0a;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid rgba(255, 209, 102, 0.15);
  position: relative;
  z-index: 1001;
  line-height: 1.4;
}

/* Slim Premium White and Yellow/Red Header */
.royal-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98); /* Crisp white background */
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--color-gold); /* Elegant yellow bottom line */
  padding: 0.4rem 4%; /* Slim vertical height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.brand-anchor {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-icon {
  width: 22px; /* Slim proper dimensions */
  height: 22px;
  border: 1px solid #111111;
  border-radius: 50%;
  background: var(--color-gold); /* Yellow icon fill */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.75rem;
  box-shadow: 0 0 6px rgba(255, 209, 102, 0.4);
}

.brand-name {
  font-family: var(--font-serif);
  color: #111111; /* Clean high-contrast typography */
  font-size: 0.85rem; /* Small proper scale */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-name span {
  color: var(--color-red-dark); /* Red highlight */
}

.royal-nav {
  display: flex;
  gap: 0.3rem;
}

.nav-link {
  color: #444444; /* Clean contrast nav text */
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem; /* Slimmer font scale */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.45rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #000000;
  border-bottom: 2px solid var(--color-red); /* Red indicator */
}

/* Luxury Royal Buttons (White, Yellow, Red Theme) */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark)); /* Bold Red Gradient */
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: none;
  border-bottom: 3px solid var(--color-gold); /* Yellow/gold button bottom accent */
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(239, 35, 60, 0.3);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 209, 102, 0.45);
  background: linear-gradient(135deg, var(--color-gold), #e0a900); /* Dynamic transition to gold on hover */
  color: #000000;
  border-bottom: 3px solid var(--color-red);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(239, 35, 60, 0.08); /* Warm red ambient interaction */
  border-color: var(--color-red);
  color: var(--color-ivory);
  box-shadow: 0 0 15px rgba(239, 35, 60, 0.2);
}

/* Layout Blocks */
.royal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section-padding {
  padding: 90px 0;
}

/* Animations */
@keyframes float-lantern {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.floating-lantern {
  animation: float-lantern 5s ease-in-out infinite;
}

/* Red-Gold Linear Divider */
.golden-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-red), var(--color-gold), transparent);
  margin: 3rem 0;
  width: 100%;
}

/* Re-engineered Luxurious Royal Footer */
.royal-footer {
  background: #070606; /* Solid warm dark space */
  border-top: 4px solid var(--color-red); /* Vivid Red Primary Line */
  border-bottom: 4px solid var(--color-gold); /* Yellow Secondary Accent Line */
  padding: 70px 0 30px;
  position: relative;
  z-index: 10;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  color: var(--color-gold); /* Clean yellow highlight */
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.12em;
  border-left: 3px solid var(--color-red); /* Royal Red sidebar design key */
  padding-left: 10px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
}

.footer-column ul li a {
  color: #d1d2d9;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
  color: var(--color-red); /* Red navigation highlight on hover */
  transform: translateX(4px);
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #bfaea2;
  margin-bottom: 1.2rem;
}

/* Beautiful Custom Subscription Form (Gold & Red theme) */
.newsletter-form {
  display: flex;
  margin-top: 1rem;
  border: 1px solid rgba(239, 35, 60, 0.4);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.newsletter-input {
  background: transparent;
  border: none;
  padding: 0.7rem 1rem;
  color: var(--color-ivory);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  flex: 1;
  outline: none;
}

.newsletter-input::placeholder {
  color: #888888;
}

.newsletter-btn {
  background: var(--color-red); /* Red subscription call-to-action */
  color: #ffffff;
  border: none;
  padding: 0 1.2rem;
  font-family: var(--font-sans);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background: var(--color-gold);
  color: #000000;
}

/* Footer Bottom Layout */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #999999;
  margin-bottom: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #999999;
  text-decoration: none;
  font-size: 0.78rem;
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--color-gold);
}

.trust-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 12px;
}

.trust-icon {
  height: 32px;
  width: auto;
  opacity: 0.85;
  filter: contrast(105%);
  transition: var(--transition-smooth);
}

.trust-icon:hover {
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(255, 209, 102, 0.3));
}

/* Premium Card Styles (Red & Gold Trim) */
.luxury-card {
  background: linear-gradient(135deg, var(--color-midnight-light), #151210);
  border: 1px solid rgba(255, 209, 102, 0.1);
  padding: 2.2rem;
  border-radius: 3px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-red), var(--color-gold), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.luxury-card:hover::before {
  opacity: 1;
}

/* Responsive configurations */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .royal-header {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.6rem;
  }
  .royal-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .section-padding {
    padding: 50px 0;
  }
}