/* --- START OF FILE style.css --- */

:root {
  --bg-color: #fff;
  --text-color: #333;
  --text-color-light: #666;
  
  --sidebar-bg: #FAFAFA;
  --sidebar-border: #EAEAEA;
  --card-bg: #FFFFFF;
  --card-hover-bg: #F5F5F5;
  --card-selected-bg: #E9E9E9;

  --description-bg: #F0F0F0;
  --bento-item-bg: #f0f0f0;
  --datetime-bg: #000;
  --datetime-text: #FFF;

  --banner-height: 35px;
  --animation-duration: 0.3s;

  --glass-bg: rgba(255, 255, 255, 0.65); 
  --glass-border-color: rgba(0, 0, 0, 0.1);
  --glass-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  --glass-shadow-hover: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  
  --ios-card-bg: rgba(242, 242, 247, 0.8);
  --ios-card-border: rgba(0, 0, 0, 0.1);
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: #e0e0e0;
  --text-color-light: #9e9e9e;

  --sidebar-bg: #1A1A1A;
  --sidebar-border: #2C2C2C;
  --card-bg: #212121;
  --card-hover-bg: #2C2C2C;
  --card-selected-bg: #3A3A3A;

  --description-bg: #212121;
  --bento-item-bg: #2c2c2c;
  --datetime-bg: #2c2c2c;
  --datetime-text: #e0e0e0;
  
  --glass-bg: rgba(30, 30, 30, 0.5);
  --glass-border-color: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  --glass-shadow-hover: 0 8px 32px 0 rgba(0, 0, 0, 0.2);

  --ios-card-bg: rgba(44, 44, 46, 0.75);
  --ios-card-border: rgba(255, 255, 255, 0.1);
}

@font-face {
  font-family: 'ProductSans-Regular';
  src: url('../fonts/ProductSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  transition: background-color var(--animation-duration) ease, color var(--animation-duration) ease, border-color var(--animation-duration) ease;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body { 
  background: var(--bg-color); 
  color: var(--text-color); 
}

.main-wrapper { 
  display: flex; 
  padding-top: var(--banner-height); 
  box-sizing: content-box;
  min-height: 100%;
}

.sidebar {
  width: 360px; 
  padding: 10px; 
  border-right: 1px solid var(--sidebar-border); 
  background: var(--sidebar-bg);
  overflow-y: auto; 
  scrollbar-width: none; 
  -ms-overflow-style: none;
  transition: width 0.4s ease, padding 0.4s ease, transform 0.3s ease, background-color var(--animation-duration) ease, border-color 0.4s ease;
  flex-shrink: 0;
  position: sticky;
  top: var(--banner-height);
  height: calc(100vh - var(--banner-height));
}
body.sidebar-hidden .sidebar { width: 0; padding-left: 0; padding-right: 0; overflow: hidden; border-right-color: transparent; }
.sidebar::-webkit-scrollbar { display: none; }

.sidebar-header { display: none; }

.datetime-widget {
  background: var(--datetime-bg); color: var(--datetime-text); padding: 12px 16px; 
  border-radius: 8px;
  margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; white-space: nowrap;
}
.day-abbr, .time { font-size: 14px; font-weight: normal; color: var(--datetime-text); font-family: 'LED Counter 7', 'Courier New', monospace; }

.logo-container { margin-bottom: 20px; text-align: center; }
.logo-image { max-width: 100%; height: auto; max-height: 220px; border-radius: 8px; }

.info-card, .project-card {
  background: var(--card-bg); padding: 14px; 
  border-radius: 8px; 
  margin-bottom: 10px; cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: background-color var(--animation-duration) ease, box-shadow var(--animation-duration) ease, transform 0.2s ease;
  white-space: nowrap; border: 1px solid var(--sidebar-border);
}
.info-card:hover, .project-card:hover { background-color: var(--card-hover-bg); }
.info-card.selected, .project-card.selected { background-color: var(--card-selected-bg); }
body.dark-mode .info-card, body.dark-mode .project-card { box-shadow: none; border: 1px solid #2c2c2c; }

.info-header, .project-header { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-color-light); margin-bottom: 10px; }
.info-header a, .project-header a { color: var(--text-color-light); text-decoration: none; font-size: 12px; }
.info-card h3, .project-text h3 { margin: 0 0 4px 0; font-size: 15px; font-weight: 600; color: var(--text-color); }
.info-card p, .project-text p { margin: 0; font-size: 13px; color: var(--text-color-light); line-height: 1.4; }
.info-card p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; white-space: normal; }

.project-content { display: flex; align-items: center; }
.project-icon { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; margin-right: 14px; flex-shrink: 0; }
.project-text { min-width: 0; }

.placeholder-card {
  border: 1.5px dashed var(--sidebar-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: var(--text-color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.placeholder-icon {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}
.placeholder-card p {
  font-size: 13px;
  line-height: 1.5;
}

.content { 
  flex: 1; 
  padding: 0 8px 8px; 
  position: relative; 
}

.content-actions-header {
  height: 60px;
  margin-bottom: 8px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  position: sticky; 
  top: var(--banner-height);
  padding: 0 8px;
  z-index: 990; 
  pointer-events: none;
}
.content-actions-header > * { pointer-events: auto; }

.action-button, .settings-panel {
  background: var(--glass-bg); border: 1px solid var(--glass-border-color); box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px) saturate(100%); -webkit-backdrop-filter: blur(12px) saturate(100%);
  transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.action-button {
  height: 44px; padding: 0; width: 44px; border-radius: 22px; color: var(--text-color);
  cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.action-button:hover { transform: translateY(-2px); box-shadow: var(--glass-shadow-hover); }

.back-button { opacity: 0; transform: scale(0.9); pointer-events: none; transition: opacity var(--animation-duration) ease, transform var(--animation-duration) ease; }
.arrow-icon-wrapper { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease; }
.arrow-icon-wrapper svg { width: 20px; height: 20px; }
body.project-view-active .back-button { opacity: 1; transform: scale(1); pointer-events: auto; }
body.sidebar-hidden .arrow-icon-wrapper { transform: rotate(180deg); }
@media (min-width: 769px) { body.about-view .back-button { opacity: 0; transform: scale(0.9); pointer-events: none; } }

.settings-container { position: relative; }
.settings-toggle-btn { width: 44px; padding: 0; }
.settings-icon { width: 22px; height: 22px; transition: transform var(--animation-duration) ease; }
.settings-toggle-btn:hover .settings-icon { transform: rotate(90deg); }
body.dark-mode .settings-icon { filter: brightness(0) saturate(100%) invert(1); }
.settings-toggle-btn.open .settings-icon { transform: rotate(90deg); }

.settings-panel {
  position: absolute; top: calc(100% + 10px); right: 0; width: 200px; border-radius: 16px; padding: 8px;
  display: flex; flex-direction: column; gap: 5px; opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity var(--animation-duration) ease, transform var(--animation-duration) ease;
}
.settings-panel.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.settings-item {
  width: 100%; padding: 10px; background: transparent; border: none; border-radius: 8px; color: var(--text-color);
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none;
  transition: background-color 0.2s ease;
}
.settings-item:hover { background-color: rgba(0,0,0,0.08); }
body.dark-mode .settings-item:hover { background-color: rgba(255,255,255,0.1); }
.settings-item .fab-icon svg { width: 18px; height: 18px; }

#projectGrids { opacity: 1; transition: opacity var(--animation-duration) ease, transform var(--animation-duration) ease; }

/* --- GRIGLIA BENTO --- */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  gap: 8px;
}

@media (min-width: 769px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bento-item-bg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-item img, .bento-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

/* ================== NUOVI STILI PER IL LOADER ================== */
.loader {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--text-color);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  transition: opacity 0.3s ease;
}
body.dark-mode .loader {
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-bottom-color: var(--text-color);
}

/* Quando il contenuto è caricato, nascondi il loader */
.bento-item.loaded .loader {
  opacity: 0;
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* =============================================================== */

.m-span-1, .m-span-2 {
  grid-column: span 1;
}

@media (min-width: 769px) {
  .d-span-1 { grid-column: span 1; }
  .d-span-2 { grid-column: span 2; }
  .d-span-3 { grid-column: span 3; }
  .d-span-4 { grid-column: span 4; }
  .d-row-span-2 { grid-row: span 2; }
}
/* ------------------------------------------- */

.project-description { 
  margin-top: 20px; padding: 25px; margin-bottom: 20px; 
  background: var(--description-bg); 
  border-radius: 8px; 
  width: 100%; 
}
.project-description .description-header {
  padding-bottom: 25px; margin-bottom: 25px; border-bottom: 1px solid var(--sidebar-border);
}
.project-description .description-header h2 { font-size: 24px; font-weight: 600; margin: 0 0 5px 0; color: var(--text-color); }
.project-description .description-header p { font-size: 15px; color: var(--text-color-light); }
.project-description .description-body { display: flex; flex-direction: column; gap: 20px; }
.project-description .description-body > p { font-size: 14px; line-height: 1.5; color: var(--text-color-light); text-align: justify; }
.project-description .description-section { display: grid; grid-template-columns: 1fr; gap: 8px; }
.project-description .section-title { font-size: 13px; font-weight: 600; color: var(--text-color); opacity: 0.8; }
.project-description .section-text { font-size: 14px; line-height: 1.5; color: var(--text-color-light); text-align: justify; }
@media (min-width: 769px) {
  .project-description .description-section { grid-template-columns: 1fr 3fr; gap: 30px; }
  .project-description .section-title { 
    text-align: left;
  }
}

.next-project-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-decoration: none;
    border: 1px solid var(--sidebar-border);
    transition: background-color var(--animation-duration) ease, transform 0.2s ease;
}
.next-project-card:hover {
    background: var(--card-hover-bg);
    transform: translateY(-2px);
}
.next-project-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.next-project-label {
    font-size: 12px;
    color: var(--text-color-light);
    margin-bottom: 4px;
}

.next-project-arrow {
    width: 44px;
    height: 44px;
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.next-project-arrow svg {
    width: 20px;
    height: 20px;
}

.fade-in { animation: fadeInAnimation var(--animation-duration) ease-out forwards; }
.fade-out { animation: fadeOutAnimation var(--animation-duration) ease-in forwards; }
@keyframes fadeInAnimation { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOutAnimation { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-10px); } }

.contact-banner-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--animation-duration) ease;
}
.contact-panel {
  position: relative; width: 90%; max-width: 380px; padding: 25px; border-radius: 24px;
  display: flex; flex-direction: column; gap: 0; 
  transform: scale(0.95);
  transition: transform var(--animation-duration) ease;
  background: var(--glass-bg);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border-color);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15), inset 0 0 0 1.5px rgba(255,255,255,0.8);
}
body.dark-mode .contact-panel {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 0 1.5px rgba(255,255,255,0.1);
}
body.contact-banner-visible .contact-banner-overlay { opacity: 1; pointer-events: auto; }
body.contact-banner-visible .contact-panel { transform: scale(1); }
.contact-close-btn {
  position: absolute; top: 15px; right: 15px; width: 32px; height: 32px;
  background: rgba(0,0,0,0.08); border: none; border-radius: 50%;
  color: var(--text-color); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-close-btn:hover { background: rgba(0,0,0,0.15); transform: rotate(90deg); }
.contact-close-btn svg { width: 16px; height: 16px; }
body.dark-mode .contact-close-btn { background: rgba(255,255,255,0.1); }
body.dark-mode .contact-close-btn:hover { background: rgba(255,255,255,0.2); }
.contact-button {
  display: flex; align-items: center; gap: 15px; padding: 16px; border-radius: 0;
  text-decoration: none; font-weight: 500; font-size: 16px; color: var(--text-color);
  background: transparent; transition: background-color 0.2s ease;
}
.contact-button:hover { background-color: rgba(0,0,0,0.08); }
body.dark-mode .contact-button:hover { background-color: rgba(255,255,255,0.1); }

.fab-info-btn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  cursor: pointer;
  z-index: 1000;
  color: var(--text-color);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-color);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s ease;
}
.fab-info-btn:active { transform: scale(0.95); }
.fab-info-btn svg { width: 24px; height: 24px; }

.project-info-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 2500;
  display: flex;
  align-items: flex-end; 
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--animation-duration) ease;
}
.project-info-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.project-info-card {
  background: var(--ios-card-bg);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  width: 100%;
  max-height: 75vh;
  border-top: 1px solid var(--ios-card-border);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-info-overlay.visible .project-info-card {
  transform: translateY(0);
}

.info-card-header {
  flex-shrink: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ios-card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#info-card-title-container h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 2px;
}
#info-card-title-container p {
  font-size: 14px;
  color: var(--text-color-light);
  margin: 0;
}
.info-close-btn {
  height: 32px;
  width: 32px;
  border-radius: 16px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.1);
  border: none;
  color: var(--text-color-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dark-mode .info-close-btn {
  background: rgba(255,255,255,0.15);
}
.info-close-btn svg { width: 14px; height: 14px; }

.info-scroll-wrapper {
  overflow-y: auto;
  padding-left: 20px;
}
.info-scroll-wrapper .description-body {
  padding: 20px 16px 20px 0; 
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-scroll-wrapper::-webkit-scrollbar { width: 4px; }
.info-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 4px;
}
body.dark-mode .info-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.2);
}

.info-scroll-wrapper .description-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-scroll-wrapper .section-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-scroll-wrapper .section-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}
#settings-container-mobile { display: none; }

@media (min-width: 769px) {
    .next-project-card {
        display: none !important;
    }
}

@media (max-width: 768px) {
  html { height: -webkit-fill-available; }
  body { 
    height: 100vh; 
    height: -webkit-fill-available;
  }

  .main-wrapper { 
    height: 100%; 
    padding-top: var(--banner-height); 
    box-sizing: border-box;
    display: block; 
    position: relative;
    overflow-x: hidden;
  }

  .action-button, .settings-panel, .fab-info-btn {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: var(--card-bg);
    border: 1px solid var(--sidebar-border);
  }
  .project-info-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--sidebar-bg);
  }
  
  .contact-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--sidebar-bg);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--sidebar-border);
    padding: 0;
    overflow: hidden;
  }
  body.dark-mode .contact-panel {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  }
  .contact-button {
    border-top: 1px solid var(--sidebar-border);
    padding-left: 25px;
    padding-right: 25px;
  }
  .contact-button:first-of-type {
    border-top: none;
  }
  .contact-panel .contact-close-btn {
      top: 10px; right: 10px;
  }

  .sidebar { 
    position: static; 
    height: 100%;
    overflow-y: auto; 
    width: 100% !important; 
    border-right: none; 
    transition: transform 0.3s ease, visibility 0.3s;
    transform: translateX(0); 
    visibility: visible;
    -webkit-overflow-scrolling: touch;
    padding: 15px 8px 100px 8px !important;
    will-change: transform;
  }
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  .sidebar-header .datetime-widget {
    flex-grow: 1;
    margin-bottom: 0;
  }
  #settings-container-mobile { display: block; }
  #settings-container-desktop { display: none; }
  
  .content { 
    display: block; 
    position: absolute; 
    top: 0;
    left: 0; 
    width: 100%; 
    height: 100%;
    padding: 0 8px 25px 8px;
    z-index: 100; 
    background: var(--bg-color);
    overflow-y: auto;
    transform: translateX(100%); 
    transition: transform 0.4s ease, visibility 0.4s; 
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }
  
  .content-actions-header {
    position: sticky;
    top: 0;
    margin-bottom: 8px;
    padding: 8px 0;
    height: auto;
    background: var(--bg-color);
  }
  
  body.mobile-project-view .sidebar { transform: translateX(-100%); visibility: hidden; }
  body.mobile-project-view .content { transform: translateX(0); visibility: visible; }
  
  .project-card.selected { background-color: var(--card-bg); }
  .project-card:active, .info-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .project-description { display: none; }
  
  body.mobile-project-view .fab-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bento-grid {
    gap: 8px; 
  }

  .bento-item {
    border-radius: 8px; 
    height: auto; 
    background: var(--bento-item-bg); 
  }

  .bento-item img, .bento-item video {
    width: 100%; 
    height: auto; 
    object-fit: initial; 
    display: block; 
  }

  .next-project-card {
    margin: 0; 
  }
  
  body.mobile-project-view .contact-marquee-banner {
    display: none;
  }
  body.mobile-project-view .main-wrapper {
    padding-top: 0;
  }
}

:is(a, button, .project-card, .info-card):focus-visible {
  outline: none; box-shadow: 0 0 0 3px var(--bg-color), 0 0 0 5px var(--text-color);
  transition: box-shadow 0.2s ease;
}

.contact-marquee-banner { background: #000; color: #fff; height: var(--banner-height); position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; overflow: hidden; display: flex; align-items: center; cursor: pointer; }
.marquee-text { display: inline-block; white-space: nowrap; animation: marqueeAnimation 25s linear infinite; will-change: transform; }
.marquee-text span { 
  font-size: 14px; font-weight: normal; padding: 0 1em; text-transform: uppercase; 
  font-family: 'LED Counter 7', 'Courier New', monospace; 
}
@keyframes marqueeAnimation { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- STILI MIGLIORATI: Sezione "Lavori in Corso" --- */
.wip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  margin: 8px 0;
  border-radius: 8px;
  color: var(--text-color-light);
  box-sizing: border-box;
  border: 1.5px dashed var(--sidebar-border);
}

.wip-gif {
  max-width: 150px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.wip-container h2 {
  font-size: 22px;
  color: var(--text-color);
  margin-bottom: 8px;
}

.wip-container p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 24px;
}

.wip-actions {
  margin-top: 16px;
}

.wip-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgba(0,0,0,0.05);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.wip-button:hover {
  background-color: rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
body.dark-mode .wip-button {
  background-color: rgba(255,255,255,0.1);
}
body.dark-mode .wip-button:hover {
  background-color: rgba(255,255,255,0.15);
}