/*  .cigar-fade-enter-active,
  .cigar-fade-leave-active {
    transition: opacity 0.25s ease;
  }

  .cigar-fade-enter-from,
  .cigar-fade-leave-to {
    opacity: 0;
  }

  .cigar-fade-enter-to,
  .cigar-fade-leave-from {
    opacity: 1;
  }*/

/*.cigarBanner {
  transition: opacity 0.2s ease;
}*/

  body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    /*background: #111;*/
    background: #684a30;
    color: #f2e6d8;
    height: 100vh;
    overflow: hidden;
  }

  #app {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* ===== SPLIT LAYOUT ===== */
  .top {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 13%;
  }

  .middle {
    flex: 4;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .bottom {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
  }

  /* ===== HOME ===== */
  .logo {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .btn {
  	margin-top: 20px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #3a2a20;
    /*background: #1b1410;*/
    background: #2e2927;
    color: #f2e6d8;
    font-size: 16px;
    width: 100%;
  }

  .btn:active {
    transform: scale(0.98);
  }

  /* ===== CIGAR ===== */
  .cigar {
    width: 80%;
    height: 30px;
    border-radius: 50px;
    background: linear-gradient(90deg, #6b3e2e, #a86a3a, #5a2f22);
    position: relative;
    overflow: hidden;
  }

  .cigar::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 100%;
    background: #2b1a14;
  }

  /* SNAP STATE */
  .snapped {
    transform: rotate(-12deg);
    opacity: 0.6;
  }

  .snapped::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #000;
  }

  /* GLOW STATE */
  .glow::after {
    box-shadow: 0 0 12px 4px rgba(255, 80, 40, 0.8);
  }

  .cigarBanner {
    /*width: 80%;*/
    height: 100%;
  }

  /* ===== QUIZ ===== */
  .question {
    font-size: 18px;
  }

  .answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .answer {
    padding: 12px;
    border-radius: 10px;
    /*background: #1b1410;*/
    background: #54280f;
    border: 1px solid #3a2a20;
  }

  .answer.selected {
    /*border-color: #b67a4a;*/
    border-color: #fff;
  }

  .feedback {
    min-height: 40px;
    font-size: 20px;
    color: white;
    opacity: 0.9;
  }

  .exit {
    padding: 10px 14px;
    font-size: 16px;
    /*background: #1b1410;*/
    background: #2e2927;
    border: 1px solid #3a2a20;
    border-radius: 10px;
    color: white;
  }
