@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-countdown-wrapper {
  font-family: 'Poppins', sans-serif;

  /* STRONGER PURPLE, LESS WHITE */
  background: radial-gradient(circle at top,
      rgba(111,121,255,1) 0%,
      rgba(111,121,255,0.85) 25%,
      rgba(111,121,255,0.55) 50%,
      #FAFAFA 90%);

  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  box-sizing: border-box;

  /* Soft ambient glow */
  box-shadow: inset 0 0 120px rgba(111,121,255,0.35);
}

/* GLASS PANEL */
.crazy_coder-container {
  background: rgba(255,255,255,0.35); /* softer, not full white */
  border-radius: 28px;

  /* purple glow border */
  border: 1.5px solid rgba(111,121,255,0.45);

  /* deeper soft glow */
  box-shadow:
      0 20px 50px rgba(111,121,255,0.40),
      0 0 40px rgba(111,121,255,0.25) inset;

  padding: 36px 30px;
  max-width: 980px;
  width: 100%;
  text-align: center;

  backdrop-filter: blur(12px); /* glass effect */
}

/* TITLES */
.crazy_coder-title {
  font-size: 2.1rem;
  color: #111; /* clean readable */
}

.crazy_coder-subtitle {
  color: #333;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* SECTION HEADERS */
.crazy_coder-section-title {
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin: 18px 0 10px;

  /* purple left accent */
  border-left: 4px solid #6F79FF;
  padding-left: 8px;
}

/* INPUTS / SELECTS */
.crazy_coder-input,
.crazy_coder-select {
  padding: 12px 14px;
  border-radius: 12px;

  background: rgba(255,255,255,0.85); /* slightly transparent white */
  border: 1px solid rgba(111,121,255,0.45);

  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;

  transition: box-shadow 0.25s ease, border 0.25s ease;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  border-color: #6F79FF;
  box-shadow: 0 0 10px rgba(111,121,255,0.6);
}

/* GRID */
.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

/* BUTTONS */
.crazy_coder-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

/* SOLID BUTTON */
.crazy_coder-btn {
  background: linear-gradient(135deg, #6F79FF, #9AA3FF);
  color: #fff;
  border: none;
  box-shadow: 0 12px 25px rgba(111,121,255,0.45);
}

.crazy_coder-btn:hover {
  transform: translateY(-1.5px);
}

/* OUTLINE BUTTON */
.crazy_coder-btn-outline {
  background: transparent;
  color: #4c54d6;
  border: 2px solid #6F79FF;
}

.crazy_coder-btn-outline:hover {
  background: #6F79FF;
  color: #fff;
}

/* OUTPUT TEXTBOX */
.crazy_coder-output {
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(111,121,255,0.35);

  box-shadow: 0 14px 32px rgba(111,121,255,0.25);

  width: 100%;
  font-size: 1rem;
  margin-top: 25px;
  white-space: pre-line;
  color: #000;
}
