* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   background: linear-gradient(135deg, #ff9c00 0%, #4bc6e5 100%);
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
}
.status-card {
   background: white;
   border-radius: 20px;
   padding: 40px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
   max-width: 600px;
   width: 100%;
   text-align: center;
}
.status-icon {
   font-size: 64px;
   margin-bottom: 20px;
}
h1 {
   color: #333;
   margin-bottom: 10px;
   font-size: 28px;
}
.status-badge {
   display: inline-block;
   padding: 8px 20px;
   border-radius: 50px;
   background-color: #999;
   color: white;
   font-weight: bold;
   margin-bottom: 30px;
   font-size: 16px;
}
.info-grid {
   display: grid;
   gap: 20px;
   margin-top: 30px;
   text-align: left;
}
.info-item {
   background: #f5f5f5;
   padding: 20px;
   border-radius: 10px;
   border-left: 4px solid #999;
}
.info-label {
   font-size: 12px;
   color: #666;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 8px;
}
.info-value {
   font-size: 18px;
   color: #333;
   font-weight: 600;
}
.countdown {
   font-size: 32px;
   color: #999;
   font-weight: bold;
   font-variant-numeric: tabular-nums;
}
.error-message {
   background: #ffebee;
   color: #c62828;
   padding: 15px;
   border-radius: 10px;
   margin-top: 20px;
   border-left: 4px solid #c62828;
}
.local-time {
   font-size: 12px;
   color: #999;
   margin-top: 5px;
}
@keyframes pulse {
   0%,
   100% {
      opacity: 1;
   }
   50% {
      opacity: 0.5;
   }
}
.pulse {
   animation: pulse 2s infinite;
}
