:root {
  --primary-color: #d4af37;
  /* Luxurious Gold */
  --accent-gold: #ffd700;
  --accent-red: #dc143c;
  --bg-dark: #0d0d0d;
  --text-white: #ffffff;
  --glass-bg: rgba(212, 175, 55, 0.1);
  --glass-border: rgba(212, 175, 55, 0.3);
  --font-main: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(220, 20, 60, 0.1) 0%,
      transparent 40%
    );
  padding-top: 50px;
  /* Space for fixed top bar */
}

.top-warning {
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a, #1a1a1a);
  /* Elegant dark gradient */
  color: #d4af37;
  text-align: center;
  padding: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.warning-highlight {
  color: #dc143c;
  /* Crimson Red highlight */
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 900px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .content-wrapper {
    max-width: 50%;
    text-align: left;
  }

  .image-container {
    margin-right: 2rem;
    max-width: 45%;
    display: flex;
    justify-content: center;
  }
}

/* Content Styles */
.content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: 15px;
}

@media (min-width: 900px) {
  .content-wrapper {
    align-items: flex-start;
  }
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.headline {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-red {
  color: var(--accent-red);
  -webkit-text-fill-color: var(--accent-red);
}

.subheadline {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.highlight-gold {
  color: var(--accent-gold);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
  color: #000;
  font-weight: 800;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.btn-icon {
  width: 20px;
  height: 20px;
  stroke: black;
  /* Ensure icon is black */
}

.cta-button .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Image Container Styles */
.image-container {
  width: 100%;
  max-width: 400px;
  /* Limit max width on mobile */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.responsive-image:hover {
  transform: scale(1.02);
}
