* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding: 20px 0;
  }
  
  /* Blurred GIF background like in your existing site */
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("Chrome.gif") center center / cover no-repeat;
    filter: blur(1px);
    z-index: -2;
    opacity: 0.6;
  }
  
  /* Dark overlay for better readability */
  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
  
  .container {
    width: 90%;
    max-width: 700px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 20px 0;
  }
  
  .logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #727272);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
  }
  
  /* Countdown styling - default is desktop (one line) */
  .countdown {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
  }
  
  .time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex: 1;
    min-width: 0;
  }
  
  /* New digit display styling */
  .digit-group {
    display: flex;
    justify-content: center;
    gap: 3px;
  }
  
  .digit-container {
    position: relative;
    width: 45px;
    height: 60px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
  .digit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  /* Animation classes that will be added via JS */
  .digit-new {
    transform: translateY(-100%);
    opacity: 0;
  }
  
  .digit-old {
    transform: translateY(100%);
    opacity: 0;
  }
  
  /* Central highlight on digit boxes */
  .digit-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0.15) 100%
    );
    pointer-events: none;
    z-index: 1;
  }
  
  .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .message {
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
  }
  
  /* Responsive adjustments - tablet */
  @media (max-width: 768px) {
    .container {
      width: 92%;
      padding: 20px;
    }
    
    .logo {
      width: 100px;
      height: 100px;
    }
  
    .name {
      font-size: 22px;
    }
  
    .description {
      font-size: 12px;
      margin-bottom: 20px;
    }
    
    .countdown {
      gap: 10px;
    }
    
    .time-block {
      padding: 12px;
    }
    
    .digit-container {
      width: 40px;
      height: 50px;
    }
    
    .digit {
      font-size: 1.8rem;
    }
  }
  
  /* Mobile specific layout - 2x2 grid for time blocks */
  @media (max-width: 580px) {
    .countdown {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 15px;
      justify-content: center;
    }
    
    .time-block {
      width: 100%;
    }
    
    .digit-container {
      width: 40px;
      height: 45px;
    }
    
    .digit {
      font-size: 1.7rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 360px) {
    .container {
      width: 95%;
      padding: 15px;
    }
    
    .logo {
      width: 80px;
      height: 80px;
    }
    
    .name {
      font-size: 20px;
    }
    
    .description {
      font-size: 11px;
      margin-bottom: 15px;
    }
    
    .countdown {
      gap: 10px;
    }
    
    .digit-container {
      width: 30px;
      height: 40px;
    }
    
    .digit {
      font-size: 1.4rem;
    }
  }