 /* Popup Stilleri */
  .rast-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  
  .rast-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: rast-fadeIn 0.5s;
    font-family: 'Poppins', sans-serif;
    margin: 15px;
  }
  
  @keyframes rast-fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .rast-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    font-family: 'Poppins', sans-serif;
  }
  
  .rast-ribbon {
    background-color: #3498db;
    color: white;
    padding: 20px 60px;
    text-align: center;
	font-size: 2em;
    margin: 0 auto 20px;
    width: fit-content;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }
  
  .rast-ribbon:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid #ec3e50;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .rast-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
  }
  
  .rast-countdown-unit {
    text-align: center;
    min-width: 60px;
  }
  
  .rast-countdown-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
  }
  
  .rast-btn-register {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
  }