/* ============================================================
   SHILLONG TEERR — MASTER STYLESHEET
   style.css — Include in header2.php via <link> tag
   <link rel="stylesheet" href="/style.css">
   ============================================================ */

/* ==========================================
   1. GOOGLE FONTS — already loaded via HTML
   ========================================== */
/* Cinzel (display) + Nunito (body) loaded in header2.php */

/* ==========================================
   2. CSS VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --primary:        #00464e;
  --primary-dark:   #002d33;
  --primary-light:  #006b76;
  --accent:         #3FD5BA;
  --accent-hover:   #2ebfa6;
  --gold:           #f4b400;

  /* Text */
  --text:           #1a2b2d;
  --text-muted:     #5a7275;
  --text-light:     #ffffff;
  --text-nav-muted: rgba(255,255,255,0.72);

  /* Surfaces */
  --bg:             #eef3f4;
  --card:           #ffffff;
  --border:         #d4e6e8;

  /* Shadows */
  --shadow:         0 4px 24px rgba(0,70,78,0.10);
  --shadow-hover:   0 8px 32px rgba(0,70,78,0.18);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.15);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.25);

  /* Spacing / Shape */
  --radius:         8px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;

  /* Nav */
  --nav-height:     68px;

  /* Typography */
  --font-brand:     'Cinzel', serif;
  --font-display:   'Cinzel', serif;
  --font-body:      'Nunito', sans-serif;

  /* Motion */
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   3. GLOBAL RESET & BASE
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
}

/* ==========================================
   4. HEADER & NAVBAR
   ========================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  box-shadow: var(--shadow-md);
}

/* Top accent stripe */
header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo span.accent-dot { color: var(--accent); }

/* Desktop Menu */
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.menu a {
  color: var(--text-nav-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.menu a:hover { color: var(--text-light); background: rgba(255,255,255,0.08); }
.menu a:hover::after { transform: scaleX(1); }
.menu a.active { color: var(--accent); }

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  gap: 5px;
  padding: 8px;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.hamburger:hover { background: rgba(255,255,255,0.16); border-color: var(--accent); }

.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(var(--nav-height) + 3px);
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  padding: 12px 0;
  animation: slideDown 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-nav-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
  border-left: 3px solid transparent;
}

.mobile-menu a:hover {
  color: var(--accent);
  background: rgba(63,213,186,0.06);
  border-left-color: var(--accent);
  padding-left: 34px;
}

.mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  animation: fadeIn 0.25s ease;
}

.nav-overlay.open { display: block; }

/* ==========================================
   5. PAGE LAYOUT
   ========================================== */
.page-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 18px 50px;
}

.container { padding: 27px; }

/* ==========================================
   6. TYPOGRAPHY
   ========================================== */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.page-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Legacy h1/h2 (for pages not using .page-title) */
h1 {
  font-size: 1.8rem;
  font-weight: 580;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 1px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

h2 {
  box-shadow: rgba(50,50,93,.25) 0 2px 5px -1px, rgba(0,0,0,.3) 0 1px 3px -1px;
  font-size: 24px;
  font-weight: bold;
  padding: 4px;
  line-height: 1.3em;
  text-align: center;
  border-left: 11px solid #3f3f3f;
  border-right: 11px solid #3f3f3f;
}

hr { border: 1px solid var(--border); margin: 15px 0; }

/* ==========================================
   7. CARDS & SECTIONS
   ========================================== */

/* Intro Card (dark gradient hero strip) */
.intro-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 70%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.75;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.4s ease both;
}

.intro-card::before {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4.5rem;
  opacity: 0.1;
  pointer-events: none;
}

.intro-card p { margin-bottom: 10px; }
.intro-card p:last-child { margin-bottom: 0; }
.intro-card strong { color: #fff; }
.intro-card a { color: var(--accent); font-weight: 700; text-decoration: none; }
.intro-card a:hover { text-decoration: underline; }

/* Section Card (white card with gradient header) */
.section-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
}

.section-header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.section-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header h2,
.section-header h3,
.section-icon-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

.section-body { padding: 20px; }
.section-icon { font-size: 1.1rem; }

/* ==========================================
   8. BADGES & PILLS
   ========================================== */
.date-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff3cd;
  border: 1px solid var(--gold);
  color: #7a5800;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 1.4s ease-in-out infinite;
}

.sunday-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  background: linear-gradient(90deg,#fff3cd,#ffe8a0);
  border: 1px solid var(--gold);
  color: #7a5800;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto 24px;
}

/* Number badges */
.num-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f9f6, #d0f4ee);
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-display);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 1rem;
  border: 1px solid rgba(63,213,186,0.35);
}

.num-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #e8f9f6, #d0f4ee);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  min-width: 42px;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(63,213,186,0.4);
}

.num-pill {
  display: inline-block;
  background: linear-gradient(135deg, #e8f9f6, #d0f4ee);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid rgba(63,213,186,0.35);
  white-space: nowrap;
}

.row-count-badge,
.row-badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ==========================================
   9. RESULT DISPLAY (Home & Sunday Teer)
   ========================================== */
.result-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  animation: fadeUp 0.5s ease both;
}

.result-card-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.result-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.result-rounds {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.round-block {
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}

.round-block:first-child { border-right: 1px solid var(--border); }
.round-block:hover { background: #f5fafa; }

.round-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.round-time {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.round-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,70,78,0.12);
  transition: transform var(--transition);
}

.round-block:hover .round-number { transform: scale(1.06); }

.round-number.pending {
  font-size: 1.8rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

/* Info Strip (3 tiles) */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
  animation-delay: 0.15s;
}

.info-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.info-tile-icon { font-size: 1.5rem; margin-bottom: 5px; }
.info-tile-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.info-tile-value { font-size: 0.9rem; font-weight: 700; color: var(--primary); }

/* ==========================================
   10. TABLES (Generic Shared Styles)
   ========================================== */
.results-table,
.cn-table,
.dream-table,
.prize-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.91rem;
}

.results-table thead tr,
.cn-table thead tr,
.dream-table thead tr,
.prize-table thead tr { background: var(--accent); }

.results-table thead th,
.cn-table thead th,
.dream-table thead th,
.prize-table thead th {
  color: #fff;
  font-weight: 700;
  padding: 11px 14px;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.results-table tbody tr,
.cn-table tbody tr,
.dream-table tbody tr,
.prize-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}

.results-table tbody tr:last-child,
.cn-table tbody tr:last-child,
.dream-table tbody tr:last-child,
.prize-table tbody tr:last-child { border-bottom: none; }

.results-table tbody tr:hover,
.cn-table tbody tr:hover,
.dream-table tbody tr:hover,
.prize-table tbody tr:hover { background: #f0faf9; }

.results-table tbody tr:nth-child(even),
.cn-table tbody tr:nth-child(even),
.dream-table tbody tr:nth-child(even),
.prize-table tbody tr:nth-child(even) { background: #f8fcfc; }

.results-table tbody tr:nth-child(even):hover,
.cn-table tbody tr:nth-child(even):hover,
.dream-table tbody tr:nth-child(even):hover,
.prize-table tbody tr:nth-child(even):hover { background: #e8f5f4; }

.results-table td,
.cn-table td,
.dream-table td,
.prize-table td {
  padding: 10px 14px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

/* Date column */
.results-table td:first-child {
  text-align: left;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

/* Table scroll wrapper */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll-fixed {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 600px;
  overflow-y: auto;
}

.table-scroll-fixed thead { position: sticky; top: 0; z-index: 2; }

/* Table Card wrapper */
.table-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}

.table-header {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.table-header h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Hidden row (search filter) */
.hidden-row { display: none; }

/* ==========================================
   11. PRIZE TABLE (Home page specific)
   ========================================== */
.prize-table td:first-child { color: var(--primary); font-weight: 700; }
.prize-table td:last-child { color: #1a7a42; font-weight: 700; }

.multiplier-badge {
  display: inline-block;
  background: #e8f5f0;
  color: #1a7a42;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  letter-spacing: 0.04em;
}

/* ==========================================
   12. CALCULATOR
   ========================================== */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.calc-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}

.calc-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  background: #f5fafa;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

.calc-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63,213,186,0.15);
  background: #fff;
}

.calc-btn {
  padding: 13px 24px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  width: auto;
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,70,78,0.3);
}

.calc-btn:active { transform: translateY(0); }

.calc-result {
  display: none;
  background: linear-gradient(135deg, #e8f9f6, #d0f4ee);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  animation: fadeUp 0.3s ease;
}

.calc-result.show { display: block; }
.calc-result-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.calc-result-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.calc-result-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.calc-error { display: none; color: #c0392b; font-size: 0.85rem; font-weight: 600; padding: 8px 0; }
.calc-error.show { display: block; }

/* Legacy .calc (home page) */
.calc {
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ==========================================
   13. LUCKY DRAW
   ========================================== */
.draw-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}

.draw-header {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.draw-header h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

.draw-body { padding: 36px 24px; text-align: center; }

.spinner-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 6px solid var(--border);
  border-top: 6px solid var(--accent);
  margin: 0 auto 28px;
  display: none;
  animation: spin 0.7s linear infinite;
}

.result-display {
  margin-bottom: 28px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.result-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0,70,78,0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-number.pop { transform: scale(1.15); }

.result-dash {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border);
  font-weight: 700;
  line-height: 1;
}

.range-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.range-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.range-select {
  padding: 8px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: #f5fafa;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  width: auto;
  transition: border-color 0.25s;
}

.range-select:focus { border-color: var(--accent); }

.draw-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,70,78,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  width: auto;
  margin-bottom: 8px;
}

.draw-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,70,78,0.4); }
.draw-btn:active { transform: translateY(0); }
.draw-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.draw-btn-icon { font-size: 1.2rem; }

.history-section { margin-top: 20px; }
.history-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.history-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.history-pill {
  background: #f0faf9;
  border: 1px solid rgba(63,213,186,0.4);
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* ==========================================
   14. SEARCH BOX
   ========================================== */
.search-wrap { margin-bottom: 20px; animation: fadeUp 0.45s ease both; animation-delay: 0.05s; }

.search-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 7px;
  display: block;
}

.search-row { display: flex; gap: 10px; }

.search-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  background: #f5fafa;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  width: auto;
  margin: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63,213,186,0.15);
  background: #fff;
}

.search-clear {
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, transform 0.2s;
  width: auto;
}

.search-clear:hover { background: var(--primary-dark); transform: translateY(-1px); }

.search-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; font-weight: 600; }

/* ==========================================
   15. PREVIOUS RESULTS — MONTH NAVIGATOR
   ========================================== */
.month-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.4s ease both;
}

.month-banner-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.month-banner-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

.result-count-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

.nav-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}

.nav-header {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-header h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 18px;
}

.month-link {
  text-decoration: none;
  background: #f5fafa;
  border: 1.5px solid var(--border);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}

.month-link:hover { background: #e8f5f4; border-color: var(--accent); transform: translateY(-2px); }
.month-link.current { background: var(--primary); color: #fff; border-color: var(--primary); }

.old-results-link {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  animation: fadeUp 0.5s ease both;
}

.old-results-link:hover { border-color: var(--accent); background: #f0faf9; transform: translateY(-2px); }

/* Archive Banner */
.archive-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.4s ease both;
}

.archive-icon { font-size: 2.2rem; }
.archive-text-title { font-family: var(--font-display); font-size: 1.05rem; color: #fff; font-weight: 700; }
.archive-text-sub { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s, background 0.25s;
}

.back-link:hover { border-color: var(--accent); background: #f0faf9; }

/* ==========================================
   16. COMMON NUMBERS PAGE
   ========================================== */
.target-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(0,70,78,0.2);
  animation: fadeUp 0.5s ease both;
}

.target-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.target-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 24px rgba(63,213,186,0.4);
  letter-spacing: 0.1em;
}

.target-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 8px; }

.json-heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 0.03em;
  padding: 12px 16px;
  background: linear-gradient(90deg, transparent, rgba(63,213,186,0.1), transparent);
  border-radius: var(--radius);
}

/* ==========================================
   17. DUMMY POST / CONTENT PAGE
   ========================================== */
.post-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 18px 50px;
}

.post-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-h3 {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}

/* Ecosystem Grid */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
  animation-delay: 0.05s;
}

.eco-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--accent);
}

.eco-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.eco-tile-icon { font-size: 1.6rem; margin-bottom: 8px; }
.eco-tile p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* How It Works */
.how-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
  animation-delay: 0.1s;
}

.how-header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

.how-body { padding: 6px 0; }

.step-item {
  display: flex;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  align-items: flex-start;
}

.step-item:last-child { border-bottom: none; }
.step-item:hover { background: #f5fafa; }

.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent), #2ebfa6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 2px;
}

.step-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.step-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ==========================================
   18. FAQ ACCORDION
   ========================================== */
.faq-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
  animation-delay: 0.15s;
}

.faq-header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

.faq-list { padding: 6px 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  gap: 12px;
  transition: background var(--transition), color var(--transition);
  user-select: none;
  -webkit-user-select: none;
}

.faq-question:hover { background: #f5fafa; color: var(--primary); }
.faq-question.open { color: var(--primary); background: #f0faf9; }

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  transition: transform var(--transition);
}

.faq-question.open .faq-chevron { transform: rotate(180deg); background: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.28s ease;
  padding: 0 22px;
}

.faq-answer.open { max-height: 200px; padding: 0 22px 16px; }

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  padding-top: 2px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

/* ==========================================
   19. FOOTER
   ========================================== */
.quick-links-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 18px 32px;
}

.quick-links-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-links-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-link-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,70,78,0.13);
  aspect-ratio: 16 / 9;
  display: block;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  background: var(--primary-dark);
}

.quick-link-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,70,78,0.22);
  border-color: var(--accent);
}

.quick-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition), transform 0.4s ease;
  opacity: 0.92;
}

.quick-link-card:hover img { opacity: 1; transform: scale(1.06); }

.quick-link-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,40,46,0.88) 0%, transparent 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 10px 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.quick-link-card:hover .quick-link-label { opacity: 1; transform: translateY(0); }

.footer-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  margin: 0;
  border: none;
}

.site-footer {
  background: linear-gradient(160deg, #001a1f 0%, #002d33 60%, #00464e 100%);
  color: rgba(255,255,255,0.8);
  padding: 36px 24px 24px;
}

.footer-inner { max-width: 820px; margin: 0 auto; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  margin-bottom: 24px;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.footer-nav a:hover { color: #fff; background: rgba(63,213,186,0.15); border-color: var(--accent); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-brand span { color: var(--accent); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }

.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.footer-disclaimer strong { color: rgba(255,255,255,0.75); }

/* ==========================================
   20. DISCLAIMER BOX
   ========================================== */
.disclaimer-box {
  background: #fffbea;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.83rem;
  color: #7a5800;
  line-height: 1.65;
  animation: fadeUp 0.5s ease both;
}

.disclaimer-box strong { color: #5a4000; font-weight: 700; }

/* Error Banner */
.error-banner {
  background: #fff3cd;
  border: 1px solid var(--gold);
  color: #7a5800;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.empty-state span { font-size: 2rem; display: block; margin-bottom: 8px; }

/* No results (search) */
.no-results {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.no-results span { font-size: 2rem; display: block; margin-bottom: 8px; }

/* ==========================================
   21. CLUB CHART
   ========================================== */
.chart-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
  animation-delay: 0.1s;
}

.chart-header {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-header h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

.chart-body { padding: 24px; text-align: center; }

.chart-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(0,70,78,0.15);
  border: 2px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.chart-img:hover { transform: scale(1.02); box-shadow: 0 12px 36px rgba(0,70,78,0.22); }

/* ==========================================
   22. LEGACY / UTILITY CLASSES
   ========================================== */
.custom-table {
  background-color: var(--card);
  border-radius: var(--radius-md);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 20px;
  margin: 20px 0;
}

table { border-collapse: collapse; width: 100%; margin-top: 20px; }
th, td { border: 1px solid #ddd; padding: 8px; text-align: center; }
th { background-color: var(--accent); color: #fff; }

.date {
  text-align: center;
  font-size: 25px;
  border: 1px solid #dedede;
  border-radius: 6px;
  padding: 7px;
}

.teer-result {
  background-color: var(--card);
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.result-column {
  width: 210px;
  height: 85px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  margin: 10px;
  display: inline-block;
}

.result-time { font-size: 1rem; color: #6c757d; }
.result-number-old { font-size: 2rem; font-weight: bold; color: #007bff; }

input { width: 69%; padding: 13px; margin-bottom: 10px; }
button { width: 30%; padding: 10px; background-color: #4caf50; color: #fff; border: none; border-radius: 4px; cursor: pointer; }
button:hover { background-color: #45a049; }

/* ==========================================
   23. ANIMATIONS
   ========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

/* ==========================================
   24. RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 900px) {
  .menu { gap: 2px; }
  .menu a { padding: 8px 10px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .menu { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 16px; }
  .logo { font-size: 1.2rem; }
  .logo-icon { width: 30px; height: 30px; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .info-strip { grid-template-columns: 1fr 1fr; }
  .info-strip .info-tile:last-child { grid-column: 1 / -1; }
  .result-rounds { grid-template-columns: 1fr 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-btn { width: 100%; }
  .search-row { flex-direction: column; }
  .search-clear { width: 100%; }
  .draw-btn { padding: 14px 28px; }
}

@media (max-width: 480px) {
  .logo { font-size: 1rem; }
  .container { padding: 14px; }
  .page-wrapper { padding: 18px 12px 40px; }
  .post-wrapper { padding: 0 12px 40px; }
  .intro-card { padding: 18px 16px; }
  .intro-card::before { display: none; }
  .round-block { padding: 22px 12px; }
  .footer-nav a { font-size: 0.78rem; padding: 5px 10px; }
  .dream-table { min-width: 460px; }
}

@media (max-width: 380px) {
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ecosystem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .result-rounds { grid-template-columns: 1fr; }
  .round-block:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}
