:root {
  --black: #0b0b0b;
  --dark: #141414;
  --gold: #c9a86a;
  --gray: #9aa0a6;
  --glass: rgba(20, 20, 20, 0.7);
  --border: rgba(255, 255, 255, 0.1);
}

/* Base Body Styles (In case mainHome.css isn't loaded correctly) */
body {
  background-color: var(--black);
  background-image: url('src/bg.jpg'); /* Ensure path is correct */
  background-size: cover;
  background-attachment: fixed;
  color: #eee;
  font-family: "Inter", system-ui, sans-serif;
}

.container {
  max-width: 1200px; /* Slimmer container for reading text */
  margin: 100px auto 60px;
  padding: 0 20px;
}

/* Hero Section */
.ad-hero {
  text-align: center;
  margin-bottom: 50px;
}

.ad-hero h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--gray);
  font-size: 1.2rem;
}

.pitch-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  max-width: 800px;
  margin: 30px auto;
}

.pitch-text p {
  margin-bottom: 15px;
}

.highlight-gold {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 20px;
}

/* Pricing Box */
.price-box {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(0,0,0,0.8));
  border: 1px solid var(--gold);
  border-radius: 15px;
  text-align: center;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto 60px;
  box-shadow: 0 0 20px rgba(201, 168, 106, 0.2);
}

.price-box h2 {
  color: #fff;
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.price-tag {
  font-size: 4rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 10px;
}

.currency {
  font-size: 2rem;
  vertical-align: super;
}

.duration {
  font-size: 1.2rem;
  color: #aaa;
  font-weight: normal;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
  margin-right: 25px;
  min-width: 40px;
  text-align: center;
}

.step-content {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Visual Preview Section */
.preview-section {
  background: rgba(0, 0, 0, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 15px;
  margin: 60px 0;
  text-align: center;
}

.preview-section h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.mock-layout {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

 .mock-ad {
  align-self: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
 }

/* Fake Content for Demo */
.mock-content {
  flex: 1;
  min-width: 250px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
}

.mock-line {
  height: 12px;
  background: #333;
  border-radius: 4px;
}

.mock-btn {
  background: #333;
  color: #666;
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
}

/* The Ad Slot Demo */
.mock-sidebar {
  width: 110%; /* Exact width requested */
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ad-placeholder {
  width: 100%;
  height: 300px;
  background: #000;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px var(--gold);
}

.ad-placeholder img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
}

.ad-placeholder span {
  position: absolute;
  bottom: 10px;
  background: rgba(0,0,0,0.8);
  padding: 2px 8px;
  font-size: 10px;
  color: var(--gold);
}

/* Rules Box */
.rules-box {
  background: rgba(200, 50, 50, 0.1); /* Subtle red tint for warning */
  border: 1px solid rgba(200, 50, 50, 0.3);
  padding: 30px;
  border-radius: 10px;
}

.rules-box h3 {
  color: #ff6b6b; /* Soft red */
  margin-bottom: 20px;
  text-transform: pupercase;
}

.rules-box ul {
  list-style: none;
  padding-left: 10px;
}

.rules-box li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.rules-box li::before {
  content: "!";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 850px) {
  .mock-layout {
    flex-direction: column;
    align-items: center;
  }
  
  .mock-sidebar {
    width: 100%;
    max-width: 400px;
  }
  
  .ad-placeholder {
    height: auto;
    aspect-ratio: 4/3;
  }
}