@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700;900&display=swap');

:root {
  --c: #42afd7;
  --m: #e5006d;
  --y: #f5e642;
  --k: #111314;
  --bg: #111314;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.15);
  --font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
html { scroll-behavior: smooth; font-family: var(--font); background-color: var(--bg); color: var(--text); overflow-x: hidden; }
body { overflow-x: hidden; }

/* Custom Cursor */
.cursor { position: fixed; top: 0; left: 0; width: 6px; height: 6px; background: var(--c); border-radius: 50%; pointer-events: none; z-index: 99999; transition: transform 0.1s ease; }
.cursor-follower { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; pointer-events: none; z-index: 99998; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), width 0.3s, height 0.3s, background 0.3s, border-color 0.3s; }

/* Noise */
.noise { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9990; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* Utilities */
.cyan-text { color: var(--c); }
.outline-text { color: transparent; -webkit-text-stroke: 1px var(--text); }

/* Fade-in system */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.fade-in.in-view { opacity: 1; transform: translateY(0); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; z-index: 9000; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; animation: pulse-whatsapp 2s infinite; }
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes pulse-whatsapp { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }

/* Video Modal */
.video-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.video-modal.active { opacity: 1; pointer-events: all; }
.video-modal-content { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16/9; }
.video-modal-content iframe { width: 100%; height: 100%; border-radius: 8px; }
.video-modal-close { position: absolute; top: -3rem; right: 0; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; transition: color 0.3s; z-index: 10; }
.video-modal-close:hover { color: var(--c); }

/* Header */
header { position: fixed; top: 0; width: 100%; z-index: 100; padding: 0 2vw; margin-top: 2vh; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; border-bottom: 1px solid transparent; backdrop-filter: blur(10px); transition: all 0.3s ease; }
.logo img { height: 30px; }
.nav-links { display: flex; gap: 3rem; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--c); }
.btn-outline { border: 1px solid var(--border); padding: 0.8rem 2rem; color: var(--text); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; transition: all 0.3s; }
.btn-outline:hover { background: var(--c); border-color: var(--c); color: var(--bg); }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 800px; display: flex; align-items: flex-end; padding: 5vw; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.hero-bg video { width: 100%; height: 115%; object-fit: cover; object-position: top center; opacity: 0.5; filter: grayscale(60%) contrast(1.2); }
.hero-content { width: 100%; }
.hero-title { font-size: clamp(4rem, 10vw, 12rem); font-weight: 900; line-height: 0.85; text-transform: uppercase; margin-bottom: 4rem; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-title span { display: block; text-align: left; }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid var(--border); padding-top: 2rem; }
.hero-desc { max-width: 400px; font-weight: 300; font-size: 1.1rem; color: var(--text-dim); }
.scroll-indicator { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; letter-spacing: 2px; }
.scroll-line { width: 60px; height: 1px; background: var(--c); }

/* Marquee */
.marquee-container { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; overflow: hidden; background: var(--bg); }
.marquee { display: flex; white-space: nowrap; animation: scrollMarquee 20s linear infinite; align-items: center; }
.marquee span { font-size: 2rem; font-weight: 900; margin: 0 2rem; letter-spacing: 2px; -webkit-text-stroke: 1.5px rgba(255,255,255,0.5); color: transparent; }
.cmyk-dot { width: 12px; height: 12px; border-radius: 50%; }
.cmyk-dot.cyan { background: var(--c); }
.cmyk-dot.magenta { background: var(--m); }
.cmyk-dot.yellow { background: var(--y); }
.cmyk-dot.black { background: #555; }

/* Differentials */
.differentials { padding: 10vw 5vw; }
.diff-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; }
.diff-header h2 { font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; line-height: 0.9; position: sticky; top: 20vh; }
.diff-list { display: flex; flex-direction: column; }
.diff-item { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.diff-number { font-size: 3rem; font-weight: 900; line-height: 1; }
.diff-text h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.diff-text p { color: var(--text-dim); font-size: 1.1rem; font-weight: 300; }

/* Gallery Section - 2x2 Square Grid */
.gallery-section { padding: 10vw 5vw; }
.gallery-header { margin-bottom: 4rem; }
.gallery-header h2 { font-size: 3rem; font-weight: 900; letter-spacing: 2px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
.gallery-card { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease, filter 0.5s; filter: grayscale(30%); }
.gallery-card:hover img { transform: scale(1.08); filter: grayscale(0%); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); }
.gallery-overlay span { font-weight: 900; font-size: 0.9rem; letter-spacing: 1px; color: #fff; }

/* Process / About */
.process { padding: 10vw 5vw; border-top: 1px solid var(--border); }
.process-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; }
.eyebrow { color: var(--c); font-weight: 600; letter-spacing: 2px; display: block; margin-bottom: 2rem; }
.process-content h2 { font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 3rem; }
.process-content p { font-size: 1.05rem; color: var(--text-dim); font-weight: 300; max-width: 550px; margin-bottom: 1.5rem; line-height: 1.8; }
.process-content .highlight-text { color: var(--c); font-weight: 600; font-size: 1.1rem; border-left: 3px solid var(--c); padding-left: 1.5rem; margin-top: 1rem; }
.media-frame { position: relative; padding: 2rem; border: 1px solid var(--border); }
.media-frame video { width: 100%; display: block; filter: contrast(1.1) saturate(0.8); }
.crosshairs div { position: absolute; width: 15px; height: 15px; border: 1px solid var(--c); }
.crosshairs .tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.crosshairs .tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.crosshairs .bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.crosshairs .br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* Products Grid */
.types { padding: 10vw 5vw; background: #0a0b0c; }
.types-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid var(--text); padding-bottom: 2rem; margin-bottom: 4rem; }
.types-header h2 { font-size: 3rem; font-weight: 900; }
.types-header p { color: var(--text-dim); font-weight: 300; letter-spacing: 2px; }

.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }

.product-card { background: #0a0b0c; display: flex; flex-direction: column; transition: background 0.3s; }
.product-card:hover { background: var(--bg); }
.product-visual { height: 220px; background-size: cover; background-position: center; filter: grayscale(100%); transition: filter 0.5s; }
.product-card:hover .product-visual { filter: grayscale(0%); }
.product-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 0.95rem; font-weight: 900; margin-bottom: 0.8rem; letter-spacing: 1px; }
.product-price { color: var(--c); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.8rem; display: block; }
.product-price.highlight { font-size: 0.85rem; letter-spacing: 1px; }
.product-price small { font-weight: 300; font-size: 0.85rem; color: var(--text-dim); }
.product-info p { color: var(--text-dim); font-size: 0.85rem; font-weight: 300; line-height: 1.6; flex: 1; }
.product-note { display: block; margin-top: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 300; font-style: italic; }

.product-card-cta { background: var(--c); justify-content: center; }
.product-card-cta:hover { background: #3a9dc2; }
.product-cta-inner { padding: 2rem; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; height: 100%; }
.product-cta-inner h3 { font-size: 1.5rem; font-weight: 900; color: var(--bg); margin-bottom: 1rem; }
.product-cta-inner p { color: rgba(0,0,0,0.6); font-size: 0.9rem; font-weight: 300; margin-bottom: 2rem; }
.btn-product-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg); color: var(--text); padding: 1rem 2rem; font-weight: 700; font-size: 0.85rem; text-decoration: none; letter-spacing: 1px; transition: transform 0.3s; }
.btn-product-cta:hover { transform: scale(1.05); }

/* Applications - Auto-scroll carousel */
.applications { padding: 10vw 0; overflow: hidden; }
.app-header { padding: 0 5vw; margin-bottom: 5rem; }
.app-header h2 { font-size: 4rem; font-weight: 900; -webkit-text-stroke: 1px var(--text); color: transparent; }
.app-carousel { overflow: hidden; width: 100%; }
.app-carousel-track { display: flex; gap: 2rem; animation: carouselScroll 40s linear infinite; width: max-content; }
.app-slide { width: 400px; flex-shrink: 0; }
.app-slide img { width: 100%; height: 500px; object-fit: cover; }
.app-label { margin-top: 1.5rem; font-size: 1.5rem; font-weight: 900; border-top: 1px solid var(--border); padding-top: 1rem; }
@keyframes carouselScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Tutorials */
.tutorials { padding: 10vw 5vw; border-top: 1px solid var(--border); }
.tut-header h2 { font-size: 4rem; font-weight: 900; margin-bottom: 4rem; }
.tut-list { display: flex; flex-direction: column; }
.tut-row { display: grid; grid-template-columns: 100px 1fr 50px; align-items: center; padding: 3rem 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); transition: all 0.3s; }
.tut-row:hover { background: rgba(255,255,255,0.02); padding-left: 2rem; padding-right: 2rem; }
.tut-icon { font-size: 2.5rem; }
.c-cyan { color: var(--c); }
.c-magenta { color: var(--m); }
.c-yellow { color: var(--y); }
.c-black { color: #888; }
.tut-text h3 { font-size: 2rem; font-weight: 900; margin-bottom: 0.3rem; }
.tut-text span { color: var(--text-dim); font-weight: 400; }
.tut-desc { font-size: 0.85rem; color: var(--text-dim); font-weight: 300; margin-top: 0.5rem; max-width: 500px; }
.tut-arrow { font-size: 2.5rem; opacity: 0; transform: translateX(-20px); transition: all 0.3s; color: var(--c); }
.tut-row:hover .tut-arrow { opacity: 1; transform: translateX(0); }

/* CTA */
.cta-massive { padding: 15vw 5vw 5vw 5vw; background: var(--bg); }
.cta-inner { text-align: center; margin-bottom: 10vw; }
.cta-massive h2 { font-size: clamp(4rem, 8vw, 10rem); font-weight: 900; line-height: 0.9; }
.cta-massive p { font-size: 1.5rem; color: var(--text-dim); margin: 3rem 0 5rem 0; }
.btn-massive { display: inline-flex; align-items: center; gap: 1rem; background: var(--c); color: var(--bg); padding: 2rem 4rem; font-size: 1.5rem; font-weight: 900; text-decoration: none; text-transform: uppercase; transition: transform 0.3s; }
.btn-massive:hover { transform: scale(1.05); }

/* Footer */
footer { background: #0a0b0c; padding: 5vw; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { height: 30px; margin-bottom: 2rem; display: block; }
.footer-address { color: var(--text-dim); font-size: 0.9rem; font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.footer-address strong { color: var(--text); font-weight: 700; }
.footer-cnpj { color: rgba(255,255,255,0.3); font-size: 0.8rem; font-weight: 300; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 1.5rem; color: var(--text); }
.footer-socials { display: flex; flex-direction: column; gap: 1rem; }
.footer-socials a { color: var(--text-dim); text-decoration: none; font-size: 1rem; font-weight: 300; display: flex; align-items: center; gap: 0.8rem; transition: color 0.3s; }
.footer-socials a:hover { color: var(--c); }
.footer-socials a i { font-size: 1.5rem; }
.footer-map { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 1rem; }
.map-link { color: var(--c); text-decoration: none; font-size: 0.9rem; font-weight: 400; display: flex; align-items: center; gap: 0.5rem; transition: opacity 0.3s; }
.map-link:hover { opacity: 0.7; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 2rem; font-size: 0.85rem; color: var(--text-dim); letter-spacing: 1px; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Glitch */
.glitch { position: relative; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.glitch::before { left: 2px; text-shadow: -2px 0 var(--m); clip: rect(24px, 550px, 90px, 0); animation: glitch-anim 3s infinite linear alternate-reverse; }
.glitch::after { left: -2px; text-shadow: -2px 0 var(--c); clip: rect(85px, 550px, 140px, 0); animation: glitch-anim 2.5s infinite linear alternate-reverse; }
@keyframes glitch-anim { 0% { clip: rect(10px,9999px,44px,0); } 20% { clip: rect(80px,9999px,94px,0); } 40% { clip: rect(30px,9999px,12px,0); } 60% { clip: rect(90px,9999px,75px,0); } 80% { clip: rect(2px,9999px,20px,0); } 100% { clip: rect(50px,9999px,100px,0); } }

/* Responsive */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .diff-container, .process-wrapper { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cursor, .cursor-follower { display: none; }
  .diff-item { grid-template-columns: 1fr; padding: 2rem 0; gap: 1rem; }
  .btn-massive { padding: 1.5rem 2rem; font-size: 1.2rem; }
  .tut-row { grid-template-columns: 60px 1fr 30px; padding: 2rem 0; }
  .tut-icon { font-size: 2rem; }
  .tut-text h3 { font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ===========================
   ADMIN PANEL STYLES
   =========================== */

/* Login Overlay */
#admin-login-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
}
.admin-login-box {
  background: #1a1c1e; border: 1px solid var(--border); border-radius: 12px;
  padding: 3rem; max-width: 420px; width: 90%; text-align: center;
}
.admin-login-box h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 0.5rem; }
.admin-login-box p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 2rem; }
.admin-login-box input {
  display: block; width: 100%; padding: 1rem 1.2rem; margin-bottom: 1rem;
  background: #0a0b0c; border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 1rem; font-family: var(--font);
  outline: none; transition: border-color 0.3s;
}
.admin-login-box input:focus { border-color: var(--c); }
.admin-login-box button {
  width: 100%; padding: 1rem; background: var(--c); color: var(--bg);
  border: none; border-radius: 8px; font-size: 1rem; font-weight: 700;
  font-family: var(--font); cursor: pointer; transition: background 0.3s;
}
.admin-login-box button:hover { background: #3a9dc2; }

/* Admin Toolbar */
#admin-toolbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99998;
  background: linear-gradient(135deg, #1a1c1e, #0a0b0c); border-bottom: 2px solid var(--c);
  padding: 0.8rem 2rem; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5); backdrop-filter: blur(10px);
}
.admin-toolbar-label {
  font-weight: 900; font-size: 0.9rem; letter-spacing: 2px;
  color: var(--c); text-transform: uppercase;
}
.admin-toolbar-actions { display: flex; align-items: center; gap: 1rem; }
#admin-draft-count {
  font-size: 0.85rem; color: var(--text-dim); font-weight: 300;
  background: rgba(255,255,255,0.05); padding: 0.4rem 1rem; border-radius: 20px;
}
.admin-btn-publish {
  background: #25D366; color: #fff; border: none; padding: 0.6rem 1.5rem;
  border-radius: 6px; font-weight: 700; font-size: 0.85rem; font-family: var(--font);
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
}
.admin-btn-publish:hover { background: #1da851; transform: scale(1.03); }
.admin-btn-cancel {
  background: #e5006d; color: #fff; border: none; padding: 0.6rem 1.5rem;
  border-radius: 6px; font-weight: 700; font-size: 0.85rem; font-family: var(--font);
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
}
.admin-btn-cancel:hover { background: #c2005a; transform: scale(1.03); }
.admin-btn-logout {
  background: transparent; color: var(--text-dim); border: 1px solid var(--border);
  padding: 0.6rem 1.5rem; border-radius: 6px; font-weight: 600; font-size: 0.85rem;
  font-family: var(--font); cursor: pointer; transition: all 0.3s;
}
.admin-btn-logout:hover { color: var(--text); border-color: var(--text); }

/* Admin - editable highlights */
body.admin-mode .admin-editable-text {
  outline: 2px dashed rgba(66, 175, 215, 0.4); outline-offset: 4px;
  cursor: pointer !important; transition: outline-color 0.3s;
}
body.admin-mode .admin-editable-text:hover {
  outline-color: var(--c);
}
body.admin-mode .admin-editable-img {
  outline: 2px dashed rgba(229, 0, 109, 0.4); outline-offset: 4px;
  transition: outline-color 0.3s;
}
body.admin-mode .admin-editable-img:hover {
  outline-color: var(--m);
}

/* Admin Image Upload Button */
.admin-img-upload-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8); color: #fff; border: 2px solid var(--m);
  padding: 0.8rem 1.5rem; border-radius: 8px; font-size: 0.9rem;
  font-weight: 700; font-family: var(--font); cursor: pointer;
  z-index: 10; transition: all 0.3s; opacity: 0;
  backdrop-filter: blur(5px);
}
.admin-editable-img:hover .admin-img-upload-btn { opacity: 1; }
.admin-img-upload-btn:hover { background: var(--m); color: #fff; transform: translate(-50%, -50%) scale(1.05); }
.product-visual.admin-editable-img { overflow: visible; }
.product-visual.admin-editable-img .admin-img-upload-btn { font-size: 0.75rem; padding: 0.5rem 1rem; }

/* Admin Text Edit Modal */
#admin-text-modal {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
}
.admin-text-modal-box {
  background: #1a1c1e; border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; max-width: 550px; width: 90%;
}
.admin-text-modal-box h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 1.5rem; }
.admin-text-modal-box textarea {
  width: 100%; padding: 1rem; background: #0a0b0c; border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 1rem; font-family: var(--font);
  resize: vertical; outline: none; min-height: 120px; transition: border-color 0.3s;
}
.admin-text-modal-box textarea:focus { border-color: var(--c); }
.admin-text-modal-actions { display: flex; gap: 1rem; margin-top: 1.5rem; justify-content: flex-end; }

/* Admin mode body offset (to account for toolbar) */
body.admin-mode { padding-top: 60px; }
body.admin-mode header { top: 60px; }
