:root {
  /* Livspace Brand Colors (approximate based on logo) */
  --liv-pink: #ed4145;
  --liv-purple: #904799;
  --liv-dark: #333333;
  --liv-white: #ffffff;
  --liv-gray: #f8f8f8;
  --liv-text-gray: #666666;

  /* Typography */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-unit: 1rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: #222; /* Dark background for the "mockup" effect */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Banner Container - maintaining 2:1 aspect ratio */
.banner-canvas {
  width: 100vw;
  height: 50vw; /* 2:1 aspect ratio */
  background-color: var(--liv-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: row;
}

/* Background Elements */
.bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--liv-pink), var(--liv-purple));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Left Content Area */
.content-left {
  flex: 1;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.logo-container {
  margin-bottom: 3vw;
}

.logo-img {
  width: 25vw;
  height: auto;
}

.headline {
  font-size: 3.5vw;
  font-weight: 900;
  color: var(--liv-dark);
  line-height: 1.1;
  margin: 0 0 1.5vw 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.subheadline {
  font-size: 1.8vw;
  color: var(--liv-pink);
  font-weight: 700;
  margin-bottom: 2vw;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.promo-tag {
  display: inline-block;
  background-color: var(--liv-dark);
  color: var(--liv-white);
  padding: 1vw 2vw;
  font-size: 2vw;
  font-weight: 800;
  border-radius: 0.5vw;
  margin-top: 1vw;
}

.warranty-badge {
  display: flex;
  align-items: center;
  margin-top: 2vw;
  font-size: 1.4vw;
  font-weight: 600;
  color: var(--liv-text-gray);
}

.warranty-icon {
  width: 3vw;
  height: 3vw;
  background: var(--liv-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1vw;
}

/* Right Content Area */
.content-right {
  width: 40%;
  padding: 5vw 3vw 5vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  color: var(--liv-white);
  position: relative;
}

.experience-callout {
  font-size: 2.2vw;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4vw;
}

.experience-callout span {
  color: var(--liv-white);
  text-decoration: underline;
}

.contact-section {
  width: 100%;
}

.contact-title {
  font-size: 1vw;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1vw;
  opacity: 0.9;
}

.phone-numbers {
  font-size: 2vw;
  font-weight: 800;
  margin-bottom: 0.5vw;
}

.email {
  font-size: 1.2vw;
  margin-bottom: 2vw;
  opacity: 0.9;
}

.address-box {
  border-top: 2px solid rgba(255,255,255,0.3);
  padding-top: 1.5vw;
  font-size: 1vw;
  line-height: 1.4;
  font-weight: 400;
  max-width: 90%;
}

.address-highlight {
  font-weight: 700;
  display: block;
  margin-bottom: 0.3vw;
  font-size: 1.1vw;
}

/* Mockup Visuals */
.visual-bg-element {
  position: absolute;
  right: 35%;
  top: 0;
  height: 100%;
  width: 15%;
  background: var(--liv-white);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}

.mockup-label {
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.stadium-mockup {
  width: 100%;
  background: #1a1a1a;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stadium-screen {
  width: 90%;
  max-width: 1000px;
  background: #000;
  border: 15px solid #222;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(225, 43, 72, 0.2);
}

.stadium-screen .banner-canvas {
  margin: 0;
  width: 100%;
  max-width: none;
  border: none;
  box-shadow: none;
}

.glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, rgba(255,255,255,0.05) 0%, transparent 40%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
  z-index: 10;
}
