/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  /* Using gradient background matching original design colors */
  background: linear-gradient(135deg, #0a1128 0%, #1a3a6c 50%, #0a1128 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container with proper viewport fit */
.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top bar */
.top-bar {
  padding: 2rem 4rem;
  background: rgba(79, 195, 220, 0.08);
  border-bottom: 2px solid rgba(79, 195, 220, 0.2);
}

.bar-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-indicator {
  width: 14px;
  height: 14px;
  background: #4fc3dc;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(79, 195, 220, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.bar-text {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #4fc3dc;
  text-transform: uppercase;
}

/* Main content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
}

.content-grid {
  width: 100%;
  max-width: 1600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Warning section */
.warning-section {
  text-align: left;
  padding: 2rem;
}

/* Inline warning icon with elegant beige color */
.warning-icon-inline {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  line-height: 1.2em;
  text-align: center;
  background: linear-gradient(135deg, #f4ead5 0%, #e9d5b8 100%);
  color: #1a2332;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9em;
  margin-right: 0.4em;
  vertical-align: middle;
  box-shadow: 0 4px 15px rgba(244, 234, 213, 0.3);
}

.main-heading {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.warning-message {
  font-size: 2.5rem;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.message-line {
  margin-bottom: 0.6rem;
}

.message-line strong {
  color: #f4ead5;
  font-weight: 700;
}

/* White text for emphasis, larger size, more spacing */
.message-emphasis {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1.5rem;
}

/* Recommendation section */
.recommendation-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recommendation-card {
  /* Professional dark card with subtle transparency */
  background: rgba(15, 25, 50, 0.85);
  border: 3px solid rgba(79, 195, 220, 0.5);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(79, 195, 220, 0.15);
  width: 100%;
  max-width: 600px;
  backdrop-filter: blur(10px);
}

.card-icon {
  width: 80px;
  height: 80px;
  color: #4fc3dc;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 15px rgba(79, 195, 220, 0.4));
}

.recommendation-title {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

/* Professional time box with cyan accent matching the design */
.time-box {
  background: rgba(15, 25, 50, 0.6);
  border: 3px solid rgba(79, 195, 220, 0.6);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  margin: 2rem 0;
  box-shadow: 0 15px 40px rgba(79, 195, 220, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.time-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 220, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Changed time text to bright cyan matching the clock icon and border */
.time-large {
  font-size: 5.5rem;
  font-weight: 800;
  color: #5dd6f5;
  letter-spacing: 3px;
  display: block;
  position: relative;
  text-shadow: 0 4px 20px rgba(93, 214, 245, 0.5), 0 0 40px rgba(93, 214, 245, 0.3);
}

.recommendation-subtitle {
  font-size: 2.5rem;
  color: #4fc3dc;
  font-weight: 600;
  margin-top: 1.5rem;
  text-shadow: 0 2px 10px rgba(79, 195, 220, 0.3);
}

/* Bottom bar */
.bottom-bar {
  padding: 2rem 4rem;
  background: rgba(79, 195, 220, 0.05);
  border-top: 1px solid rgba(79, 195, 220, 0.15);
}

.footer-text {
  text-align: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .content-grid {
    gap: 4rem;
  }

  .main-heading {
    font-size: 3.5rem;
  }

  .warning-message {
    font-size: 2rem;
  }

  .message-emphasis {
    font-size: 2.5rem;
  }

  .time-large {
    font-size: 4.5rem;
  }
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .warning-section {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .top-bar,
  .bottom-bar {
    padding: 1.5rem 2rem;
  }

  .main-content {
    padding: 2rem;
  }

  .bar-text {
    font-size: 1.2rem;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .warning-message {
    font-size: 1.5rem;
  }

  .message-emphasis {
    font-size: 2rem;
  }

  .recommendation-title {
    font-size: 1.5rem;
  }

  .time-large {
    font-size: 3.5rem;
  }

  .recommendation-subtitle {
    font-size: 1.8rem;
  }
}

/* Large screens */
@media (min-width: 1920px) {
  .bar-text {
    font-size: 1.8rem;
  }

  .main-heading {
    font-size: 5rem;
  }

  .warning-message {
    font-size: 3rem;
  }

  .message-emphasis {
    font-size: 3.5rem;
  }

  .recommendation-title {
    font-size: 2.5rem;
  }

  .time-large {
    font-size: 6.5rem;
  }

  .recommendation-subtitle {
    font-size: 3rem;
  }

  .footer-text {
    font-size: 1.8rem;
  }
}
