/* =========================================
   GLOBAL VARIABLES & RESET
========================================= */
:root {
  --bg: #ffffff;
  --ink: #111118;
  --ink-soft: #4a4a5a; 
  --coral: #d92525; 
  --coral-dark: #b31b1b;
  --gold: #e6b800; 
  --gold-dark: #ccaa00;
  --sky: #007a99; 
  --mint: #05a67b;
  --violet: #7b2fff;
  --panel: #f7f7fb;
  --border: #e8e8f0;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- ADA ACCESSIBILITY --- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
*:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
  background: var(--bg); 
  border-bottom: 2px solid var(--border); 
  padding: 15px 40px;
  display: flex; 
  flex-direction: column;
  align-items: center; 
  gap: 15px;
  position: relative; /* Removed 'sticky' so it scrolls away naturally */
  z-index: 100; 
}

.logo { font-family: 'Boogaloo', cursive; font-size: 38px; letter-spacing: -1px; line-height: 1; display: flex; align-items: center; text-decoration: none; color: var(--ink); }
.logo-flip { color: var(--coral); }
.logo-spin { color: var(--sky); }
.logo-n { color: var(--gold); font-size: 38px; margin: 0 4px; }
.logo-com {
  font-family: 'Nunito', sans-serif; font-size: 13px; color: white;
  background: linear-gradient(135deg, var(--coral), #ff4f4f); font-weight: 900;
  letter-spacing: 0.5px; padding: 3px 8px; border-radius: 10px; margin-left: 6px;
  align-self: center; box-shadow: 0 4px 10px rgba(217,37,37,0.3);
  transform: translateY(-8px) rotate(-4deg); border: 2px solid white; text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s;
}

.main-nav a:hover, .main-nav a:focus-visible {
  background: var(--panel);
  color: var(--sky);
}

/* Hamburger Button (Hidden on Desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--ink);
  border-radius: 3px;
  transition: 0.3s;
}

/* Mobile Layout adjustments */
@media (max-width: 768px) {
  header { 
    padding: 15px 20px; 
    flex-direction: row; /* Puts logo and hamburger side-by-side */
    justify-content: space-between;
  }
  
  .logo { font-size: 30px; }
  .logo-n { font-size: 30px; }
  
  .menu-toggle { display: flex; }
  
  .main-nav { 
    display: none; /* Hidden by default on mobile */
    flex-direction: column; 
    gap: 8px; 
    padding-top: 15px;
    border-top: 1px solid var(--border);
  }
  
  .main-nav.active { 
    display: flex; /* Shows when clicking hamburger */
    animation: slideDown 0.3s ease forwards;
  }
  
  .main-nav a { 
    font-size: 14px; 
    padding: 12px; 
    width: 100%; 
    background: var(--panel); 
    border: 1px solid var(--border);
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 768px) {
  header { padding: 15px 20px; }
  .main-nav { gap: 10px; }
  .main-nav a { font-size: 12px; padding: 4px 8px; }
  
  
  
}

/* =========================================
   HERO SECTION (Inside Main Layout)
========================================= */
.hero-strip {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  width:65%;
}
.hero-strip h1 { 
  font-family: 'Boogaloo', cursive; 
  font-size: clamp(32px, 4vw, 42px); 
  color: var(--ink);
  margin-bottom: 10px;
}
.hero-strip p { 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--ink-soft);
}

/* =========================================
    MAIN LAYOUT & PANELS (95% WIDTH)
========================================= */
.main-layout {
  display: grid; 
  grid-template-columns: 1fr 400px; 
  gap: 60px; 
  width: 95%; 
  max-width: 1800px; 
  margin: 0 auto; 
  padding: 40px 0; 
  align-items: start;
}

@media (max-width: 1024px) { 
  .main-layout { grid-template-columns: 1fr; gap: 50px; width: 95%; padding: 30px 0; } 
}


.tool-center { 
  display: flex; 
  flex-direction: column; 
  width: 100%; 
  align-items: center; 
}

/* =========================================
   SIDEBAR NAVIGATION
========================================= */
.sidebar { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  width: 100%; 
}
.panel { 
  background: var(--panel); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 24px; 
  box-shadow: var(--shadow); 
}
.panel:has(.sidebar-nav) { padding: 18px; }
.panel-title { font-family: 'Boogaloo', cursive; font-size: 24px; margin-bottom: 15px; color: var(--ink); }

.sidebar-nav { display: flex; flex-direction: column; gap: 6px; }
.nav-link { 
  display: block; 
  padding: 8px 16px; 
  background: #ffffff; 
  border: 2px solid var(--border); 
  border-radius: 12px; 
  text-decoration: none; 
  color: var(--ink); 
  font-weight: 800; 
  font-size: 14px; 
  transition: all 0.2s ease; 
  line-height: 1.3; 
}
.sidebar-nav .nav-link:nth-child(odd),
.sidebar-nav .nav-link:nth-child(even) { background-color: #ffffff; }

.nav-link:hover, .nav-link:focus-visible { 
  border-color: var(--sky); 
  color: var(--sky); 
  transform: translateX(5px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); 
  outline: none; 
}

/* =========================================
   ADVERTISEMENTS
========================================= */
.ad-container-center { display: flex; flex-direction: column; align-items: center; padding: 20px 0; background: #ffffff; border-bottom: 1px solid #ffffff; }
.footer-ad { background: #ffffff; border-top: 1px solid var #ffffff; display: flex; flex-direction: column; align-items: center; padding: 24px 20px; gap: 8px; }
.ad-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #777; border: 1px solid #ccc; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; margin-bottom: 6px; display: inline-block; }
.ad-slot { background: #ffffff; border: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #555; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-align: center; width: 100%; }
.ad-slot-leaderboard, .ad-slot-footer { max-width: 728px; height: 90px; }
.ad-slot-sidebar { height: 250px; }

/* =========================================
   INPUTS & FORMS
========================================= */
.input-panel, .name-input-panel { width: 100%; max-width: 650px; margin-bottom: 20px; }
.number-input-wrap { display: flex; align-items: center; gap: 16px; background: white; border: 2px solid #ccc; padding: 12px 20px; border-radius: 12px; transition: border-color 0.2s; }
.number-input-wrap:focus-within { border-color: var(--sky); }
.number-input-wrap label { font-size: 16px; font-weight: 800; color: var(--ink); flex: 1; }
.number-input { width: 90px; padding: 10px; border: 2px solid var(--border); border-radius: 8px; font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; color: var(--coral); text-align: center; outline: none; transition: border-color 0.2s; }
.number-input:focus { border-color: var(--coral); }
.name-textarea { width: 100%; height: 180px; padding: 16px; border: 2px solid #ccc; border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); background: white; outline: none; resize: vertical; transition: border-color 0.2s; line-height: 1.6; }
.name-textarea:focus { border-color: var(--sky); }
.name-textarea::placeholder { color: #777; font-weight: 600; }
.name-count { font-size: 14px; font-weight: 800; color: var(--ink-soft); text-align: right; margin-top: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

/* =========================================
   BUTTONS
========================================= */
.btn-action, .btn-spin { background: linear-gradient(to bottom, #ff5e5e, var(--coral)); color: white; border: none; border-radius: 50px; padding: 20px 80px; font-family: 'Boogaloo', cursive; font-size: 42px; letter-spacing: 3px; cursor: pointer; box-shadow: 0 10px 0 #9e1515, 0 15px 25px rgba(217,37,37,0.4), inset 0 4px 10px rgba(255,255,255,0.4); transition: all 0.15s ease; position: relative; overflow: hidden; width: 100%; max-width: 450px; text-transform: uppercase; text-shadow: 0 3px 6px rgba(0,0,0,0.3); }
.btn-action::before, .btn-spin::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: left 0.6s ease; }
.btn-action:hover::before, .btn-spin:hover::before { left: 200%; }
.btn-action:hover, .btn-spin:hover { transform: translateY(-2px); background: linear-gradient(to bottom, #ff7272, #e82a2a); box-shadow: 0 12px 0 #9e1515, 0 20px 30px rgba(217,37,37,0.5), inset 0 4px 10px rgba(255,255,255,0.5); }
.btn-action:active, .btn-spin:active { transform: translateY(10px); box-shadow: 0 0 0 #9e1515, 0 5px 10px rgba(217,37,37,0.4), inset 0 4px 10px rgba(255,255,255,0.4); }
.btn-action:disabled, .btn-spin:disabled { opacity: 0.75; cursor: not-allowed; transform: translateY(10px); box-shadow: 0 0 0 #9e1515; background: linear-gradient(to bottom, #e82a2a, #b31b1b); }

.btn-clear-all { width: 100%; padding: 14px; background: none; border: 2px solid var(--border); border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; color: var(--ink-soft); cursor: pointer; text-transform: uppercase; letter-spacing: 1px; margin-top: 16px; transition: border-color 0.15s, color 0.15s, background-color 0.15s; }
.btn-clear-all:hover, .btn-clear-all:focus-visible { border-color: var(--coral); color: var(--coral); background: white; }
.action-hint, .spin-hint { font-size: 15px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; margin: 15px; text-align: center; }

/* EMBED BUTTON */
.btn-embed-trigger { background: linear-gradient(to bottom, #0098be, var(--sky)); color: white !important; border: none; border-radius: 16px; padding: 12px 24px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; cursor: pointer; transition: all 0.15s ease; display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: 40px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 6px 0 #004d61; width: 100%; max-width: 500px;}
.btn-embed-trigger:hover, .btn-embed-trigger:focus-visible { transform: translateY(-2px); background: linear-gradient(to bottom, #00b4e0, #008eb3); box-shadow: 0 8px 0 #004d61, 0 12px 20px rgba(0,122,153,0.4), inset 0 2px 5px rgba(255,255,255,0.5); }
.btn-embed-trigger:active { transform: translateY(6px); box-shadow: 0 0 0 #004d61, 0 4px 8px rgba(0,122,153,0.3), inset 0 2px 5px rgba(255,255,255,0.4); }

@media (max-width: 600px) { 
  .btn-action, .btn-spin { padding: 16px 40px; font-size: 32px; box-shadow: 0 8px 0 #9e1515, 0 10px 20px rgba(217,37,37,0.4), inset 0 4px 10px rgba(255,255,255,0.4); }
  .btn-action:hover, .btn-spin:hover { box-shadow: 0 10px 0 #9e1515, 0 15px 25px rgba(217,37,37,0.5), inset 0 4px 10px rgba(255,255,255,0.5); }
  .btn-action:active, .btn-spin:active, .btn-action:disabled, .btn-spin:disabled { transform: translateY(8px); box-shadow: 0 0 0 #9e1515; }
}

/* =========================================
   RESULTS LIST
========================================= */
.result-list { list-style: none; display: flex; flex-direction: column; gap: 8px; max-height: 250px; overflow-y: auto; padding-right: 5px;}
.result-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 800; padding: 12px 14px; background: white; border-radius: 8px; border: 1px solid var(--border); animation: slideIn 0.25s ease; color: var(--ink); }
.result-time { font-size: 12px; color: #777; font-weight: 600; margin-left: auto; }
.no-results { font-size: 14px; color: #777; text-align: center; padding: 20px 0; font-weight: 700; }
@keyframes slideIn { from { opacity:0; transform: translateX(-12px); } to { opacity:1; transform: translateX(0); } }

/* =========================================
   TOOL SPECIFIC: WHEEL
========================================= */
.wheel-wrap { position: relative; width: 100%; max-width: 650px; aspect-ratio: 1; filter: drop-shadow(0 24px 60px rgba(0,0,0,0.18)); border-radius: 50%; }
.wheel-pointer { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 28px solid transparent; border-right: 28px solid transparent; border-top: 56px solid var(--coral); filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25)); z-index: 10; }
.wheel-pointer::after { content: ''; position: absolute; top: -65px; left: -15px; width: 30px; height: 18px; background: var(--coral); border-radius: 4px 4px 0 0; }
canvas#wheel { border-radius: 50%; display: block; width: 100%; height: 100%; }
.wheel-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; background: white; border-radius: 50%; border: 8px solid #eee; box-shadow: 0 6px 20px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; font-size: 32px; z-index: 5; cursor: pointer; transition: transform 0.2s; }
.wheel-hub:hover, .wheel-hub:focus-visible { transform: translate(-50%, -50%) scale(1.1); outline: 3px solid var(--sky); }
@media (max-width: 600px) {
  .wheel-pointer { border-left: 18px solid transparent; border-right: 18px solid transparent; border-top: 36px solid var(--coral); top: -20px; }
  .wheel-pointer::after { top: -42px; left: -10px; width: 20px; height: 12px; }
  .wheel-hub { width: 70px; height: 70px; font-size: 24px; border-width: 5px; }
}

/* =========================================
   TOOL SPECIFIC: COIN FLIP
========================================= */
.coins-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; width: 100%; max-width: 800px; margin: 20px auto; min-height: 150px; }
.coin-3d-wrap { perspective: 1000px; width: 140px; height: 140px; }
.coins-container.many .coin-3d-wrap { width: 90px; height: 90px; gap: 10px; }
.coins-container.lots .coin-3d-wrap { width: 60px; height: 60px; gap: 6px; }
.coin { width: 100%; height: 100%; transform-style: preserve-3d; border-radius: 50%; box-shadow: 0 12px 24px rgba(0,0,0,0.25); cursor: pointer; position: relative; }
.coin-face { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; color: white; font-family: 'Boogaloo', cursive; border: 6px solid rgba(255,255,255,0.9); box-shadow: inset 0 0 16px rgba(0,0,0,0.2); text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.coins-container:not(.many):not(.lots) .coin-face { font-size: 64px; border-width: 8px; }
.coins-container.many .coin-face { font-size: 40px; border-width: 5px; }
.coins-container.lots .coin-face { font-size: 26px; border-width: 3px; }
.coin-blank { background: linear-gradient(135deg, #b0b0c0, #888899); }
.coin-heads { background: linear-gradient(135deg, var(--gold), #d49b4b); }
.coin-tails { background: linear-gradient(135deg, var(--sky), #0e7294); transform: rotateY(180deg); }

/* =========================================
   MODALS & POPUPS
========================================= */
.modal-overlay, .confirm-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10, 10, 20, 0.85); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.modal-overlay.active, .confirm-modal-overlay.active { display: flex; padding: 20px; }
.modal-box, .confirm-box { background: white; border-radius: 28px; padding: 50px 44px 40px; text-align: center; max-width: 460px; width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,0.4); animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes popIn { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-emoji, .confirm-icon { font-size: 72px; line-height: 1; margin-bottom: 16px; display: block; animation: spin360 0.6s ease; }
@keyframes spin360 { from { transform: rotate(-180deg) scale(0); } to { transform: rotate(0) scale(1); } }

.modal-result-label, .modal-winner-label { font-family: 'Boogaloo', cursive; font-size: 22px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.modal-result-name, .modal-winner-name { font-family: 'Boogaloo', cursive; font-size: 56px; color: var(--coral); line-height: 1.1; word-break: break-word; text-shadow: 0 4px 15px rgba(255,79,79,0.25); }
.modal-ribbon { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--ink); font-size: 15px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; padding: 8px 22px; border-radius: 30px; margin: 20px 0 32px; }

.modal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-modal-action, .btn-spin-again { background: linear-gradient(135deg, var(--coral), #e05e26); color: white; border: none; border-radius: 14px; padding: 16px 32px; font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900; cursor: pointer; transition: transform 0.15s; text-transform: uppercase; letter-spacing: 0.5px; flex: 1; min-width: 140px; }
.btn-modal-action:hover, .btn-spin-again:hover, .btn-modal-action:focus-visible, .btn-spin-again:focus-visible { transform: scale(1.04); }

.btn-remove-winner, .btn-cancel { background: var(--panel); color: var(--ink); border: 2px solid var(--border); border-radius: 14px; padding: 16px 24px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800; cursor: pointer; transition: all 0.15s; text-transform: uppercase; letter-spacing: 0.5px; flex: 1; min-width: 140px; }
.btn-remove-winner:hover, .btn-cancel:hover, .btn-remove-winner:focus-visible, .btn-cancel:focus-visible { border-color: #ccc; background: #e8e8f0; }
.btn-confirm { background: linear-gradient(135deg, var(--coral), #e05e26); color: white; border: none; border-radius: 14px; padding: 14px 24px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; cursor: pointer; transition: transform 0.15s; text-transform: uppercase; letter-spacing: 0.5px; flex: 1; }
.btn-confirm:hover, .btn-confirm:focus-visible { transform: scale(1.04); }

.confirm-title { font-family: 'Boogaloo', cursive; font-size: 32px; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.confirm-text { font-size: 16px; font-weight: 700; color: var(--ink-soft); margin-bottom: 28px; }

/* =========================================
   EMBED MODE & WIDGET SETTINGS
========================================= */
body.embed-mode header,
body.embed-mode .hero-strip,
body.embed-mode .ad-container-center,
body.embed-mode .sidebar,
body.embed-mode .footer-ad,
body.embed-mode footer,
body.embed-mode .cookie-banner,
body.embed-mode .btn-embed-trigger { display: none !important; }

body.embed-mode .main-layout { grid-template-columns: 1fr; padding: 20px 10px; gap: 20px; background: transparent; }

.embed-only-ad { display: none; width: 100%; text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }
body.embed-mode .embed-only-ad { display: block; }
.embed-code-box { width: 100%; height: 100px; padding: 12px; border: 2px solid var(--border); border-radius: 12px; font-family: monospace; font-size: 13px; color: var(--ink-soft); background: var(--panel); resize: none; margin-bottom: 20px; outline: none; }
.embed-code-box:focus { border-color: var(--sky); }

/* =========================================
   MISC (Confetti, Footer, Cookies)
========================================= */
#confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 99998; }
footer { background: var(--ink); color: rgba(255,255,255,0.7); text-align: center; padding: 28px 20px; font-size: 14px; font-weight: 700; }
footer strong { color: white; font-weight: 900; }

.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 400px; background: white; border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-lg); z-index: 100000; display: none; flex-direction: column; gap: 12px; animation: slideUp 0.4s ease forwards; }
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-text { font-size: 14px; font-weight: 600; color: var(--ink-soft); line-height: 1.5; }
.cookie-btn { background: var(--sky); color: white; border: none; border-radius: 8px; padding: 10px; font-family: 'Nunito', sans-serif; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; }
.cookie-btn:hover, .cookie-btn:focus-visible { background: #00607a; }

/* --- GLOBAL SOCIAL SHARE BUTTONS (TEAL THEME) --- */
.share-container { margin: 40px 0; text-align: center; border-top: 1px solid var(--border); padding-top: 30px; }
.share-label { font-weight: 800; text-transform: uppercase; font-size: 14px; color: #888; display: block; margin-bottom: 15px; letter-spacing: 1px; }
.share-group { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-share { background: #ffffff; border: 2px solid var(--sky); color: var(--sky); padding: 10px 20px; border-radius: 50px; font-weight: 800; font-size: 14px; text-decoration: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 2px 0 #004d61; display: flex; align-items: center; gap: 8px; }


/* SEO Content Box */
.seo-description-box {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 20px;
    padding: 35px 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    color: #475569;
    line-height: 1.7;
    text-align: left;
}
.seo-description-box h2 {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}
.seo-description-box p {
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
}
.seo-description-box p:last-child {
    margin-bottom: 0;
}
.seo-description-box a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.2s ease;
}
.seo-description-box a:hover {
    color: #1e293b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-description-box {
        padding: 25px;
    }
    .seo-description-box h2 {
        font-size: 28px;
    }
}


@media (max-width: 768px) {
  /* Expands the main calculator container */
  .tool-center {
    width: 95% !important; 
  }

  /* Expands the hero banner and tightens the padding */
  .hero-strip {
    width: 100% !important; 
    padding: 10px 3px !important; 
	
  }
}
