
<style>
  :root {
    --primary-color: #a00000;
    --secondary-color: #333;
    --highlight-color: #ff6b6b;
    --bg-color: #f9f9f9;
  }

  .countdown-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-color);
    border-radius: 15px;
  }

  #headline {
    color: #550000;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
  }

  #countdown ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }

  .time-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .time-card:hover {
    transform: translateY(-5px);
  }

  .time-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .time-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    opacity: 0.8;
  }

  .celebration {
    margin-top: 3rem;
    animation: fadeIn 1s ease-in;
  }

  .emoji-party {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .emoji-party span {
    display: inline-block;
    animation: bounce 0.5s infinite alternate;
    margin: 0 0.5rem;
  }

  .emoji-party span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .emoji-party span:nth-child(3) {
    animation-delay: 0.4s;
  }

  .emoji-party span:nth-child(4) {
    animation-delay: 0.6s;
  }

  .cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
  }

  .cta-button:hover {
    background-color: var(--highlight-color);
    transform: scale(1.05);
  }

  .hidden {
    display: none;
  }

  @keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media (max-width: 768px) {
    #countdown ul {
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .time-card {
      min-width: calc(50% - 2rem);
      margin-bottom: 1rem;
    }
    
    #headline {
      font-size: 1.8rem;
    }
    
    .time-number {
      font-size: 2.5rem;
    }
  }

