/* ==================== GLOBAL STYLES ==================== */
@font-face {
  font-family: 'Alagard';
  src: url('Assets/alagard 2.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
.desktop-version {
 display:block;
}

.mobile-version {
 display:none;
}

@media (max-width:780px){

 .desktop-version{
   display:none !important;
 }

 .mobile-version{
   display:block !important;
 }

}
.mobile-version {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #008080;
}

/* ========== DESKTOP BASE STYLES ========== */
* { user-select: none; box-sizing: border-box; }
body {
  margin: 0;
  padding: 0;
  background: #008080;
  font-family: 'Segoe UI', 'Tahoma', 'MS Sans Serif', sans-serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  position: relative;
}
/* ========== DESKTOP ICON GRID (LEFT SIDE) ========== */
.icon-grid {
  position: absolute;
  top: 30px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(2, 80px);
  gap: 24px;
  z-index: 10;
}
.icon {
  width: 80px;
  text-align: center;
  cursor: pointer;
  color: white;
  text-shadow: 1px 1px 0 #000;
  font-size: 12px;
  transition: 0.1s linear;
}
.icon img {
  width: 48px;
  height: 48px;
  image-rendering: crisp-edges;
  display: block;
  margin: 0 auto 4px;
}
.icon:hover { background: rgba(0, 0, 0, 0.2); border-radius: 4px; }
/* ========== SOCIAL ICONS (BOTTOM RIGHT) ========== */
.social-icons {
  position: absolute;
  bottom: 60px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
  background: #c0c0c0;
  padding: 8px;
  border: 2px outset #ffffff;
  border-right-color: #808080;
  border-bottom-color: #808080;
}
.social-iconcontainer {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #d4d0c8;
  padding: 4px 8px;
  border: 1px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
}
.social-icon { width: 28px; height: 28px; }
.social-icon-label { font-size: 11px; font-weight: bold; color: #000; }
/* ========== WINDOW STYLES ========== */
.window {
  position: absolute;
  background: #c0c0c0;
  border: 3px ridge #dfdfdf;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
  display: none;
  z-index: 100;
  resize: both;
  overflow: hidden;
  min-width: 280px;
  min-height: 200px;
}
.window.active { display: flex; flex-direction: column; }
.title-bar {
  background: #000080;
  color: white;
  padding: 5px 8px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: grab;
}
.title-bar:active { cursor: grabbing; }
.close-btn {
  background: #c0c0c0;
  border: 1px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  width: 22px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
}
.window-content {
  padding: 12px;
  background: #ece9d8;
  flex: 1;
  overflow-y: auto;
  font-size: 12px;
}
/* ========== TASKBAR ========== */
.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  padding: 4px 8px;
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
}
#clock {
  background: #000;
  color: #0f0;
  font-family: monospace;
  padding: 2px 8px;
  font-size: 13px;
}
/* ========== MARQUEE (TOP BANNER) ========== */
.blinky-marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  overflow: hidden;
  white-space: nowrap;
  z-index: 200;
  border-bottom: 3px solid #ff44ff;
  padding: 4px 0;

}
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.blinky { display: inline-block; vertical-align: middle; margin: 0 3px; }
.blinky img { height: 32px; vertical-align: middle; }
/* ========== STATUS BOX (TOP RIGHT) ========== */
.desktop-status {
  position: fixed;
  top: 20px;
  right: 16px;
  background: #ffffcc;
  border: 2px solid #ffaa33;
  width: 280px;
  z-index: 55;
  font-size: 11px;
  font-family: 'Segoe UI', monospace;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}
.status-header {
  background: #ffcc66;
  padding: 5px 8px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #aa7733;
}
.status-header img { width: 22px; height: 22px; margin-right: 6px; vertical-align: middle; }
.status-content { padding: 8px; background: #fff9e0; }
.blog-entry {
  background: #ffffff;
  border: 2px inset #3a5488;
  margin-top: 10px;
}
.blog-entry-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: #000080;
  color: #fff;
  font-weight: bold;
  padding: 6px 10px;
  font-size: 13px;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
}
.blog-entry-body p {
  margin: 0 0 10px;
  transform: none;
}
.blog-heading {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 0 18px;
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
  font-family: 'Alagard', 'Brush Script MT', 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #111;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
  animation: blogTitleFloat 3.2s ease-in-out infinite;
}
@keyframes blogTitleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.blog-entry-date {
  font-family: monospace;
  font-size: 11px;
  opacity: 0.95;
}
.blog-entry-body {
  padding: 12px;
  font-family: inherit;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
  text-shadow: none;
}
.about-me-gif {
  float: right;
  width: clamp(56px, 20vw, 90px);
  height: auto;
  margin: 0 0 16px 10px;
}
.about-faq h4 {
  margin: 0 0 4px 0;
}
.about-faq p {
  margin: 0;
}
.about-faq h4:not(:first-of-type) {
  margin-top: 14px;
}
/* ==================== CONTENT QUICK EDIT MAP ====================
   STATUS / UPDATES: id="statusMessage"
   BLOG POSTS: id="blogWindow"
   PROJECTS: "<!-- PROJECT 1 -->" and other .portfolio-slide blocks
   GALLERY IMAGES: "<!-- ART GALLERY WINDOW -->" and .carousel-slide blocks
   VIDEO LISTS: "VIDEO PLAYLIST" (desktop) and "MOBILE VIDEO LIST"
*/
.fmc-gif-wrap {
  position: relative;
  display: inline-block;
}
.fmc-project-slide { position: relative; }
.fmc-project-slide .fmc-gif-wrap {
  position: absolute;
  top: 12px;
  right: 68px;
  margin: 0;
  z-index: 80;
}
.fmc-sport-gif {
  border: 2px solid #3a5488;
  background: #fff;
  padding: 2px;
  cursor: pointer;
  image-rendering: pixelated;
  width: 52px;
  height: 52px;
  object-fit: cover;
}
.fmc-gif-tooltip {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: min(320px, calc(100vw - 20px));
  max-height: calc(100vh - 20px);
  overflow: auto;
  background: #c0c0c0;
  border: 2px solid #aa7733;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.25);
  z-index: 2000;
}
.fmc-gif-tooltip.open { display: block; }
.fmc-gif-tooltip .tooltip-content {
  padding: 8px;
  background: #fff9e0;
  font-size: 12px;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0;
}
@media (max-width: 760px) {
  .about-me-gif { margin: 0 0 16px 10px; }
  .fmc-project-slide .fmc-gif-wrap { top: 10px; right: 54px; }
  .fmc-gif-tooltip {
    width: min(300px, calc(100vw - 16px));
  }
}
/* ========== CAROUSEL STYLES ========== */
.portfolio-carousel-container, .carousel-container { width: 100%; height: auto; display: flex; flex-direction: column; min-height: 0; }
.portfolio-carousel-track, .carousel-track { display: flex; transition: transform 0.25s ease; height: 100%; }
.portfolio-slide, .carousel-slide { flex: 0 0 100%; overflow-y: auto; padding: 16px; height: 100%; min-height: 0; }
/* ========== THUMBNAIL STRIPS ========== */
.thumbnail-strip, .portfolio-thumbnail-strip { display: flex; gap: 8px; overflow-x: auto; background: #c0c0c0; padding: 8px; }
.thumbnail, .portfolio-thumbnail { width: 70px; height: 60px; border: 2px solid #808080; cursor: pointer; overflow: hidden; }
.thumbnail img, .portfolio-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
/* ========== VIDEO PLAYER ========== */
.video-player-container { width: 100%; height: 100%; display: flex; flex-direction: column; background: #000; }
.video-main { flex: 1; position: relative; background: #000; }
.video-main iframe { width: 100%; height: 100%; border: none; }
.video-controls { display: flex; justify-content: center; gap: 20px; padding: 12px; background: #c0c0c0; border-top: 2px solid #fff; }
.video-controls button { background: #c0c0c0; border: 2px outset #fff; border-right-color: #404040; border-bottom-color: #404040; padding: 6px 16px; font-weight: bold; cursor: pointer; }
/* ========== UTILITY CLASSES ========== */
.zoomable-image { cursor: zoom-in; }
.resume-section { margin-bottom: 1rem; }
.resume-columns { display: block; gap: 14px; }
.resume-box { background: #f4f1e8; border: 2px solid #808080; padding: 12px; box-shadow: inset 2px 2px 0 rgba(0,0,0,0.08); margin-bottom: 14px; }
.resume-box:last-child { margin-bottom: 0; }
.resume-box h4 { margin: 0 0 10px 0; font-size: 14px; letter-spacing: 0.04em; }
.resume-box p { margin: 0 0 14px 0; line-height: 1.5; font-size: 12px; }
.resume-box p:last-child { margin-bottom: 0; }
@media (max-width: 680px) { .resume-columns { display: block; } }
.video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 15px 0; background: #000; border: 2px inset #3a5488; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.desktop-only-embed { margin: 12px 0 18px; }
.project-embed-title {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1f2f6b;
}
.project-site-embed-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  background: #fff;
  border: 2px inset #3a5488;
  overflow: hidden;
}
.project-site-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ========== PROJECT IMAGE GRID - 4 PER ROW, LARGER IMAGES ========== */
.project-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
  width: 100%;
}
.project-image-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid #3a5488;
  cursor: pointer;
}
.window-content .project-image-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 20px !important;
  margin: 30px 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.window-content .project-image-grid img {
  width: 100% !important;
  height: 150px !important;
  object-fit: cover !important;
  border: 2px solid #3a5488 !important;
  cursor: pointer !important;
}
.project-image-grid img:hover { transform: scale(1.02); }
.project-title {
  display: block;
  text-align: left;
  font-family: 'Alagard', 'Brush Script MT', 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: #111;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
  margin: 0 0 12px 0;
  padding-top: 6px;
  padding-bottom: 4px;
  border-bottom: 0;
  animation: blogTitleFloat 3.2s ease-in-out infinite;
}
/* ========== ZOOM MODAL ========== */
#zoomModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 20000 !important;  /* Much higher than windows */
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#zoomModal img {
  max-width: 90vw;
  max-height: 85vh;
  cursor: grab;
  object-fit: contain;
}

#zoomCloseBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #c0c0c0;
  border: 2px outset white;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 20001 !important;
}

.zoom-close:hover {
 filter: brightness(1.15);
}
/* ========== WARNING POPUP ========== */
.warning-popup { font-family: 'Segoe UI', 'Tahoma', 'MS Sans Serif', sans-serif; }
.vintage-warning { background: #c0c0c0; border: 4px ridge #ffffff; border-right-color: #404040; border-bottom-color: #404040; padding: 24px; max-width: 520px; text-align: center; box-shadow: 12px 12px 0 rgba(0,0,0,0.3); }
/* ========== DESKTOP BUDDY ========== */
#desktopBuddy { position: absolute; width: 100px; height: 100px; cursor: grab; z-index: 1000; filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3)); }
.buddy-inner { width: 100%; height: 100%; background: url('Assets/gifs/desktop_buddy.gif') center/cover; border-radius: 12px; pointer-events: none; }
#buddyMessage { background: #ffffaa; border: 2px solid black; padding: 6px 12px; font-size: 12px; display: none; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-weight: bold; font-family: 'Comic Sans MS', cursive; border-radius: 8px; }
/* ========== RUNNING CAT ANIMATION ========== */
#runningCat { position: absolute; bottom: 45px; left: -120px; width: 96px; z-index: 90; pointer-events: none; }
/* ========== CAROUSEL CONTROLS ========== */
.carousel-controls { display: flex; justify-content: center; gap: 20px; padding: 8px; }
@media (max-width: 900px) { .project-image-grid { grid-template-columns: repeat(3, 1fr); } .project-image-grid img { height: 180px; } }
@media (max-width: 700px) { .project-image-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 780px) {
  .desktop-only-embed { display: none !important; }
}

.mobile-version * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; user-select: none; border-radius: 0px !important; }
.mobile-version body { background: #008080; font-family: 'Segoe UI', 'Tahoma', 'MS Sans Serif', sans-serif; height: 100vh; width: 100vw; overflow: hidden; position: fixed; }
.phone-shell { position: relative; width: 100%; height: 100%; background: #008080; overflow: hidden; display: flex; flex-direction: column; }
.status-bar { background: #c0c0c0; border-bottom: 2px solid #fff; color: black; padding: 12px 16px 8px; font-size: 14px; display: flex; justify-content: space-between; z-index: 20; font-family: monospace; font-weight: bold; }
#mobileClock { background: #000; color: #0f0; padding: 2px 8px; font-family: monospace; font-size: 13px; }
.mobile-status-marquee { background: #ffffcc; border: 2px solid #ffaa33; border-radius: 0; overflow: hidden; }
.mobile-status-marquee-header { display: flex; align-items: center; gap: 8px; background: #ffcc66; padding: 5px 8px; border-bottom: 2px solid #aa7733; }
.mobile-status-marquee-header img { width: 20px; height: 20px; }
.mobile-status-marquee-header span { font-family: 'Segoe UI', 'Tahoma', 'MS Sans Serif', sans-serif; font-size: 13px; font-weight: bold; color: #000; }
.status-marquee { display: inline-flex; align-items: center; width: max-content; animation: scrollStatus 10s linear infinite; will-change: transform; }
.status-marquee span { flex: none; white-space: nowrap; font-family: 'Segoe UI', 'Tahoma', 'MS Sans Serif', sans-serif; font-size: 14px; color: #000; }
@keyframes scrollStatus { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50%)); } }
.home-grid { flex: 1; overflow-y: auto; padding: 20px 16px 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 20px; align-content: flex-start; }
.app-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; padding: 12px 8px; background: transparent; }
.app-icon:active { background: rgba(0,0,0,0.1); transform: scale(0.96); }
.app-icon img { width: 70px; height: 70px; object-fit: contain; filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.3)); }
.app-icon span { color: white; text-shadow: 1px 1px 0 #000; font-size: 12px; font-weight: 500; text-align: center; max-width: 80px; }
.mobile-window { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #c0c0c0; z-index: 200; display: flex; flex-direction: column; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.2,0.9,0.4,1.1); overflow: hidden; font-family: 'Segoe UI', 'Tahoma', 'MS Sans Serif', sans-serif; }
.mobile-window.open { transform: translateY(0); }
.window-header { background: #000080; color: white; padding: 5px 8px; font-weight: bold; font-size: 14px; display: flex; justify-content: space-between; align-items: center; cursor: grab; }
.close-window { background: #c0c0c0; border: 1px solid #fff; border-right-color: #404040; border-bottom-color: #404040; width: 22px; height: 22px; font-weight: bold; font-size: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.window-content-scroll { flex: 1; overflow-y: auto; padding: 12px; background: #ece9d8; font-size: 12px; line-height: 1.5; }
.carousel-controls, .art-controls { display: flex; justify-content: center; gap: 24px; padding: 12px; background: #c0c0c0; border-top: 2px solid #fff; }
.carousel-controls button, .art-controls button { background: #c0c0c0; border: 2px outset #fff; border-right-color: #404040; border-bottom-color: #404040; padding: 8px 24px; font-weight: bold; cursor: pointer; font-size: 14px; }
.project-title {
  display: block;
  text-align: left;
  font-family: 'Alagard', 'Brush Script MT', 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: #111;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
  margin: 0 0 12px 0;
  padding-top: 6px;
  padding-bottom: 4px;
  border-bottom: 0;
  animation: blogTitleFloat 3.2s ease-in-out infinite;
}

.project-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin: 16px 0; }
.project-image-grid img { width: 100%; height: 130px; object-fit: cover; border: 2px solid #3a5488; cursor: pointer; }
.video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; margin: 16px 0; background: #000; overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.art-carousel-wrapper { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.art-carousel-main { flex: 1; background: #e0e0e0; border: 2px inset #fff; overflow: hidden; margin: 12px; min-height: 0; display: flex; align-items: center; }
.art-trackM { display: flex; transition: transform 0.3s ease; width: 100%; height: 100%; }
.art-slide { flex: 0 0 100%; display: flex; justify-content: center; align-items: center; background: #1a1a1a; height: 100%; }
.art-slide img { max-height: 100%; max-width: 100%; object-fit: contain; cursor: pointer; }
.projects-carousel-wrapper { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.portfolio-carousel-main { flex: 1; background: #e0e0e0; border: 2px inset #fff; overflow: hidden; margin: 12px; min-height: 0; }
.portfolio-carousel-track { display: flex; transition: transform 0.3s ease; width: 100%; height: 100%; }
.portfolio-slide { flex: 0 0 100%; overflow-y: auto; padding: 16px; height: 100%; }
.resume-section { margin-bottom: 20px; }
.resume-columns { display: block; gap: 18px; }
.resume-box { margin-bottom: 18px; }
.resume-box:last-child { margin-bottom: 0; }
.resume-section h3 { background: #c0c0c0; display: inline-block; padding: 4px 12px; margin-bottom: 10px; }
.video-player-container { background: #000; overflow: hidden; width: 100%; }
.video-main { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-main iframe { width: 100%; height: 100%; border: none; }
.video-controls { display: flex; justify-content: space-between; padding: 12px; background: #c0c0c0; align-items: center; }
.video-controls button { background: #c0c0c0; border: 2px outset #fff; border-right-color: #404040; border-bottom-color: #404040; padding: 8px 20px; font-weight: bold; cursor: pointer; }
.burger-menu { position: fixed; bottom: 50px; right: 20px; z-index: 150; }
.burger-btn { background: #000080; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 0 rgba(0,0,0,0.3); border: 2px solid #ffffffaa; cursor: pointer; }
.burger-btn span { color: white; font-size: 28px; font-weight: bold; }
.social-drawer { position: fixed; bottom: 90px; right: 20px; background: #c0c0c0; border: 3px ridge #ffffff; padding: 12px; display: flex; flex-direction: column; gap: 12px; z-index: 151; transform: scale(0); opacity: 0; transform-origin: bottom right; transition: 0.2s ease; pointer-events: none; }
.social-drawer.open { transform: scale(1); opacity: 1; pointer-events: auto; }
.social-link { display: flex; align-items: center; gap: 10px; background: #d4d0c8; padding: 8px 16px; text-decoration: none; color: black; font-weight: bold; border: 1px solid #fff; border-right-color: #404040; border-bottom-color: #404040; }
.social-link img { width: 28px; height: 28px; }
.warning-popup-mobile { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 300; display: none; justify-content: center; align-items: center; }
.vintage-warning-mobile { background: #c0c0c0; border: 4px ridge #ffffff; border-right-color: #404040; border-bottom-color: #404040; padding: 24px; max-width: 300px; text-align: center; }
.zoom-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 400; display: none; justify-content: center; align-items: center; flex-direction: column; }
.zoom-modal img { max-width: 90vw; max-height: 80vh; cursor: grab; }
.zoom-controls { position: fixed; bottom: 30px; left: 0; right: 0; display: flex; justify-content: center; gap: 20px; }
.art-full-height { display: flex; flex-direction: column; height: 100%; padding: 0 !important; }


/* ==================== INLINE STYLE MIGRATION (from index.html) ==================== */
.inline-style-001 { top:100px; left:300px; width:420px; height:520px; }
.inline-style-002 { text-align:center; margin-top:20px; }
.inline-style-003 { max-width:100%; max-height:180px; border:2px solid #3a5488; cursor:pointer; }
.inline-style-004 { font-size:11px; }
.inline-style-005 { top:120px; left:250px; width:450px; height:420px; }
.inline-style-006 { text-align:center; }
.inline-style-007 { top:120px; left:350px; width:400px; }
.inline-style-008 { top:100px; left:500px; width:520px; height:560px; }
.inline-style-009 { top:100px; left:350px; width:450px; height:540px; }
.inline-style-010 { background:#ffffdd; border:1px dashed #ff00d9; padding:10px; margin-top:24px; clear:both; }
.inline-style-011 { top:120px; left:220px; width:750px; height:550px; }
.inline-style-012 { padding:0; display:flex; flex-direction:column; }
.inline-style-013 { flex:1; display:flex; flex-direction:column; }
.inline-style-014 { flex:1; overflow:hidden; margin:8px; background:#e0e0e0; border:2px inset #fff; display:flex; align-items:center; }
.inline-style-015 { display:flex; transition:transform 0.3s ease; height:100%; width:100%; }
.inline-style-016 { flex:0 0 100%; display:flex; justify-content:center; align-items:center; }
.inline-style-017 { max-height:100%; max-width:100%; object-fit:contain; }
.inline-style-018 { display:flex; justify-content:center; gap:20px; margin:10px 0; }
.inline-style-019 { padding:5px 15px; cursor:pointer; }
.inline-style-020 { padding:5px 10px; }
.inline-style-021 { display:flex; gap:8px; overflow-x:auto; padding:8px; background:#f0f0f0; min-height:70px; }
.inline-style-022 { cursor:pointer; flex-shrink:0; width:60px; height:60px; border:2px solid transparent; border-radius:4px; overflow:hidden; }
.inline-style-023 { width:100%; height:100%; object-fit:cover; }
.inline-style-024 { top:80px; left:250px; width:850px; height:600px; }
.inline-style-025 { padding:0; display:flex; flex-direction:column; background:#000; }
.inline-style-026 { background:#ece9d8; padding:4px 12px; font-family:monospace; }
.inline-style-027 { top:100px; left:400px; width:750px; height:550px; }
.inline-style-028 { padding:0; overflow:hidden; display:flex; flex-direction:column; }
.inline-style-029 { width:100%; height:100%; border:none; flex:1; }
.inline-style-030 { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.85); z-index:10001; justify-content:center; align-items:center; }
.inline-style-031 { margin-top:20px; }
.inline-style-032 { top:60px; left:180px; width:950px; height:700px; }
.inline-style-033 { flex:1; overflow:hidden; background:#e0e0e0; margin:8px; border:2px inset #fff; }
.inline-style-034 { display:flex; transition:transform 0.3s ease; height:100%; }
.inline-style-035 { display:flex; gap:8px; overflow-x:auto; padding:8px; }
.inline-style-036 { cursor: grab; touch-action: pinch-zoom; }
.inline-style-037 { display:flex; transition:transform 0.3s ease; width:100%; height:100%; }
.inline-style-038 { cursor:grab; }
/* ==================== END INLINE STYLE MIGRATION ==================== */
