/* --- STYLES.CSS --- */

:root {
  --bg-color: #121212;
  --bg-color-alt: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --accent-color: #FFD700;
  --accent-color-darker: #ccac00;
  --card-bg: #1e1e1e;
  --border-color: #333333;
  --success-color: #28a745;
  --error-color: #dc3545;
  --prelaunch-red: #e53935;
  --prelaunch-red-darker: #c62828;
  --font-body: 'Inter', sans-serif;
}

/* --- GLOBAL RESET & BASE STYLES --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body); background-color: var(--bg-color);
  color: var(--text-primary); line-height: 1.6; overflow-x: hidden;
}
.page-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4, p, ul, ol { margin-top: 0; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900; color: var(--accent-color); text-align: center; margin-bottom: 3rem; }
h3 { font-size: clamp(1.3rem, 3.5vw, 1.75rem); font-weight: 700; color: var(--text-primary); margin-bottom: 1.5rem; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
a { color: var(--accent-color); text-decoration: none; }
a:hover { color: var(--accent-color-darker); }
img { max-width: 100%; height: auto; display: block; }

/* --- BUTTONS (Kept for potential future use) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9rem 2rem; font-size: 1rem; font-weight: 700;
  border-radius: 8px; cursor: pointer; text-align: center; text-decoration: none;
  transition: all 0.2s ease; border: 2px solid transparent; letter-spacing: 0.5px;
  width: auto;
  max-width: 320px;
  white-space: nowrap;
}
.btn-primary { background-color: var(--accent-color); color: var(--bg-color); border-color: var(--accent-color); }
.btn-primary:hover {
  background-color: var(--accent-color-darker);
  border-color: var(--accent-color-darker);
  color: var(--bg-color);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}
.btn-secondary { background-color: transparent; color: var(--text-primary); border-color: var(--text-primary); }
.btn-secondary:hover {
  background-color: var(--text-primary);
  color: var(--bg-color);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.1);
}
.btn-lg { font-size: 1.15rem; padding: 1rem 2.5rem; }

.btn-prelaunch {
  background-color: var(--prelaunch-red);
  color: var(--text-primary);
  border-color: var(--prelaunch-red);
}
.btn-prelaunch:hover {
  background-color: var(--prelaunch-red-darker);
  border-color: var(--prelaunch-red-darker);
  color: var(--text-primary);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 15px rgba(229, 57, 53, 0.3);
}


/* --- HEADER --- */
.site-header-bar { padding: 1rem 0; background-color: var(--bg-color); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-color); }
.header-content { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo .logo-icon { color: var(--accent-color); font-size: 2.2rem; }
.logo .logo-text { font-size: 1.6rem; font-weight: 900; color: var(--text-primary); }

/* --- HERO SECTION --- */
.hero-section {
  min-height: auto;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: linear-gradient(rgba(18, 18, 18, 0.90), rgba(18, 18, 18, 0.98)), url('https://images.unsplash.com/photo-1511875762315-c74357f51259?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  border-bottom: 1px solid var(--border-color);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title .headline-main {
  color: var(--text-primary);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.2;
  display: block;
}

.hero-title .headline-sub {
  display: block;
  color: var(--accent-color);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-top: 0.5rem;
  font-weight: 700;
}

.hero-section .subheadline {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

.hero-section .small-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
}

/* --- "HOW IT WORKS" VIDEO SECTION --- */
.video-feature-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-title-centered {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 2.5rem; 
}

.video-placeholder-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background-color: #000;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  border: 2px dashed var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.video-placeholder:hover {
  background-color: var(--surface-highlight);
}

.video-placeholder .video-play-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.video-placeholder:hover .video-play-icon {
  opacity: 1;
  transform: scale(1.1);
}

.video-placeholder span {
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- "WHY SHAREDROP" SECTION --- */
#why-sharedrop.content-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.why-headline {
    font-style: italic;
    margin-bottom: 2rem; 
}

.dialogue-feature-row {
    display: flex;
    flex-wrap: wrap; 
    align-items: center; 
    gap: 2.5rem; 
    margin-top: 1rem; 
}

.dialogue-text-content {
    flex: 1 1 50%; 
    min-width: 280px; 
}

.dialogue-image-content {
    flex: 1 1 45%; 
    min-width: 280px;
    display: flex; 
    justify-content: center;
    align-items: center;
}
.dialogue-image-content img {
    border-radius: 10px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.25); 
    max-width: 100%; 
    height: auto;
}

.why-dialogue-content {
    font-size: 1.1rem;
    line-height: 1.75; 
    color: var(--text-secondary); 
}

.dialogue-paragraph {
    margin-bottom: 1.25em; 
    text-align: left; 
}
.dialogue-paragraph:last-child {
    margin-bottom: 0;
}

/* --- Precise Dialogue Styling --- */
.dialogue-paragraph em.speech,
.dialogue-paragraph em.thought {
    font-style: italic;
    color: var(--text-primary); /* Make speech and important thoughts brighter */
}

/* Specifically for the son's quote if it needs more distinction than other speech */
.dialogue-paragraph em.speech:first-child { /* Example: if son's quote is always first em.speech in its P tag */
    /* color: var(--accent-color); */ /* Make it even more distinct */
}

.dialogue-paragraph span.normal-text {
    font-style: normal;
    color: var(--text-secondary); /* Narration/action text color */
}
/* Ensure spaces around normal-text spans are preserved if they are inline */
.dialogue-paragraph em.speech + span.normal-text::before,
.dialogue-paragraph span.normal-text + em.speech::before {
    content: " "; /* Adds a space if tags are directly adjacent without one in HTML */
}


/* --- GENERIC CONTENT SECTION (Styles for sections that might be added later) --- */
.content-section { padding: 5rem 0; border-bottom: 1px solid var(--border-color); }
.content-section:last-of-type { border-bottom: none; }
.content-section.alt-bg { background-color: var(--bg-color-alt); }
.section-subheading { text-align:center; color: var(--text-secondary); max-width: 700px; margin: -2.5rem auto 3rem auto; font-size: 1.1rem;}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}
.feature-row:last-of-type {
    margin-bottom: 0;
}
.feature-text-content,
.feature-image-content {
    flex: 1 1 45%;
    min-width: 280px;
}
.feature-image-content img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
@media (min-width: 768px) {
    .feature-row {
        flex-wrap: nowrap;
    }
    .feature-row.feature-row-reversed .feature-image-content {
        order: 1;
    }
    .feature-row.feature-row-reversed .feature-text-content {
        order: 2;
    }
}
.feature-text-content .problem-list-revised,
.feature-text-content .solution-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}
.feature-text-content .problem-list-revised li,
.feature-text-content .solution-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.feature-text-content .problem-list-revised li .fa-solid {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 0.1em;
    width: 2rem;
    flex-shrink: 0;
    text-align: center;
}
.feature-text-content .problem-list-revised li div {
    flex-grow: 1;
}
.feature-text-content .problem-list-revised li strong {
    display: block;
    font-size: 1.1em;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.feature-text-content .problem-list-revised li em {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-text-content .solution-benefits li .fa-solid {
    position: absolute;
    left: 0;
    top: 0.2em;
    font-size: 1.3rem;
    width: 1.8rem;
    text-align: center;
    color: var(--success-color);
}
.feature-text-content .solution-benefits li {
    padding-left: 2.5rem;
}

.feature-text-content h3 {
    margin-bottom: 1rem;
}
.feature-text-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.feature-text-content > p:last-of-type {
    margin-bottom: 0;
}

.game-demos-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .game-demos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .game-demos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.game-demo-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.game-demo-card .demo-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}
.game-demo-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.game-demo-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}
.toolkit-cta {
    text-align: center;
    margin-top: 3rem;
}

.playground-section { background-color: var(--bg-color-alt); }

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.value-card .fa-2x {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.how-it-works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; text-align: center; }
.step-card .step-icon { font-size: 3rem; color: var(--accent-color); margin-bottom: 1rem; }
.step-card h4 { color: var(--text-primary); } .step-card p { font-size: 0.95rem; color: var(--text-secondary); }
.platform-features-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.platform-features-list li { background-color: var(--card-bg); padding: 1.5rem; border-radius: 8px; text-align: center; }
.platform-features-list li .fa-solid { font-size: 2rem; color: var(--accent-color); margin-bottom: 0.75rem; }

.use-cases-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 576px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.use-case-card { background-color: var(--card-bg); padding: 1.5rem; border-radius: 8px; border-left: 4px solid var(--accent-color); }
.use-case-card .fa-solid { font-size: 1.8rem; color: var(--accent-color); margin-bottom: 0.75rem; }
.use-case-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom:0; }

.pricing-toggle { text-align: center; margin-bottom: 2.5rem; }
.toggle-switch { display: inline-flex; background-color: var(--card-bg); border-radius: 30px; padding: 0.3rem; border: 1px solid var(--border-color); }
.toggle-switch button { background: none; border: none; color: var(--text-secondary); padding: 0.6rem 1.8rem; border-radius: 25px; cursor: pointer; font-weight: 700; transition: background-color 0.3s ease, color 0.3s ease; }
.toggle-switch button.active { background-color: var(--accent-color); color: var(--bg-color); }
.pricing-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.pricing-plan { background-color: var(--card-bg); padding: 2.5rem 2rem; border-radius: 10px; border: 1px solid var(--border-color); display: flex; flex-direction: column; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pricing-plan:hover { transform: translateY(-5px); }
.pricing-plan.highlight { border-color: var(--accent-color); box-shadow: 0 0 25px rgba(255, 215, 0, 0.1); transform: scale(1.03) translateY(-5px); }
.pricing-plan h3 { color: var(--accent-color); font-size: 1.6rem; margin-bottom: 0.5rem; }
.plan-price { font-size: 2.8rem; font-weight: 900; color: var(--text-primary); margin-bottom: 0.25rem; }
.plan-price .term { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.plan-features { list-style: none; padding: 0; margin: 1.5rem 0; text-align: left; flex-grow: 1; }
.plan-features li { margin-bottom: 0.85rem; color: var(--text-secondary); font-size: 0.95rem; display: flex; align-items: flex-start; }
.plan-features li .fa-check { color: var(--success-color); margin-right: 0.75rem; margin-top: 0.2em; font-size: 0.9em;}
.plan-features li .fa-times { color: var(--error-color); margin-right: 0.75rem; margin-top: 0.2em; font-size: 0.9em;}
.pricing-plan .btn { margin-top: auto; width: 100%; }

.faq-item { background-color: var(--card-bg); margin-bottom: 1rem; border-radius: 8px; border: 1px solid var(--border-color); }
.faq-question { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--text-primary); }
.faq-question .fa-chevron-down { transition: transform 0.3s ease; }
.faq-answer { padding: 0 1.5rem 0 1.5rem; color: var(--text-secondary); font-size: 0.95rem; max-height: 0; overflow: hidden; transition: all 0.4s ease-out; }
.faq-item.active .faq-answer { max-height: 400px; padding-top: 0.5rem; padding-bottom: 1.25rem; }
.faq-item.active .faq-question .fa-chevron-down { transform: rotate(180deg); }

.final-cta-section { text-align: center; padding: 5rem 0 3rem 0; background-color: var(--bg-color-alt); }
.final-cta-section h2 { margin-bottom: 1.5rem; }
.final-cta-section p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 2rem auto; }

.site-footer { text-align: center; padding: 3rem 1rem; color: var(--text-secondary); font-size: 0.9rem; }

@media (max-width: 992px) {
    .pricing-plan.highlight { transform: scale(1.01) translateY(-3px); }
    .dialogue-feature-row {
         align-items: center; 
    }
}

@media (max-width: 768px) {
  .page-wrapper { padding: 0 1rem; }
  h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-title .headline-main { font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
  .hero-title .headline-sub { font-size: clamp(1.2rem, 2.8vw, 1.6rem); }

  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 2rem; }
  .section-title-centered { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 2rem; }
  .content-section { padding: 3rem 0; }
  .hero-section {
    padding-bottom: 2rem;
  }
  .video-feature-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #why-sharedrop.content-section {
      padding-top: 3rem;
      padding-bottom: 3rem;
  }
  .why-dialogue-content {
      font-size: 1rem;
  }

  .dialogue-feature-row {
      flex-direction: column; 
      gap: 2rem; 
  }
  .dialogue-text-content,
  .dialogue-image-content {
      flex-basis: 100%; 
  }
  .dialogue-image-content {
      order: -1; 
  }


  .feature-row { gap: 2rem; }
  .pricing-plan.highlight { transform: scale(1); }
  .pricing-table { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .toggle-switch button { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
  .plan-price { font-size: 2.2rem; }
  .hero-title .headline-main { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .hero-title .headline-sub { font-size: clamp(1rem, 2.5vw, 1.4rem); }
  .hero-section .subheadline { font-size: 1rem; }
  .video-placeholder .video-play-icon { font-size: 4rem; }
  .video-placeholder span { font-size: 1rem; }
  .why-dialogue-content {
      font-size: 0.95rem;
  }
}