
/* ---- LEVITATION ANIMATION ---- */
@keyframes levitate {
  0%,100% { transform: translateY(0px) rotate(var(--icon-rot,0deg)); }
  50%      { transform: translateY(-6px) rotate(var(--icon-rot,0deg)); }
}
@keyframes levitate2 {
  0%,100% { transform: translateY(0px) rotate(var(--icon-rot,0deg)); }
  50%      { transform: translateY(-9px) rotate(var(--icon-rot,0deg)); }
}

/* ============================================================
   BLINK CUT s.r.o. — style.css
   Light minimalist aesthetic (bold/thin mixed typography)
   ============================================================ */

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

:root {
  --bg:        #ffffff;
  --bg-2:      #f8f9fa;
  --bg-glass:  rgba(255,255,255,0.7);
  --border:    rgba(0,0,0,0.1);
  --text:      #000000;
  --text-60:   rgba(0,0,0,0.6);
  --text-30:   rgba(0,0,0,0.3);
  --accent:    #000000;
  --font-main: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--text); color: var(--bg); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-30); }

/* ---- CONTAINER ---- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-30);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  font-weight: 700;
}

/* ---- CURSOR ---- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid #000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: #000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
}
.cursor.hovering { width: 60px; height: 60px; background: rgba(0,0,0,0.06); }
.cursor.clicking { width: 20px; height: 20px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--text);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}
.btn-primary::before { background: rgba(255,255,255,0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: var(--bg); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  font-weight: 700;
}
.btn-ghost::before { background: var(--text); z-index: -1; }
.btn-ghost:hover { color: var(--bg); border-color: var(--text); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.nav-logo img {
  height: 100%;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-60);
  transition: color 0.3s;
  position: relative;
  font-weight: 700;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--text);
  color: var(--bg);
  padding: 8px 20px;
  font-weight: 700;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--text-60); color: var(--bg); }
.nav-cta::after { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-title {
  font-size: clamp(52px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.hero-word {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: wordReveal 0.9s var(--ease) forwards;
  color: var(--text);
}
.hero-word:nth-child(1) { animation-delay: 0.5s; }
.hero-word:nth-child(2) { animation-delay: 0.65s; }
.hero-word:nth-child(3) { animation-delay: 0.8s; }
.hero-word:nth-child(4) { animation-delay: 0.95s; }
.hero-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-60);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s var(--ease) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.8s var(--ease) forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text), transparent);
  animation: scrollLine 1.5s infinite ease-in-out;
}
.hero-scroll-text {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--text-30);
  writing-mode: vertical-rl;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }

/* ---- ABOUT ---- */
.about {
  padding: 140px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.about-text {
  font-size: 16px;
  color: var(--text-60);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  font-family: var(--font-mono);
  letter-spacing: -0.03em;
}
.stat-num::after { content: '+'; font-size: 0.6em; }
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-60);
  margin-top: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* ---- WORKSPACE (Combined Desktop UI) ---- */
.workspace {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.workspace-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
}
.workspace-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.40;
}
.workspace-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
/* Mobile: pause video to save battery */
@media (max-width: 768px) {
  .workspace-bg-video {
    display: none;
  }
  .workspace-bg {
    background: #f0f0f0;
  }
}

.workspace-ui {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 40px;
}

.workspace-header {
  margin-bottom: 40px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  display: inline-block;
  align-self: flex-start;
}
.workspace-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Desktop Icon Area */
.desktop-area {
  flex-grow: 1;
  position: relative;
  min-height: 500px;
}

/* Base Desktop Icon */
.desktop-icon {
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.25s cubic-bezier(.34,1.56,.64,1), filter 0.25s, z-index 0s;
  text-align: center;
  z-index: 10;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.22)) drop-shadow(0 1px 3px rgba(0,0,0,0.15));
  animation: levitate calc(3s + var(--icon-delay,0s)) ease-in-out infinite;
}
.desktop-icon:hover {
  background: rgba(0,0,0,0.05);
  z-index: 100;
  transform: scale(1.18) translateY(-10px) rotate(var(--icon-rot,0deg)) !important;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)) drop-shadow(0 4px 8px rgba(0,0,0,0.2)) brightness(1.05);
  animation-play-state: paused;
}
.desktop-icon:focus {
  outline: 2px solid var(--text);
  background: rgba(0,0,0,0.08);
}
.desktop-icon-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}
.desktop-icon-client {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-60);
  opacity: 0;
  transition: opacity 0.2s;
}
.desktop-icon:hover .desktop-icon-client { opacity: 1; }

/* Folder Icon (Services) */
.folder-shape {
  width: 70px;
  height: 50px;
  background: #a9d0f5; /* macOS folder blue */
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 4px;
}
.folder-shape::before {
  content: '';
  position: absolute;
  top: -8px; left: 0;
  width: 30px; height: 10px;
  background: #90bdec;
  border-radius: 4px 4px 0 0;
}

/* File Icon (Portfolio Projects) */
.file-icon .desktop-icon-img {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  margin-bottom: 4px;
}
.file-icon .desktop-icon-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.desktop-icon-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.8);
  color: #000;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}
.file-icon:hover .desktop-icon-play { opacity: 1; }

/* Desktop Dock */
.desktop-dock {
  align-self: center;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.dock-item {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-60);
  padding: 8px;
  cursor: none;
  transition: color 0.2s, transform 0.2s;
}
.dock-item:hover {
  color: var(--text);
  transform: scale(1.1);
}

/* ---- VIDEO MODAL ---- */
.video-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), display 0.4s allow-discrete;
}
.video-modal[open] { opacity: 1; pointer-events: all; }
@starting-style { .video-modal[open] { opacity: 0; } }
.video-modal-inner {
  width: min(1000px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s var(--ease-back);
}
.video-modal[open] .video-modal-inner { transform: translateY(0) scale(1); }
.video-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-meta { display: flex; flex-direction: column; gap: 4px; }
.video-modal-client {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-60);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.video-modal-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.video-modal-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-60);
  letter-spacing: 0.08em;
}
.modal-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.video-modal-year {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-30);
  letter-spacing: 0.1em;
}
.video-modal-close {
  font-size: 24px;
  color: var(--text);
  transition: transform 0.3s;
  padding: 4px 8px;
}
.video-modal-close:hover { transform: rotate(90deg); }
.video-modal-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.video-modal-player iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---- MARQUEE ---- */
.marquee-section {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-30);
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-dot {
  font-size: 8px;
  color: var(--text);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- CONTACT ---- */
.contact {
  padding: 140px 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.contact-sub {
  font-size: 16px;
  color: var(--text-60);
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-link {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
  display: inline-block;
}
.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease);
}
.contact-link:hover::after { width: 100%; }

/* ---- FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-60);
  text-transform: uppercase;
}
.form-input {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
}
.form-input::placeholder { color: var(--text-30); }
.form-input:focus { border-color: var(--text); background: var(--bg-2); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 18px;
  cursor: none;
}
.btn-icon { transition: transform 0.3s var(--ease); }
.form-submit:hover .btn-icon { transform: translateX(6px); }
.form-success {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2e7d32;
  text-align: center;
  padding: 16px;
  border: 1px solid rgba(46,125,50,0.3);
  background: rgba(46,125,50,0.05);
  border-radius: 4px;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo-img {
  max-height: 40px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-60);
  letter-spacing: 0.1em;
}
.footer-legal p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-60);
  line-height: 1.8;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-60);
  letter-spacing: 0.05em;
}
.footer-social { display: flex; gap: 20px; }
.footer-social-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-60);
  transition: color 0.3s;
  padding: 4px;
}
.footer-social-link:hover { color: var(--text); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .container, .workspace-ui { padding: 24px; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 24px; }
  .about, .workspace, .contact { padding: 80px 0; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .desktop-area { flex-direction: row; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ---- MOBILE CURSOR OFF ---- */
@media (max-width: 768px) {
  * { cursor: auto !important; }
  .cursor, .cursor-dot { display: none !important; }
}

/* ---- RADAR GLOW ---- */
@keyframes radar-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,255,80,0.7), 0 0 8px 2px rgba(0,255,80,0.4); }
  50%  { box-shadow: 0 0 0 8px rgba(0,255,80,0), 0 0 16px 4px rgba(0,255,80,0.2); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,80,0.7), 0 0 8px 2px rgba(0,255,80,0.4); }
}
@keyframes radar-scan {
  0%   { opacity: 0.9; }
  50%  { opacity: 0.4; }
  100% { opacity: 0.9; }
}
.radar-glow .desktop-icon-img {
  border: 1.5px solid rgba(0,255,80,0.8) !important;
  animation: radar-pulse 2s ease-in-out infinite;
  border-radius: 6px;
}
.radar-glow .desktop-icon-img img {
  animation: radar-scan 2s ease-in-out infinite;
}
.radar-glow .desktop-icon-label {
  color: #00cc44 !important;
  text-shadow: 0 0 6px rgba(0,255,80,0.6) !important;
}

/* ---- MOBILE ICON AREA (JS handles positioning) ---- */
@media (max-width: 768px) {
  .desktop-area {
    display: block;
    position: relative;
  }
  .desktop-icon {
    width: 90px;
  }
  .desktop-icon:active {
    transform: scale(1.15) translateY(-6px) rotate(0deg) !important;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.3)) brightness(1.05);
  }
}
