/* RESET & FONTS */
:root {
  --accent: #439687;
  --accent-strong: #357a6e;
  --ink: #1a202c;
  --text: #4a5568;
  --muted: #718096;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --surface: #ffffff;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body { 
  background: #eef4f3; 
  padding: 20px; 
  display: flex; 
  justify-content: center; 
  min-height: 100vh; 
  overflow-x: hidden;
  position: relative;
  transition: background 0.35s ease, color 0.35s ease;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  transform: translateY(-140%);
  background: #102226;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #64c7b4;
  outline-offset: 3px;
}
body::before {
  content: "";
  position: fixed;
  inset: -30%;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(67,150,135,.16), transparent 32%, rgba(186,117,23,.08) 58%, transparent 76%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 1px, transparent 1px 92px);
  opacity: .75;
  transform: translate3d(0,0,0) rotate(0.001deg);
  animation: ambientDrift 18s var(--ease) infinite alternate;
}

/* CONTENITORE PRINCIPALE */
.site-wrap { 
  font-family: 'Sora', sans-serif; 
  background: #ffffff; 
  color: #2d3748; 
  border-radius: 24px; 
  overflow: hidden; 
  position: relative;
  z-index: 1;
  width: 100%; 
  max-width: 900px; 
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(67, 150, 135, 0.12); 
  animation: shellIn .7s var(--ease) both;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* NAVBAR */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 24px; background: rgba(255,255,255,.9); border-bottom: 1px solid #f0f5f4; backdrop-filter: blur(18px); }
.nav-logo { font-family: 'Space Mono', monospace; font-size: 14px; color: #439687; letter-spacing: 0.05em; font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links li { font-size: 13px; font-weight: 600; color: #718096; cursor: pointer; transition: color 0.2s, transform .2s var(--ease); }
.nav-links a { color: inherit; text-decoration: none; }
.nav-links li:hover { transform: translateY(-1px); }
.nav-links li:hover, .nav-links a.active { color: #439687; }
.site-controls { display: flex; align-items: center; gap: 8px; }
.control-btn { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: #718096; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 7px 9px; cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s; }
.control-btn.active, .control-btn:hover { color: #ffffff; background: #439687; border-color: #439687; }
.control-btn:hover, .theme-toggle:hover { transform: translateY(-1px); }
.theme-toggle { display: inline-flex; align-items: center; gap: 7px; font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: #718096; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 999px; padding: 6px 10px; cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s; }
.theme-toggle-track { width: 30px; height: 16px; border-radius: 999px; background: #cbd5e0; padding: 2px; transition: background 0.2s; }
.theme-toggle-thumb { display: block; width: 12px; height: 12px; border-radius: 50%; background: #ffffff; transition: transform 0.2s; }
body.dark .theme-toggle-track { background: #439687; }
body.dark .theme-toggle-thumb { transform: translateX(14px); }

/* HERO SECTION */
.hero { padding: 32px 24px 24px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; border-bottom: 1px solid #f0f5f4; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -10% 0 35%; height: 1px; background: linear-gradient(90deg, transparent, rgba(67,150,135,.55), transparent); animation: lineFlow 5s var(--ease) infinite; }
.hero-tag { font-size: 10px; font-family: 'Space Mono', monospace; color: #439687; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; font-weight: 700;}
.hero-name { font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #1a202c; }
.hero-name span { color: #439687; }
.hero-sub { font-size: 13px; color: #4a5568; margin-top: 10px; font-weight: 400; line-height: 1.6; max-width: 450px; }
.hero-btns { display: flex; gap: 12px; margin-top: 20px; }
.btn-primary { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 12px; padding: 10px 20px; background: #439687; color: #fff; border: none; border-radius: 20px; cursor: pointer; transition: transform .2s var(--ease), background 0.2s, box-shadow .2s; box-shadow: 0 8px 20px rgba(67,150,135,.18); }
.btn-primary:hover { background: #357a6e; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(67,150,135,.22); }
.btn-ghost { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 12px; padding: 10px 20px; background: #eef4f3; color: #439687; border: none; border-radius: 20px; cursor: pointer; transition: transform .2s var(--ease), background .2s, box-shadow .2s;}
.btn-ghost:hover { background: #e0ecea; transform: translateY(-2px); }
.btn-primary:active, .btn-ghost:active, .store-btn:active { transform: translateY(0) scale(.98); }
.hero-avatar { width: 80px; height: 80px; border-radius: 50%; background: #e0ecea; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: #439687; flex-shrink: 0; overflow: hidden; animation: avatarFloat 6s var(--ease) infinite alternate; box-shadow: 0 10px 28px rgba(67,150,135,.16); }
.avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* TABS */
.tabs { display: flex; padding: 0 24px; border-bottom: 1px solid #f0f5f4; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { appearance: none; font-family: 'Sora', sans-serif; background: transparent; font-size: 13px; font-weight: 600; padding: 16px 16px; cursor: pointer; color: #718096; border: none; border-bottom: 3px solid transparent; transition: color .2s, border-color .2s, transform .2s var(--ease); white-space: nowrap; }
.tab.active { color: #439687; border-bottom-color: #439687; }
.tab:hover:not(.active) { color: #718096; transform: translateY(-1px); }
.panel { display: none; padding: 24px; animation: fadeIn 0.3s ease; }
.panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: translateY(0); } }

/* PROJECTS GRID */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.project-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px; cursor: pointer; transition: transform .25s var(--ease), border-color .2s, background .2s, box-shadow .25s; position: relative; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.project-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent, rgba(67,150,135,.09), transparent); opacity: 0; transform: translateX(-35%); transition: opacity .25s, transform .45s var(--ease); }
.project-card > * { position: relative; z-index: 1; }
.project-card:hover { border-color: #439687; transform: translateY(-4px); box-shadow: 0 10px 24px rgba(67, 150, 135, 0.13); }
.project-card:hover::before { opacity: 1; transform: translateX(0); }
.project-card.selected { border-color: #439687; background: #f4f9f8; }
.project-icon { font-size: 24px; margin-bottom: 10px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #e0ecea; border-radius: 12px; transition: transform .25s var(--ease), background .25s; }
.project-card:hover .project-icon { transform: scale(1.06) rotate(-2deg); }
.project-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: #1a202c; }
.project-desc { font-size: 12px; color: #718096; line-height: 1.5; }
.demo-badge { position: absolute; top: 12px; right: 12px; font-size: 9px; font-weight: 700; background: #e0ecea; color: #2f766b; border-radius: 6px; padding: 4px 8px; }
.select-hint { font-size: 12px; color: #667085; margin-bottom: 16px; font-weight: 600; }

/* EMULATOR */
.emulator-section { margin-top: 24px; display: none; background: #f8fafc; border-radius: 20px; padding: 24px; border: 1px solid #edf2f7; }
.emulator-section.visible { display: flex; gap: 28px; align-items: center; }
.emulator-section.visible { animation: panelRise .42s var(--ease) both; }
.phone-frame { flex-shrink: 0; width: 220px; background: #ffffff; border: 6px solid #e2e8f0; border-radius: 32px; padding: 12px 8px; box-shadow: 0 14px 34px rgba(0,0,0,0.07); animation: phoneFloat 7s var(--ease) infinite alternate; }
.phone-notch { width: 60px; height: 6px; background: #e2e8f0; border-radius: 4px; margin: 0 auto 10px; }
.phone-screen { background: #f4f9f8; border-radius: 20px; height: 380px; overflow: hidden; position: relative; border: 1px solid #edf2f7; }
.app-screen { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; text-align: center; }
.app-logo { font-size: 36px; margin-bottom: 12px; }
.app-name { font-size: 14px; font-weight: 700; color: #2d3748; margin-bottom: 6px; }
.app-tagline { font-size: 11px; color: #718096; line-height: 1.4; }
.app-btn { display: inline-flex; align-items: center; justify-content: center; margin-top: 16px; color: #fff; font-size: 10px; font-weight: 600; padding: 8px 16px; border-radius: 20px; border: none; cursor: pointer; text-decoration: none; }
.phone-home-bar { width: 50px; height: 4px; background: #e2e8f0; border-radius: 2px; margin: 10px auto 0; }
.emulator-info { flex: 1; min-width: 0; }
.emulator-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #1a202c; }
.emulator-desc { font-size: 13px; color: #4a5568; line-height: 1.6; margin-bottom: 20px; }
.store-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; padding: 10px 16px; border: 1px solid #e2e8f0; border-radius: 12px; color: #4a5568; cursor: pointer; margin-right: 8px; background: #ffffff; text-decoration: none; transition: transform .2s var(--ease), border-color .2s, color .2s, background .2s, box-shadow .2s; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.store-btn:hover { border-color: #439687; color: #439687; background: #f4f9f8; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(67,150,135,.12); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tech-tag { font-size: 11px; font-weight: 600; padding: 6px 10px; border-radius: 8px; background: #edf2f7; color: #4a5568; }
.demo-timer { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 8px; width: fit-content; max-width: 100%; margin: 0 0 16px; padding: 9px 12px; background: #eef4f3; border: 1px solid #d7e8e4; border-radius: 12px; color: #2d3748; }
.demo-timer[hidden] { display: none; }
.demo-timer-label, .demo-timer-target { font-size: 11px; font-weight: 700; color: #4a5568; }
#timer-value { font-family: 'Space Mono', monospace; font-size: 14px; color: #2f766b; }
.support-card { background: #ffffff; border: 1px solid #d7e8e4; border-radius: 12px; padding: 16px; text-align: left; margin-top: 24px; box-shadow: 0 8px 22px rgba(67,150,135,.06); }
.support-label { font-size: 11px; font-weight: 800; color: #2f766b; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.support-copy { display: block; font-size: 12px; color: #4a5568; line-height: 1.5; margin-bottom: 12px; }
.support-btn { display: inline-flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 800; color: #ffffff; background: #439687; border: none; border-radius: 999px; padding: 10px 14px; cursor: pointer; text-decoration: none; transition: transform .2s var(--ease), background .2s, box-shadow .2s; }
.support-btn:hover { background: #357a6e; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(67,150,135,.18); }

/* FULLSCREEN DEMO */
body.fullscreen-open { overflow: hidden; }
.fullscreen-overlay { position: fixed; inset: 0; z-index: 9999; display: none; padding: 18px; background: rgba(8, 14, 16, 0.94); font-family: 'Sora', sans-serif; }
.fullscreen-overlay.visible { display: flex; align-items: center; justify-content: center; animation: overlayIn .22s ease both; }
.fullscreen-shell { width: 100%; height: 100%; max-width: 1440px; background: #10191d; border: 1px solid #203238; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.35); display: flex; flex-direction: column; animation: shellLift .32s var(--ease) both; }
.fullscreen-header { min-height: 58px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #121f24; border-bottom: 1px solid #203238; }
.fullscreen-kicker { font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #64c7b4; margin-bottom: 2px; }
.fullscreen-title { font-size: 16px; font-weight: 700; color: #f5fbfa; }
.fullscreen-close { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: #ffffff; background: #439687; border: none; border-radius: 999px; padding: 9px 16px; cursor: pointer; transition: background 0.2s; }
.fullscreen-close:hover { background: #357a6e; }
.fullscreen-body { flex: 1; min-height: 0; background: #05080a; display: flex; align-items: center; justify-content: center; }
.fullscreen-frame { width: 100%; height: 100%; border: none; background: #05080a; display: block; }
.fullscreen-device { position: relative; width: min(460px, 92vw, calc((100vh - 110px) * 9 / 16)); aspect-ratio: 9 / 16; padding: 12px; border-radius: 40px; background: #eef3f6; box-shadow: 0 24px 80px rgba(0,0,0,0.45); }
.fullscreen-device::before { content: ""; position: absolute; top: 9px; left: 50%; width: 76px; height: 7px; transform: translateX(-50%); border-radius: 999px; background: #d8e1e7; z-index: 2; }
.fullscreen-device .fullscreen-frame { border-radius: 28px; overflow: hidden; }
.fullscreen-app-preview { width: min(420px, 90vw); aspect-ratio: 9 / 16; border-radius: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* OTHER PANELS (Skills, About, Certs) */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.skill-group-title { font-size: 11px; font-weight: 700; color: #439687; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.skill-item { font-size: 13px; color: #4a5568; padding: 6px 0; border-bottom: 1px solid #f0f5f4; display: flex; align-items: center; gap: 8px; }
.skill-dot { width: 6px; height: 6px; border-radius: 50%; background: #439687; flex-shrink: 0; }
.section-label { font-size: 11px; font-weight: 700; color: #439687; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #e0ecea; }
.about-bio { font-size: 14px; color: #4a5568; line-height: 1.7; margin-bottom: 28px; background: #f8fafc; padding: 16px; border-radius: 12px; border-left: 4px solid #439687; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.exp-item, .edu-item, .cert-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f5f4; }
.exp-item:last-child, .edu-item:last-child, .cert-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.exp-role, .edu-degree, .cert-name { font-size: 14px; font-weight: 700; color: #2d3748; }
.exp-company, .edu-school, .cert-issuer { font-size: 13px; color: #718096; margin-top: 4px; }
.exp-period, .edu-year, .cert-year { font-size: 11px; font-weight: 600; color: #439687; margin-top: 6px; display: inline-block; background: #e0ecea; padding: 2px 8px; border-radius: 4px; }
.cert-item { display: flex; align-items: flex-start; gap: 16px; }
.cert-icon { width: 40px; height: 40px; border-radius: 10px; background: #e0ecea; color: #439687; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }

/* FOOTER */
.site-footer { border-top: 1px solid #f0f5f4; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; background: #f8fafc; }
.footer-copy { font-size: 12px; font-weight: 600; color: #718096; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; font-weight: 700; color: #718096; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: #439687; }
.new-badge { display: inline-block; font-size: 9px; font-weight: 700; background: #439687; color: #fff; border-radius: 4px; padding: 2px 6px; margin-left: 6px; vertical-align: middle; }

/* DARK MODE */
body.dark { background: #0d1517; }
body.dark::before {
  background:
    linear-gradient(115deg, rgba(67,150,135,.11), transparent 32%, rgba(124,106,247,.07) 58%, transparent 76%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 92px);
  opacity: .85;
}
body.dark .site-wrap,
body.dark .nav,
body.dark .project-card,
body.dark .phone-frame,
body.dark .store-btn,
body.dark .support-card {
  background: #121f24;
  color: #d9e8e6;
}
body.dark .site-wrap { box-shadow: 0 10px 35px rgba(0,0,0,0.28); }
body.dark .nav,
body.dark .hero,
body.dark .tabs,
body.dark .site-footer,
body.dark .skill-item,
body.dark .exp-item,
body.dark .edu-item,
body.dark .cert-item {
  border-color: #203238;
}
body.dark .site-footer,
body.dark .emulator-section,
body.dark .about-bio,
body.dark .control-btn,
body.dark .theme-toggle {
  background: #17282e;
}
body.dark .hero-name,
body.dark .project-title,
body.dark .app-name,
body.dark .emulator-title,
body.dark .exp-role,
body.dark .edu-degree,
body.dark .cert-name {
  color: #f5fbfa;
}
body.dark .hero-sub,
body.dark .project-desc,
body.dark .emulator-desc,
body.dark .skill-item,
body.dark .exp-company,
body.dark .edu-school,
body.dark .cert-issuer,
body.dark .store-btn,
body.dark .footer-links a,
body.dark .theme-toggle,
body.dark .control-btn {
  color: #a9bfbc !important;
}
body.dark .support-copy,
body.dark .demo-timer-label,
body.dark .demo-timer-target {
  color: #a9bfbc;
}
body.dark .project-card { border-color: #263a41; box-shadow: 0 2px 8px rgba(0,0,0,0.14); }
body.dark .project-card:hover,
body.dark .project-card.selected {
  border-color: #64c7b4;
  background: #17312f;
}
body.dark .project-icon,
body.dark .cert-icon,
body.dark .exp-period,
body.dark .edu-year,
body.dark .cert-year,
body.dark .btn-ghost {
  background: #1d3938;
}
body.dark .phone-screen { background: #102226; border-color: #203238; }
body.dark .phone-notch,
body.dark .phone-home-bar,
body.dark .tech-tag {
  background: #263a41;
}
body.dark .tech-tag { color: #d9e8e6; }
body.dark .support-card,
body.dark .demo-timer { border-color: #3a555d; }
body.dark .demo-timer { background: #17282e; }
body.dark .control-btn.active { color: #ffffff; background: #439687; border-color: #439687; }

@keyframes ambientDrift {
  from { transform: translate3d(-2%, -1%, 0) rotate(0.001deg); }
  to { transform: translate3d(2%, 1%, 0) rotate(0.001deg); }
}

@keyframes shellIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lineFlow {
  0%, 100% { transform: translateX(-18%); opacity: .35; }
  50% { transform: translateX(12%); opacity: .85; }
}

@keyframes avatarFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

@keyframes phoneFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

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

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

@keyframes shellLift {
  from { opacity: 0; transform: translateY(16px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .emulator-section.visible { flex-direction: column; align-items: center; text-align: center; }
  .store-btn { margin-right: 0; margin-bottom: 8px; width: 100%; justify-content: center; }
  .tech-tags { justify-content: center; }
  .phone-frame { width: 260px; }
  .phone-screen { height: 450px; }
  .about-cols { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; }
  .nav-actions { flex-direction: column; align-items: flex-end; gap: 10px; }
  .nav-links { display: none; }
  .site-controls { flex-wrap: wrap; justify-content: flex-end; }
  .fullscreen-overlay { padding: 0; }
  .fullscreen-shell { border-radius: 0; border: none; max-width: none; }
  .fullscreen-header { min-height: 52px; padding: 10px 12px; }
  .fullscreen-title { font-size: 14px; }
  .fullscreen-device { width: min(96vw, calc((100vh - 72px) * 9 / 16)); padding: 8px; border-radius: 30px; }
  .fullscreen-device::before { top: 7px; width: 56px; height: 5px; }
  .fullscreen-device .fullscreen-frame { border-radius: 22px; }
}
