@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* 
      WordPress-Friendly Scoped CSS
      Mobile-first approach, Light Mode 2026 Aesthetic 
    */
    .gz-lt-wrapper {
      --bg-base: #0f1419;
      --glass-bg: rgba(16, 24, 36, 0.75);
      --glass-border: rgba(255, 255, 255, 0.06);
      --glass-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
      --accent-gradient: linear-gradient(135deg, #38bdf8, #818cf8);
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --control-bg: rgba(30, 41, 59, 0.7);
      --control-hover: #1e293b;

      width: 100%;
      background-color: var(--bg-base);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
      overflow: hidden;
      position: relative;
      display: block;
      color: var(--text-main);
      z-index: 1;
    }

    .gz-lt-wrapper * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Modern Light Mesh Gradient Background */
    .gz-lt-wrapper::before,
    .gz-lt-wrapper::after,
    .gz-lt-wrapper-blob {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: -1;
      opacity: 0.6;
      pointer-events: none;
    }
    .gz-lt-wrapper::before {
      width: 400px; height: 400px;
      background: #0c2d48;
      top: -100px; left: -100px;
    }
    .gz-lt-wrapper::after {
      width: 450px; height: 450px;
      background: #1a1a3e;
      bottom: -150px; right: -100px;
    }
    .gz-lt-wrapper-blob {
      width: 300px; height: 300px;
      background: #0f2a2e;
      top: 40%; left: 50%;
      transform: translate(-50%, -50%);
    }

    /* Container: 100% width mobile, max 1160px desktop */
    .gz-lt-container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 40px 16px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
    }

    /* Mobile-First Typography Constraints */
    .gz-lt-h1 {
      font-size: 23pt;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.15;
      text-align: center;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
    }
    .gz-lt-h2 {
      font-size: 28pt;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.15;
      text-align: center;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .gz-lt-h3 {
      font-size: 16pt;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .gz-lt-p {
      font-size: 16px;
      line-height: 1.5;
      color: var(--text-muted);
      text-align: center;
      max-width: 500px;
    }

    /* Hero Glass Card */
    .gz-lt-card {
      width: 100%;
      background: var(--glass-bg);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      border: 1px solid var(--glass-border);
      border-radius: 13px;
      padding: 32px 20px;
      box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    /* Current Time Display */
    .gz-lt-current-box {
      width: 100%;
      background: rgba(30, 41, 59, 0.4);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      margin-bottom: 4px;
    }
    .gz-lt-current-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }
    .gz-lt-current-time {
      font-size: 22px;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.08em;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Timer Display Area */
    .gz-lt-timer-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
    }

    .gz-lt-time-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      border-radius: 24px;
      padding: 16px 12px;
      flex: 1;
      max-width: 120px;
      position: relative;
      overflow: hidden;
    }

    .gz-lt-num {
      font-size: 32pt;
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      line-height: 1;
      color: var(--text-main);
    }

    .gz-lt-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-top: 8px;
      font-weight: 600;
    }

    .gz-lt-colon {
      font-size: 24pt;
      font-weight: 700;
      color: var(--text-muted);
      animation: gz-lt-blink 1s infinite alternate;
      margin-top: -20px;
    }

    @keyframes gz-lt-blink {
      0% { opacity: 1; }
      100% { opacity: 0.3; }
    }

    /* Interactive Progress Ring / Bar */
    .gz-lt-progress-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .gz-lt-progress-bar-bg {
      width: 100%;
      height: 8px;
      background: var(--control-hover);
      border-radius: 999px;
      overflow: hidden;
    }
    .gz-lt-progress-bar-fill {
      height: 100%;
      width: 0%;
      background: var(--accent-gradient);
      border-radius: 999px;
      transition: width 1s linear;
    }
    .gz-lt-progress-text {
      font-size: 12px;
      color: var(--text-muted);
      text-align: right;
      font-weight: 600;
    }

    /* Advanced Features Section */
    .gz-lt-features {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .gz-lt-presets {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .gz-lt-preset-btn {
      background: var(--control-bg);
      border: 1px solid rgba(0,0,0,0.05);
      color: var(--text-main);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .gz-lt-preset-btn:hover, .gz-lt-preset-btn.active {
      background: var(--accent-gradient);
      color: #ffffff;
      transform: translateY(-2px);
    }

    .gz-lt-controls-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .gz-lt-input-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .gz-lt-input-group label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
    }
    
    .gz-lt-input {
      width: 100%;
      background: rgba(30, 41, 59, 0.6);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 14px 16px;
      border-radius: 16px;
      font-family: inherit;
      font-size: 16px;
      color: var(--text-main);
      outline: none;
      transition: all 0.3s ease;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    }
    .gz-lt-input:focus {
      border-color: #4f46e5;
      box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }

    /* iOS Style Toggle */
    .gz-lt-toggle-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(30, 41, 59, 0.5);
      padding: 16px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .gz-lt-toggle-label {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .gz-lt-switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 28px;
    }
    .gz-lt-switch input { 
      opacity: 0; width: 0; height: 0; 
    }
    .gz-lt-slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #334155;
      transition: .4s;
      border-radius: 34px;
    }
    .gz-lt-slider:before {
      position: absolute;
      content: "";
      height: 20px; width: 20px;
      left: 4px; bottom: 4px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    .gz-lt-switch input:checked + .gz-lt-slider {
      background: var(--accent-gradient);
    }
    .gz-lt-switch input:checked + .gz-lt-slider:before {
      transform: translateX(22px);
    }

    /* Small phones (<400px) */
    @media (max-width: 399px) {
      .gz-lt-container { padding: 24px 12px; gap: 20px; }
      .gz-lt-h2 { font-size: 20pt; }
      .gz-lt-p { font-size: 13px; max-width: 100%; }
      .gz-lt-card { padding: 20px 12px; gap: 20px; border-radius: 12px; }
      .gz-lt-timer-wrapper { gap: 6px; }
      .gz-lt-time-block { padding: 10px 6px; max-width: 80px; border-radius: 16px; }
      .gz-lt-num { font-size: 22pt; }
      .gz-lt-label { font-size: 9px; margin-top: 4px; }
      .gz-lt-colon { font-size: 16pt; margin-top: -12px; }
      .gz-lt-current-box { padding: 8px 12px; border-radius: 12px; flex-direction: column; gap: 2px; }
      .gz-lt-current-time { font-size: 18px; }
      .gz-lt-preset-btn { padding: 6px 12px; font-size: 12px; }
      .gz-lt-input { padding: 10px 12px; font-size: 14px; }
      .gz-lt-toggle-row { padding: 12px; flex-direction: column; gap: 10px; }
      .gz-lt-controls-grid { gap: 12px; }
    }

    /* Phones (400px-575px) */
    @media (min-width: 400px) and (max-width: 575px) {
      .gz-lt-container { padding: 32px 16px; gap: 24px; }
      .gz-lt-h2 { font-size: 24pt; }
      .gz-lt-p { font-size: 14px; }
      .gz-lt-card { padding: 24px 16px; gap: 24px; }
      .gz-lt-time-block { padding: 12px 8px; max-width: 90px; border-radius: 18px; }
      .gz-lt-num { font-size: 26pt; }
      .gz-lt-label { font-size: 10px; }
      .gz-lt-colon { font-size: 18pt; margin-top: -14px; }
      .gz-lt-current-box { padding: 10px 14px; }
      .gz-lt-preset-btn { font-size: 13px; }
    }

    /* Large phones / small tablets (576px-767px) */
    @media (min-width: 576px) and (max-width: 767px) {
      .gz-lt-container { padding: 40px 20px; gap: 28px; }
      .gz-lt-h2 { font-size: 26pt; }
      .gz-lt-card { padding: 28px 20px; max-width: 540px; }
      .gz-lt-time-block { padding: 14px 10px; max-width: 100px; border-radius: 20px; }
      .gz-lt-num { font-size: 28pt; }
      .gz-lt-colon { font-size: 20pt; margin-top: -16px; }
      .gz-lt-controls-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Tablets (768px-991px) */
    @media (min-width: 768px) and (max-width: 991px) {
      .gz-lt-container { padding: 56px 24px; gap: 32px; }
      .gz-lt-h2 { font-size: 38px; margin-bottom: 12px; }
      .gz-lt-p { font-size: 16px; }
      .gz-lt-card { padding: 40px 32px; max-width: 720px; }
      .gz-lt-timer-wrapper { gap: 20px; }
      .gz-lt-time-block { padding: 20px 24px; max-width: 140px; }
      .gz-lt-num { font-size: 44pt; }
      .gz-lt-colon { font-size: 32pt; margin-top: -20px; }
      .gz-lt-current-time { font-size: 20px; }
      .gz-lt-controls-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Small desktops (992px-1199px) */
    @media (min-width: 992px) and (max-width: 1199px) {
      .gz-lt-container { padding: 64px 24px; }
      .gz-lt-h2 { font-size: 42px; margin-bottom: 14px; }
      .gz-lt-p { font-size: 17px; }
      .gz-lt-card { padding: 44px 40px; max-width: 760px; }
      .gz-lt-timer-wrapper { gap: 22px; }
      .gz-lt-time-block { padding: 22px 28px; max-width: 150px; }
      .gz-lt-num { font-size: 50pt; }
      .gz-lt-colon { font-size: 36pt; margin-top: -22px; }
      .gz-lt-controls-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Large desktops (1200px+) */
    @media (min-width: 1200px) {
      .gz-lt-container { padding: 80px 24px; gap: 40px; }
      .gz-lt-h2 { font-size: 52px; margin-bottom: 18px; }
      .gz-lt-p { font-size: 18px; max-width: 600px; }
      .gz-lt-card { padding: 56px 48px; max-width: 860px; gap: 36px; }
      .gz-lt-timer-wrapper { gap: 28px; }
      .gz-lt-time-block { padding: 28px 36px; max-width: 180px; border-radius: 28px; }
      .gz-lt-num { font-size: 64pt; }
      .gz-lt-label { font-size: 14px; margin-top: 10px; }
      .gz-lt-colon { font-size: 44pt; margin-top: -28px; }
      .gz-lt-current-box { padding: 14px 24px; border-radius: 18px; }
      .gz-lt-current-label { font-size: 14px; }
      .gz-lt-current-time { font-size: 26px; }
      .gz-lt-controls-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .gz-lt-preset-btn { padding: 10px 20px; font-size: 15px; }
      .gz-lt-input { padding: 16px 20px; font-size: 17px; }
    }

/* --- Codex CSS updates --- */
/* 
      WordPress-Friendly Scoped CSS
      Mobile-first approach, Light Mode 2026 Aesthetic 
    */
.gz-lt-wrapper {
  --bg-base: #070b16;
  --bg-elevated: rgba(13, 20, 36, 0.82);
  --glass-bg: linear-gradient(145deg, rgba(18, 27, 48, 0.84), rgba(8, 13, 26, 0.74));
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #7c3aed 48%, #f472b6 100%);
  --accent-gradient-soft: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(124, 58, 237, 0.18), rgba(244, 114, 182, 0.14));
  --text-main: #f8fafc;
  --text-muted: #a7b4c8;
  --text-soft: #dbeafe;
  --control-bg: rgba(21, 32, 54, 0.82);
  --control-hover: rgba(37, 50, 80, 0.92);
  --focus-ring: rgba(56, 189, 248, 0.28);
  --success: #22c55e;
  --error: #fb7185;

  width: 100%;
  max-width: 100%;
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.22), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(124, 58, 237, 0.24), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(244, 114, 182, 0.13), transparent 36%),
    linear-gradient(180deg, #060a13 0%, var(--bg-base) 48%, #090d18 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  position: relative;
  display: block;
  color: var(--text-main);
  z-index: 1;
  isolation: isolate;
}

.gz-lt-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gz-lt-wrapper::before,
.gz-lt-wrapper::after,
.gz-lt-wrapper-blob {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(82px);
  z-index: -1;
  opacity: 0.72;
  pointer-events: none;
  transform: translateZ(0);
}

.gz-lt-wrapper::before {
  width: 420px;
  height: 420px;
  background: rgba(14, 165, 233, 0.24);
  top: -130px;
  left: -115px;
}

.gz-lt-wrapper::after {
  width: 470px;
  height: 470px;
  background: rgba(124, 58, 237, 0.22);
  bottom: -170px;
  right: -110px;
}

.gz-lt-wrapper-blob {
  width: 360px;
  height: 360px;
  background: rgba(20, 184, 166, 0.12);
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gz-lt-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 42px 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.gz-lt-h1 {
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  text-wrap: balance;
}

.gz-lt-h2 {
  font-size: clamp(30px, 8vw, 54px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 14px 34px rgba(56, 189, 248, 0.13));
}

.gz-lt-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.25;
}

.gz-lt-p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
  max-width: 620px;
  margin-top: 12px;
}

.gz-lt-card {
  width: 100%;
  max-width: 860px;
  background: var(--glass-bg);
  backdrop-filter: blur(34px) saturate(150%);
  -webkit-backdrop-filter: blur(34px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 28px 18px;
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.gz-lt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%),
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.12), transparent 44%);
  pointer-events: none;
}

.gz-lt-current-box {
  width: 100%;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.gz-lt-current-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
}

.gz-lt-current-time {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.gz-lt-timer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.gz-lt-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(30, 41, 71, 0.72), rgba(12, 19, 34, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 10px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 120px;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.gz-lt-time-block::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.7;
  border-radius: 999px;
}

.gz-lt-time-block:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(56, 189, 248, 0.08);
}

.gz-lt-num {
  font-size: clamp(31px, 11vw, 64px);
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  line-height: 0.96;
  color: var(--text-main);
  text-shadow: 0 12px 30px rgba(56, 189, 248, 0.16);
}

.gz-lt-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-muted);
  margin-top: 9px;
  font-weight: 750;
  line-height: 1.1;
}

.gz-lt-colon {
  font-size: clamp(22px, 7vw, 44px);
  font-weight: 850;
  color: rgba(219, 234, 254, 0.78);
  animation: gz-lt-blink 1s infinite alternate;
  margin-top: -18px;
  flex: 0 0 auto;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.32);
}

@keyframes gz-lt-blink {
  0% { opacity: 1; }
  100% { opacity: 0.42; }
}

.gz-lt-progress-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.gz-lt-progress-bar-bg {
  width: 100%;
  height: 10px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.32);
}

.gz-lt-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: 999px;
  transition: width 1s linear;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.45);
}

.gz-lt-progress-text {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gz-lt-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  z-index: 1;
}

.gz-lt-presets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.gz-lt-preset-btn {
  background: var(--control-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-height: 40px;
}

.gz-lt-preset-btn:hover,
.gz-lt-preset-btn.active,
.active {
  background: var(--accent-gradient);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 30px rgba(56, 189, 248, 0.2), 0 8px 22px rgba(124, 58, 237, 0.18);
}

.gz-lt-preset-btn:active {
  transform: translateY(0);
}

.gz-lt-preset-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus-ring), 0 16px 30px rgba(56, 189, 248, 0.2);
}

.gz-lt-controls-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

.gz-lt-input-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.gz-lt-input-group label {
  font-size: 13px;
  font-weight: 750;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.gz-lt-input {
  width: 100%;
  min-width: 0;
  background: rgba(9, 14, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  border-radius: 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.24), 0 10px 24px rgba(0, 0, 0, 0.12);
  appearance: auto;
}

.gz-lt-input:hover {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(148, 163, 184, 0.28);
}

.gz-lt-input:focus {
  border-color: rgba(56, 189, 248, 0.78);
  box-shadow: 0 0 0 4px var(--focus-ring), inset 0 2px 7px rgba(0, 0, 0, 0.18);
}

.gz-lt-input::placeholder {
  color: rgba(167, 180, 200, 0.76);
}

.gz-lt-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: rgba(15, 23, 42, 0.64);
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gz-lt-toggle-label {
  font-size: 15px;
  font-weight: 750;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  line-height: 1.35;
}

.gz-lt-toggle-label svg {
  color: #38bdf8;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 12px rgba(56, 189, 248, 0.25));
}

.gz-lt-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
}

.gz-lt-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gz-lt-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #334155;
  transition: background 0.28s ease, box-shadow 0.28s ease;
  border-radius: 999px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.28);
}

.gz-lt-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: linear-gradient(180deg, #ffffff, #dbeafe);
  transition: transform 0.28s ease;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.32);
}

.gz-lt-switch input:checked + .gz-lt-slider {
  background: var(--accent-gradient);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14), inset 0 1px 2px rgba(255, 255, 255, 0.22);
}

.gz-lt-switch input:checked + .gz-lt-slider:before {
  transform: translateX(24px);
}

.gz-lt-switch input:focus-visible + .gz-lt-slider {
  box-shadow: 0 0 0 4px var(--focus-ring);
}

@media (max-width: 399px) {
  .gz-lt-container {
    padding: 26px 12px;
    gap: 20px;
  }

  .gz-lt-h1,
  .gz-lt-h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .gz-lt-p {
    font-size: 13.5px;
    max-width: 100%;
    line-height: 1.55;
  }

  .gz-lt-card {
    padding: 20px 12px;
    gap: 20px;
    border-radius: 18px;
  }

  .gz-lt-timer-wrapper {
    gap: 5px;
  }

  .gz-lt-time-block {
    padding: 12px 5px;
    max-width: 84px;
    border-radius: 15px;
  }

  .gz-lt-num {
    font-size: 30px;
  }

  .gz-lt-label {
    font-size: 9px;
    margin-top: 5px;
    letter-spacing: 0.08em;
  }

  .gz-lt-colon {
    font-size: 20px;
    margin-top: -12px;
  }

  .gz-lt-current-box {
    padding: 11px 12px;
    border-radius: 14px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .gz-lt-current-time {
    font-size: 18px;
  }

  .gz-lt-preset-btn {
    padding: 9px 12px;
    font-size: 12px;
    flex: 1 1 calc(50% - 8px);
  }

  .gz-lt-input {
    padding: 12px 12px;
    font-size: 15px;
  }

  .gz-lt-toggle-row {
    padding: 13px;
    align-items: stretch;
  }

  .gz-lt-toggle-label {
    font-size: 14px;
  }

  .gz-lt-controls-grid {
    gap: 12px;
  }
}

@media (min-width: 400px) and (max-width: 575px) {
  .gz-lt-container {
    padding: 34px 16px;
    gap: 24px;
  }

  .gz-lt-h2 {
    font-size: 32px;
  }

  .gz-lt-p {
    font-size: 14.5px;
  }

  .gz-lt-card {
    padding: 24px 16px;
    gap: 24px;
  }

  .gz-lt-time-block {
    padding: 13px 7px;
    max-width: 96px;
    border-radius: 17px;
  }

  .gz-lt-num {
    font-size: 36px;
  }

  .gz-lt-label {
    font-size: 10px;
  }

  .gz-lt-colon {
    font-size: 24px;
    margin-top: -14px;
  }

  .gz-lt-current-box {
    padding: 12px 14px;
  }

  .gz-lt-preset-btn {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .gz-lt-wrapper::before {
    width: 300px;
    height: 300px;
  }

  .gz-lt-wrapper::after {
    width: 330px;
    height: 330px;
  }

  .gz-lt-wrapper-blob {
    width: 260px;
    height: 260px;
  }

  .gz-lt-presets {
    gap: 8px;
  }

  .gz-lt-toggle-row {
    flex-wrap: nowrap;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .gz-lt-container {
    padding: 42px 20px;
    gap: 28px;
  }

  .gz-lt-h2 {
    font-size: 38px;
  }

  .gz-lt-card {
    padding: 30px 22px;
    max-width: 560px;
  }

  .gz-lt-time-block {
    padding: 16px 10px;
    max-width: 112px;
    border-radius: 19px;
  }

  .gz-lt-num {
    font-size: 42px;
  }

  .gz-lt-colon {
    font-size: 28px;
    margin-top: -16px;
  }

  .gz-lt-controls-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .gz-lt-container {
    padding: 58px 24px;
    gap: 32px;
  }

  .gz-lt-h2 {
    font-size: 44px;
    margin-bottom: 12px;
  }

  .gz-lt-p {
    font-size: 16px;
  }

  .gz-lt-card {
    padding: 40px 32px;
    max-width: 740px;
    border-radius: 24px;
  }

  .gz-lt-timer-wrapper {
    gap: 18px;
  }

  .gz-lt-time-block {
    padding: 20px 24px;
    max-width: 144px;
  }

  .gz-lt-num {
    font-size: 56px;
  }

  .gz-lt-colon {
    font-size: 36px;
    margin-top: -20px;
  }

  .gz-lt-current-time {
    font-size: 22px;
  }

  .gz-lt-controls-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gz-lt-container {
    padding: 66px 24px;
  }

  .gz-lt-h2 {
    font-size: 48px;
    margin-bottom: 14px;
  }

  .gz-lt-p {
    font-size: 17px;
  }

  .gz-lt-card {
    padding: 46px 40px;
    max-width: 790px;
  }

  .gz-lt-timer-wrapper {
    gap: 22px;
  }

  .gz-lt-time-block {
    padding: 22px 28px;
    max-width: 156px;
  }

  .gz-lt-num {
    font-size: 62px;
  }

  .gz-lt-colon {
    font-size: 40px;
    margin-top: -22px;
  }

  .gz-lt-controls-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .gz-lt-container {
    padding: 82px 24px;
    gap: 40px;
  }

  .gz-lt-h2 {
    font-size: 54px;
    margin-bottom: 18px;
  }

  .gz-lt-p {
    font-size: 18px;
    max-width: 640px;
  }

  .gz-lt-card {
    padding: 56px 48px;
    max-width: 880px;
    gap: 36px;
    border-radius: 28px;
  }

  .gz-lt-timer-wrapper {
    gap: 26px;
  }

  .gz-lt-time-block {
    padding: 28px 36px;
    max-width: 180px;
    border-radius: 26px;
  }

  .gz-lt-num {
    font-size: 78px;
  }

  .gz-lt-label {
    font-size: 14px;
    margin-top: 10px;
  }

  .gz-lt-colon {
    font-size: 48px;
    margin-top: -28px;
  }

  .gz-lt-current-box {
    padding: 15px 24px;
    border-radius: 20px;
  }

  .gz-lt-current-label {
    font-size: 13px;
  }

  .gz-lt-current-time {
    font-size: 26px;
  }

  .gz-lt-controls-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .gz-lt-preset-btn {
    padding: 11px 20px;
    font-size: 15px;
  }

  .gz-lt-input {
    padding: 16px 20px;
    font-size: 17px;
  }
}