body {
    background-color: #000;
    color: #fff;
  
  }

  .cursor {
    display: inline-block;
    width: 1ch;
    animation: blink 1s steps(1) infinite;
  }
  
  @keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
  }

  .typed-text {
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 1.4;
    display: block;       /* changed from inline-block */
    white-space: pre;     /* preserve the line breaks from JS */
    overflow-wrap: normal; /* prevent breaking inside words */
    word-break: normal;    /* prevent breaking inside words */
    max-width: none;       /* remove 80% constraint */
    font-family: "Courier New", Courier, monospace;
    text-align: center;    /* keep lines centered */
    text-shadow: 0 0 1px;
}

  .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem; /* optional: for edge padding on mobile */
    font-family: 'Playfair Display', serif;
  }

  /* .chevron-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .chevron {
    width: 64px;
    height: 64px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: float 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 4px white);
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }
  
  .chevron:hover {
    opacity: 1;
  }
  
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(6px); }
    100% { transform: translateY(0); }
  }

  .frosted-box {
    background: #111;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #ff0000;
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    color: #fff;
  }

  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    margin-bottom: 30px;
    font-size: 1rem;
  }
  
  .story-link {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 20px;
    border: 1px solid #444;
    transition: background-color 0.3s;
  }
  
  .story-link:hover {
    background-color: #111;
  }  */
  
  .video-box iframe {
    border: 2px solid #444;
  }
  
  .arrow {
    font-size: clamp(15px, 1.7vw, 20px); /* Bigger min size and max size */
    color: #fff;
    animation: fadeIn 4s ease-in forwards;
    text-shadow: 0 0 15px #fff;
    line-height: 1.4;
  }
  
 @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  } 
  
 /* .script-title {
    font-size: 2.5rem;
  }
  
  .logline {
    font-size: 1.25rem;
    margin-bottom: 30px;
  } */
  
  .read-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    box-shadow: 0 0 15px #ff0000;
    transition: background-color 0.3s;
    white-space: nowrap;
  }
  
  .read-btn:hover {
    background-color: #cc0000;
  }

  .contact {
    font-size: clamp(18px, 1.8vw, 26px);
    text-align: center;
  }

  .contact :hover {
    color: green !important;
  }


  h1.title {
    font-family: "Impact", "Arial Black", sans-serif; /* thick, bold, cinematic */
    font-weight: 900;   /* extra bold just in case */
    text-transform: uppercase; /* classic movie title feel */
    letter-spacing: 1px;      /* optional: small spacing for more presence */
    font-size: clamp(36px, 6vw, 72px); /* scales from phones to desktop */
}

  h5 {
    color: #fff;
    font-weight: bold;
  }

  h5.sell {
    color: green;
    font-weight: bold;
  }

  .bio {
    color: #f2f2f2;
    font-size: clamp(17px, 1.5vw, 24px);
    line-height: 1.2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  .bio b {
    line-height: 1.5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-shadow: 0 0 2px;
    color: #fff;
    font-weight: 900;
  }



  .bump {
    margin-bottom: 30px;
  }

  .green {
    border-radius: 50%;
    border: 4px solid green;
    padding: 2px;
    display: inline-block;
  }

  .pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
  }
 

  #script {
    padding-top: 0 !important; /* remove any top padding */
    margin-top: 0 !important;  /* remove any top margin */
  }
  
  #script .arrow { /* or whatever class/ID your arrow has */
    margin-top: 0 !important;  /* pull it up if it has margin */
    position: relative;
    top: -50px; /* shift the arrow up 10px — adjust as needed */
  }

  @media (max-width: 576px) {
  .title {
    font-size: 16px;
    white-space: nowrap;
  }
  h5{
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .bio, .sell {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  @media (max-width: 576px) {
    .typed-text {
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
      white-space: normal; /* allow wrapping on mobile */
      overflow-wrap: break-word; /* break long words if needed */
    }
  }
  
  .col-4.text-center {
    display: flex;
    justify-content: center;
  }


    .pic {
      width: 150px;
      height: 150px;
      max-width: 150px;
      max-height: 150px;
      object-fit: cover;
    }

    .frosted-box {
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
}