/* ===========================================================
   Base / Reset
   (Keep global primitives minimal and consistent)
   =========================================================== */

/* ======= base + reset (minimal) ======= */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html, body, h1, p, ul, li { margin: 0; padding: 0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }


/* ===========================================================
   Theme Tokens (CSS variables)
   (Centralize color, spacing, radius for future theming)
   =========================================================== */

/* ======= theme vars ======= */
:root{
  --primary:#3182ed;
  --text:#333;
  --muted:#6b7280;
  --link:#536397;
  --border:#e5e7eb;
  --accent-bg:#0EA2E7;
  --btn-blue:#3B82F6;
  --btn-purple:#9333EA;
  --btn-blue-hover:#2563eb;
  --btn-purple-hover:#7c3aed;
  --radius:12px;

  --wrap-max: 1400px;  /* central cap for both header/body wrappers */
  --wrap-pad: 24px;    /* side padding inside wrappers */
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:#f7f7f7;
  color:var(--text);
  min-width: 720px;
}


/* ===========================================================
   Header + Global Navigation
   (Fixed header shell, logo cluster, desktop + mobile nav)
   =========================================================== */

/* ======= header (full-width shell) ======= */
header{
  width:100%;
  background:#fff;
  border-bottom:1px solid var(--border);
  position: fixed;
  z-index: 5;
}

/* centered inner wrapper, cap at 1400px */
#header_wrapper{
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
  min-height:84px; /* keep as-is to avoid visual changes */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

#header_left{ display:flex; align-items:center; min-width:0; }
#header_right{ display:flex; align-items:center; }
#mobile_nav{ display:none; }

/* ======= logo cluster ======= */
.logo-container { display:flex; align-items:center; }
.logo-link { display:flex; align-items:center; gap:.75rem; color:inherit; transition:opacity .2s ease; }
.logo-link:hover { opacity:.9; }

.logo-icon{
  display:flex; align-items:center; justify-content:center;
  padding:10px; background:var(--primary); border-radius:var(--radius);
}
.map-icon{ width:22px; height:22px; color:#fff; }

.logo-text{ display:flex; flex-direction:column; min-width:0; }
.brand-title{
  font-size:1.25rem; font-weight:800;
  background:var(--primary);
  background-clip: text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.brand-tagline{ font-size:.85rem; color:var(--muted); }

/* Mobile visibility rules (nav swap) */
@media (max-width: 900px){
  /* .brand-tagline{ display:none; } */
  #main_nav{ display:none; }
  #mobile_nav{ display:flex; }
  #hamburger-btn{ font-size: x-large; }
}

/* ======= nav ======= */
nav { display:flex; }

nav ul{
  display:flex; align-items:center; gap:1.2rem;
  flex-wrap:wrap; margin-left:auto;
}
/*
@media (max-width: 560px){
  nav{ overflow-x:auto; }
  nav ul{ flex-wrap:nowrap; gap:.9rem; }
}
*/
nav ul li a{
  color: var(--link);
  font-size:1rem;
  font-weight:500;
  padding:4px 0;
  transition: color .2s ease;
  white-space:nowrap;
}
nav ul li a:hover{ color:#000; }

#mobile_nav ul { gap: 2rem; }

/*
#mobile_nav ul li i{
  font-size:1.3rem;
  font-weight:500;
  padding:4px 0;
  transition: color .2s ease;
  white-space:nowrap;
  cursor: pointer;
}
*/

/* Make mobile <i> icons behave like desktop .icon-link buttons */
#mobile_nav ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;                 /* same as .icon-link */
  height: 36px;                /* same as .icon-link */
  border-radius: 10px;         /* same as .icon-link */
  color: #111;
  font-size: 1.25rem;          /* match .icon-link i */
  line-height: 1;
  cursor: pointer;
  padding: 0;                  /* gap controls spacing */
  transition: background-color 0.2s ease, color 0.2s ease;
}
#mobile_nav ul li i:hover {
  background: var(--accent-bg); /* same hover bg as .icon-link:hover */
  color: #fff;                  /* same hover fg as .icon-link:hover */
}

/* Desktop icon-link button */
.icon-link{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:10px;
  color:#111; transition: background-color .2s ease, color .2s ease;
}
.icon-link:hover{ background:var(--accent-bg); color:#fff; }
.icon-link i{ font-size:1.25rem; line-height:1; }

nav ul li:nth-last-child(2){ margin-right:-6px; }

/* signup as anchor */
.signup-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px; min-width:105px; padding:.5rem 1.2rem;
  font-size:.95rem; font-weight:700; color:#fff;
  background:linear-gradient(to right, var(--btn-blue), var(--btn-purple));
  border-radius:12px;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  transition: box-shadow .2s ease, transform .02s ease, background .2s ease;
}
.signup-btn:hover{
  background:linear-gradient(to right, var(--btn-blue-hover), var(--btn-purple-hover));
  box-shadow:0 6px 12px rgba(0,0,0,.2);
  color: #fff;
}
.signup-btn:active{ transform: translateY(1px); }

/* input selector as anchor */
.input-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px; min-width:200px; padding:.5rem 1.2rem;
  border-bottom: solid 2px;
  font-size:.95rem; font-weight:700; color:#000;
  transition: box-shadow .2s ease, transform .02s ease, background-color .2s ease;
}
.input-btn:hover{ color:#000; }
.input-btn:active{ transform: translateY(1px); }

/* Go button (disabled look by default; JS toggles opacity) */
.go-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px; min-width:200px; padding:.5rem 1.2rem;
  font-size:.95rem; font-weight:700; color:#fff;
  background: linear-gradient(to right, #3182ed, #0da2e7);
  opacity: 0.5;
  border-radius:12px;
  border: none;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  transition: box-shadow .2s ease, transform .02s ease, background-color .2s ease;
}
.go-btn:active{ transform: translateY(1px); }

/* input button icon */
#input_buttons ul li i {
  margin-right: 8px;
  font-size: 1.1rem;
}


/* ===========================================================
   Hero / Body Layout
   (Hero gradient, wrapper, headings, subtitle)
   =========================================================== */

/* ======= BODY / HERO ======= */
/* Full-width section with dark background so white text reads well */
.hero{
  background-image: linear-gradient(to left, rgb(0, 210, 255), rgb(58, 123, 213));
  padding-block: 64px 80px; /* top/bottom spacing */
  color: #fff;
  min-height: 100vh;
}

/* Body wrapper uses SAME rules as header_wrapper */
#body_wrapper{
  max-width: var(--wrap-max);     /* never wider than 1400px */
  margin-inline: auto;            /* centered */
  padding-inline: var(--wrap-pad);/* same side padding */
  text-align: center;             /* center hero text */
  margin-top: 100px;
}

/* ======= H1 mapping from Tailwind utilities =======
   text-4xl (base) -> 2.25rem
   sm:text-5xl -> 3rem
   md:text-6xl -> 3.75rem
   lg:text-7xl -> 4.5rem
   font-extrabold -> 800
   mb-8 base -> 2rem ; sm:mb-10 -> 2.5rem
   leading-none -> line-height:1
   text-white -> #fff (handled by .hero)
   drop-shadow-lg -> a stronger drop shadow
*/
.hero-title{
  font-weight: 800;
  font-size: 2.25rem;            /* 4xl */
  line-height: 1;                /* leading-none */
  margin-bottom: 2rem;           /* mb-8 */
  color: #ffffff;
  filter: drop-shadow(0 10px 8px rgba(0,0,0,0.25)) drop-shadow(0 4px 3px rgba(0,0,0,0.15));
}
@media (min-width: 640px){       /* sm */
  .hero-title{
    font-size: 3rem;             /* 5xl */
    margin-bottom: 2.5rem;       /* sm:mb-10 */
  }
}
@media (min-width: 768px){       /* md */
  .hero-title{ font-size: 3.75rem; } /* 6xl */
}
@media (min-width: 900px){       /* lg */
  .hero-title{ font-size: 4.5rem; }  /* 7xl */
}

/* ======= P mapping from Tailwind utilities =======
   text-xl -> 1.25rem (base)
   sm:text-2xl -> 1.5rem
   md:text-3xl -> 1.875rem
   text-white/95 -> rgba(255,255,255,0.95)
   max-w-4xl -> 56rem
   mx-auto -> centered (we keep text-align center on wrapper; still set margin auto)
   mb-10 base -> 2.5rem ; sm:mb-12 -> 3rem
   px-6 -> 1.5rem horizontal padding
   font-medium -> 500
   leading-relaxed -> ~1.625
   drop-shadow-md -> mid shadow
*/
.hero-subtitle{
  font-weight: 500;
  font-size: 1.25rem;                    /* xl */
  line-height: 1.625;                    /* relaxed */
  color: rgba(255,255,255,0.95);
  max-width: 56rem;
  margin: 0 auto 2.5rem;                 /* mx-auto + mb-10 */
  padding-inline: 1.5rem;                /* px-6 for small screens */
  filter: drop-shadow(0 6px 4px rgba(0,0,0,0.2)) drop-shadow(0 2px 2px rgba(0,0,0,0.15));
}
@media (min-width: 640px){               /* sm */
  .hero-subtitle{ 
    font-size: 1.5rem;                   /* 2xl */
    margin-bottom: 3rem;                 /* sm:mb-12 */
  }
}
@media (min-width: 768px){               /* md */
  .hero-subtitle{ font-size: 1.875rem; } /* 3xl */
}

/* small spacing tune-ups across breakpoints */
@media (max-width: 560px){
  #header_wrapper{ padding-inline:16px; }
  #body_wrapper{ padding-inline:16px; }
}


/* ===========================================================
   Input Box + Tabs (Manual / Upload)
   (Container, tabs, textarea, upload, small utilities)
   =========================================================== */

#input_box {
  background-color: #fff;
  color: #000;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 12px;
}

#input_buttons { margin-bottom: 15px; }
#input_buttons ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

#file_upload_icon_big { font-size: 3rem; }

#input_slug { text-align: left; }

.input-title {
  font-size: x-large;
  margin: 6px 0 0 0;
  font-weight: 600;
}
.input-title i {
  font-size: 1.4rem;
  color: var(--primary);
  padding: 5px;
}

.input-instruction {
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
  margin-left: 8px;
  color: var(--muted);
}

#user_input {
  width: 100%;
  max-width: 100%;          /* Prevent horizontal overflow */
  min-height: 120px;        /* Default height */
  padding: 0.75rem 1rem;    /* Inner spacing */
  font-size: 1rem;          /* 16px text size */
  line-height: 1.5;         /* Comfortable line spacing */
  font-family: inherit;     /* Use same font as rest of page */
  color: #333;              /* Text color */
  background-color: #fff;   /* Background */
  border: 1px solid #ccc;   /* Light gray border */
  border-radius: 8px;       /* Rounded corners */
  resize: none;             /* Allow vertical resize only */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus state */
#user_input:focus {
  outline: none;
  border-color: #2b63d9; /* Primary color on focus */
  box-shadow: 0 0 0 3px rgba(43, 99, 217, 0.2);
}

#input_entry_counter {
  text-align: left;
  font-size: 0.875rem;
}

#input_entry_counter p {
  padding-top: 8px;
}

/* ----- Tabs (prepared for component split) ----- */

/* Tabs */
.tab-btn {
  background: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 500;
  transition: border 0.1s; /* conservative to avoid visual changes */
}
.tab-btn.active {
  background: #fff;
  color: #000;
  border: 0;
  border-bottom: solid 2px;
  font-weight: 700;
}

/* Tab content visibility */
.tab-content { display: none; margin-top: 1rem; }
.tab-content.active { display: block; }

/* File Upload Area */
.file-upload-area {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
.file-upload-area:hover {
  border-color: #007bff;
  background: #f1f8ff;
}

.upload-icon {
  display: block;
  margin: 0 auto 1rem;
  color: #6c757d;
}

.file-types {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 1rem 0;
}
.file-types span {
  background: #eee;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
}

.choose-files-btn {
  border: 1px solid #ccc;
  background: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.4s ease;
}
.choose-files-btn:hover { background: #f5f5f5; }

.max-size {
  margin-top: 0.5rem;
  font-size: 12px;
  color: #666;
}


/* ===========================================================
   Mobile Nav Tray (Slide Animation)
   (Smooth open/close with max-height + opacity)
   =========================================================== */

/* Mobile tray: smooth slide using max-height + opacity (no display:none) */
#mobile_nav_tray {
  margin: 0 24px;
  padding: 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid #ddd;
  background: #fff;

  /* Animation */
  max-height: 0;      /* collapsed height */
  opacity: 0;         /* faded when closed */
  overflow: hidden;   /* hide contents while collapsing */
  transition:
    max-height 0.32s ease,
    opacity 0.2s ease;
  will-change: max-height, opacity;
}
#mobile_nav_tray.open {
  max-height: 500px;  /* large enough to reveal menu */
  opacity: 1;         /* visible when open */
}

#mobile_nav_items { display: table-caption; margin-top: 12px; }
#mobile_nav_items ul { margin-top: 12px; }

#mobile_nav_buttons {
  display: grid;
  margin: 24px 0 12px 0;
  border-top: solid 1px var(--border);
  padding-top: 12px;
}
#mobile_nav_buttons button {
  color: #000;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;                 /* space between icon/text if any */
  white-space: nowrap;
  font-size: 0.975rem;         /* text-sm */
  font-weight: 500;            /* font-medium */
  padding: 0 2rem;             /* px-8 */
  height: 44px;                /* h-11 */
  width: 100%;                 /* w-full */
  border-radius: 12px;         /* rounded-md */
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(43, 99, 217, 0.2); /* border-primary/20 */
  background: linear-gradient(to right, #ebf2ff, #f4eaff); /* from-blue-50 to-purple-50 */
  transition: all 0.3s ease;
  cursor: pointer;
}
#mobile_nav_buttons #mobile_signup_button {
  color: #fff;
  background:linear-gradient(to right, var(--btn-blue-hover), #ec4899);
  font-weight: 1000;
  border: none;
  margin-bottom: 8px;
}

/* Gradient-only text utility */
.gradient-text {
  position: relative;
  font-weight: 600; /* font-semibold */
  font-size: 1rem;  /* text-base */
  background: linear-gradient(to right, #2563eb, #9333ea); /* from-blue-600 to-purple-600 */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s ease;
}
/* Hover effect */
.gradient-text:hover {
  background: linear-gradient(to right, #1d4ed8, #7e22ce); /* from-blue-700 to-purple-700 */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ===========================================================
   Footer
   (Grid layout, brand, columns, bottom bar)
   =========================================================== */

.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
  font-family: Arial, sans-serif;
  color: #444;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.footer-brand .brand-icon {
  background: var(--primary);
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand .brand-icon svg { color: #fff; }

.brand-name {
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(to right, #2b63d9, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tagline { font-size: 0.75rem; color: #666; }

.footer-description {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  transition: background 0.3s, color 0.3s;
}
.social-links a:hover { background: #2b63d9; color: #fff; }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: #000; }

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666;
}
.footer-bottom .footer-links { display: flex; gap: 1.5rem; }
.footer-bottom .footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom .footer-links a:hover { color: #000; }

/* Responsive */
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; }
}


/* ===========================================================
   Under Construction Modal
   (Overlay, modal, header, body, chips, note, CTA)
   =========================================================== */

/* ===== Under Construction Modal ===== */
/* Overlay dims the page */
.uc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 28, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out;
  z-index: 9998;
}

/* Modal container */
.uc-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 560px;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 20px 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.08);
  transition:
    opacity 180ms ease-out,
    transform 180ms ease-out;
  z-index: 9999;
}

/* Open state (JS toggles aria-hidden and these classes) */
.uc-overlay.is-open { opacity: 1; pointer-events: auto; }
.uc-modal.is-open { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }

/* Header row */
.uc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 36px; /* leave room for close button */
  margin-bottom: 24px;
}
.uc-header h2 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Close button */
.uc-close-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}
.uc-close-btn:hover { background: #f1f5f9; color: #0f172a; }
.uc-close-btn:focus-visible { outline: 2px solid #2563eb; outline-offset: 2px; }

/* Body */
.uc-body { text-align: center; }

.uc-lead {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 6px 0 10px;
  letter-spacing: -0.01em;
}
.uc-copy { color: #475569; line-height: 1.55; margin: 0 0 16px; }

/* Chips */
.uc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 16px;
}
.uc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #334155;
  border: 1px solid #e2e8f0;
}

/* Note box */
.uc-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 12px 14px;
}
.uc-note-title { margin: 0 0 4px; color: #1e40af; font-weight: 700; }
.uc-note-copy { margin: 0; color: #1d4ed8; font-size: 12.5px; }

/* CTA button */
.uc-cta {
  margin-top: 18px;
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #3B82F6, #9333EA);
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  transition: filter 140ms ease, transform 40ms ease, box-shadow 140ms ease;
}
.uc-cta:hover { filter: brightness(1.03); box-shadow: 0 8px 16px rgba(0,0,0,.16); }
.uc-cta:active { transform: translateY(1px); }
.uc-cta:focus-visible { outline: 2px solid #2563eb; outline-offset: 2px; }

/* Small screens */
@media (max-width: 420px) {
  .uc-modal { padding: 18px 14px 20px; }
}

/* Optional dark-scheme refinement */
@media (prefers-color-scheme: dark) {
  .uc-modal {
    background: #0b1221;
    color: #e5edff;
    border-color: #1f2a44;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.5),
      0 8px 20px rgba(0, 0, 0, 0.3);
  }
  .uc-close-btn { color: #c7d2fe; }
  .uc-close-btn:hover { background: rgba(255,255,255,0.06); color: #fff; }
  .uc-copy { color: #c7d2fe; }
  .uc-chip { background: rgba(99,102,241,0.15); color: #e5edff; border-color: rgba(148,163,184,0.35); }
  .uc-note { background: rgba(30,64,175,0.25); border-color: rgba(30,64,175,0.55); }
  .uc-note-title { color: #bfdbfe; }
  .uc-note-copy { color: #bfdbfe; }
}

/* ========== Under Construction Graphic ========== */
.uc-graphic {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  margin: 10px 0 18px;       /* space around the graphic block */
}
.uc-graphic-wrap { position: relative; display: inline-block; }

/* Main circle behind the hammer */
.uc-graphic-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;             /* matches your p-6 spacing */
  border-radius: 9999px;     /* fully rounded */
  background: #fff7ed;       /* light orange-50 analog */
  /* If you already have dark-scheme modal colors, this blends well */
}

/* Hammer icon color */
.uc-graphic-hammer { color: #f97316; } /* orange-500 analog */

/* Small badge in the top-right corner */
.uc-graphic-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 8px;              /* p-2 */
  border-radius: 9999px;
  background: #fef3c7;       /* yellow-100 analog */
}
.uc-graphic-badge-icon { color: #ca8a04; } /* yellow-600 analog */

/* Tweak sizes on very small screens */
@media (max-width: 380px) {
  .uc-graphic-main { padding: 18px; }
  .uc-graphic-hammer { width: 52px; height: 52px; }
  .uc-graphic-badge { top: -6px; right: -6px; padding: 6px; }
  .uc-graphic-badge-icon { width: 18px; height: 18px; }
}

/* Optional: dark mode harmonization (if you use prefers-color-scheme) */
@media (prefers-color-scheme: dark) {
  .uc-graphic-main { background: rgba(234, 88, 12, 0.15); } /* orange-900/20-ish */
  .uc-graphic-badge { background: rgba(234, 179, 8, 0.25); }/* yellow-900/30-ish */
}
