.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
  }
  
  .age-gate__overlay {
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 28, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .age-gate__container {
    text-align: center;
    color: #fff;
    max-width: 500px;
    padding: 20px;
    font-family: Georgia, serif;
  }
  
  .age-gate__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .age-gate__label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .age-gate__year {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
  }
  
  .age-gate__digit {
    width: 50px;
    height: 60px;
    font-size: 28px;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
  }
  
  .age-gate__remember {
    margin-bottom: 10px;
    font-size: 13px;
  }
  
  .age-gate__error {
    color: #ff8c8c;
    height: 18px;
    font-size: 12px;
  }
  
  .age-gate__btn {
    padding: 10px 30px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }