body {
  background: #0a3d62;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 80px;
}

.sec2 > .qualite, .top {
  animation: revealing;
  animation-timeline: view(block);
  animation-range: cover 0% cover 50%;
  margin: 0px;
}

@keyframes revealing {
  from {
    color: gray;
    margin-left: 100vw;
    filter: blur(50px);
    opacity: 0.5;
  }
  to {
    margin: 0px;
    filter: blur(0px);
    opacity: 1;
  }
}


/* Carées 3D */
.ploader {
  margin: 12%;
}

.loader {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  transform: rotateX(35deg) rotateZ(345deg);
  animation: animate 4s linear infinite;
}

@keyframes animate {
  0% {
    transform: rotateX(35deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateZ(360deg);
  }
}

.loarder span {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px);
  transition: 2.5s;
}

.loader i {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: 2.5s;
}

.loader i::before {
  content: '';
  position: absolute;
  inset: 15px;
  background: linear-gradient(45deg, #00bcd4, #ff0057);
  transform: translateZ(-90px);
}

.loader i::after {
  content: '';
  position: absolute;
  inset: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  transform: translateZ(90px);
}

.loader:hover i,
.loader:hover span {
  transform: rotateX(360deg);
}


/* warning pour mobile */
#mobile-warning {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #222f3e;
  border: 1.5px solid rgba(130, 204, 221, 0.27);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  width: min(300px, 88vw);
  text-align: center;
  font-family: sans-serif;
}

.modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a252f;
  border: 1.5px solid #82ccdd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 22px;
  color: #82ccdd;
  font-weight: bold;
}

.modal-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #82ccdd;
}

.modal-body {
  font-size: 14px;
  color: rgba(130, 204, 221, 0.73);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.modal-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(130, 204, 221, 0.4);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #82ccdd;
}

.modal-btn:hover {
  background: rgba(130, 204, 221, 0.08);
}


/* PORTFOLIO 3D */
.pfd span {
  position: absolute;
  left: 70%;
  top: 45%;
  transform: translate(-50%, -50%);
  display: block;
  color: #ff0057;
  font-size: 124px;
  letter-spacing: 8px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 700;
}

.pfd span::before {
  content: "PORTFOLIO  DENEL";
  position: absolute;
  color: transparent;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 2px,
    white 2px,
    white 4px
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0px;
  left: 0;
  z-index: -1;
  transition: 1s;
}

.pfd span::after {
  content: "PORTFOLIO  DENEL";
  position: absolute;
  color: transparent;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 2px,
    white 2px,
    white 4px
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0px;
  left: 0px;
  transition: 1s;
}

.pfd span:hover:before {
  top: 10px;
  left: 10px;
}

.pfd span:hover:after {
  top: -10px;
  left: -10px;
}


/* bienvenue... */
.top h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin: 10px 0;
  color: #82ccdd;
}

.top h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #82ccdd;
  margin-bottom: -10px;
}

.top p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #82ccdd;
  margin-top: 0px;
}

.top {
  padding-top: 210px;
  padding-left: 80px;
  flex: 1;
}

#text strong::after {
  content: "|";
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* tout en bas */
.contact-box {
  display: flex;
  gap: 40px;
  background-color: #0a3d62;
  color: #82ccdd;
  font-family: 'Montserrat', sans-serif;
  padding: 20px;
  margin-top: 100px;
}

.contact-section {
  text-align: center;
}

.contact-section strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-section span {
  font-size: 14px;
}

.vertical-line {
  height: 40px;
  width: 1px;
  background-color: #82ccdd;
}


.contact-link {
  color: #82ccdd;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}

.contact-link:hover {
  color: #ffffff;
}


.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}


.form-wrapper {
  position: relative;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  background-color: #0a3d62;
  color: #82ccdd;
  font-family: 'Montserrat', sans-serif;
  border-radius: 8px;
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: #ffffff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  background-color: #0d4f7c;
  border: 1px solid #82ccdd;
  color: #ffffff;
  padding: 10px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5a9ab5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffffff;
}

.form-wrapper button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #82ccdd;
  color: #0a3d62;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-wrapper button[type="submit"]:hover {
  background-color: #ffffff;
}


.btn-fermer {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #82ccdd;
  font-size: 20px;
  cursor: pointer;
}

.btn-fermer:hover {
  color: #ffffff;
}

.confirmation-box {
  text-align: center;
  max-width: 380px;
}

.confirmation-box p {
  font-size: 15px;
  margin-bottom: 24px;
  color: #82ccdd;
}

.confirmation-box button {
  width: 100%;
  padding: 12px;
  background-color: #82ccdd;
  color: #0a3d62;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.confirmation-box button:hover {
  background-color: #ffffff;
}


/* tableau qualité */
.qualite {
  background-color: #1e3799;
  color: #82ccdd;
  padding: 30px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.3s, background-color 0.3s ease;
}

.qualite:hover {
  background-color: #6a89cc;
  transform: scale(1.2);
}

.qualite h1 {
  margin-top: 0;
}

.qualite ul {
  list-style-type: disc;
  padding-left: 20px;
}


/* button projet */
.button {
  background-color: #1e3799;
  color: #82ccdd;
  padding: 15px;
  width: 110px;
  border-radius: 18px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.3s, background-color 0.3s ease;
}

.button a {
  font-family: 'Montserrat', sans-serif;
  color: #82ccdd;
  text-decoration: none;
}

.button:hover {
  background-color: #6a89cc;
  transform: scale(1.1);
}

a {
  text-decoration: none;
  color: #82ccdd;
}


/* tableau bio */
.bio {
  border-radius: 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
  background-color: #1e3799;
  color: #82ccdd;
  width: 500px;
  max-width: 100%;
  height: auto;
  padding: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 250px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.bio h1 {
  margin-top: 0;
}

.exit-fullscreen {
  background-color: #b71540;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  display: flex;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exit-fullscreen:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.exit-fullscreen::before,
.exit-fullscreen::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 6px;
  background-color: #82d5dd;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.exit-fullscreen::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bio p {
  font-size: 30px;
}

.clb {
  position: relative;
  left: 500px;
  animation: clickPulse 2s infinite;
  transform-origin: center;
}

@keyframes clickPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.basp {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
}

.basp.zoom-active {
  animation: zoomIn 0.6s ease-out forwards;
  opacity: 1;
  transform: scale(1);
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bio-modal-wrapper {
  position: relative;
  width: min(900px, 92vw); 
  max-height: 90vh;        
  overflow-y: auto;
  padding: 60px 80px;      
  background: linear-gradient(135deg, #0c2461, #1e3799);
  border: 1px solid rgba(130, 204, 221, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  font-family: 'Montserrat', sans-serif;
  color: #82ccdd;
  text-align: center;
  animation: modalAppear 0.35s ease-out;
}

@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.85) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.bio-modal-wrapper h2 {
  font-size: 2.4rem;    
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 35px;
  letter-spacing: 2px;
}

.bio-tag {
  display: inline-block;
  background: rgba(130, 204, 221, 0.15);
  border: 1px solid rgba(130, 204, 221, 0.4);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #82ccdd;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.bio-modal-content p {
  font-size: 1.15rem;   
  line-height: 2;       
  color: rgba(130, 204, 221, 0.85);
  margin-bottom: 24px;
}

.bio-modal-content p:last-child {
  margin-bottom: 0;
}



/* toggle light and dark... */
#theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 24px;
  background: #1e3799;
  color: #82ccdd;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.4);
  transition: background 0.3s, transform 0.2s;
}
#theme-toggle:hover {
  background: #6a89cc;
  transform: scale(1.05);
}


body.light-mode {
  background: #2d3436;
  color: #ffffff;
}

.light-mode .qualite,
.light-mode .bio {
  background-color: #636e72 !important;
  color: white !important;
  border-color: #2d3436;
}


.light-mode .competences,
.light-mode .contact-box {
  background-color: #2d3436 !important;
  color: #2d3436 !important;
  border-color: #2d3436;
}

.light-mode .button {
  background-color: #636e72;
}


.light-mode .vertical-line {
  background-color: white !important;
  border-color: white !important;
}

.light-mode .qualite:hover,
.light-mode .button:hover {
  background-color: #b2bec3 !important;
  color: white;
  transform: scale(1.1);
}

.light-mode .exit-fullscreen::before,
.light-mode .exit-fullscreen::after {
  background-color: #2d3436;
}

.light-mode .top h1,
.light-mode .top h2,
.light-mode .top p,
.light-mode .contact-box,
.light-mode .contact-section strong,
.light-mode .contact-section span,
.light-mode a {
  color: white !important;
}

.light-mode #theme-toggle {
  background-color: #636e72;
  color: #2d3436;
  border: 1px solid #2d3436;
}

.light-mode #theme-toggle:hover {
  background-color: #b2bec3;
  color: white;
}

.light-mode .pfd
.light-mode .pfd span {
  background-color: transparent !important;
}


/* easter egg  / konami code */
@keyframes glitch {
  0% { transform: skew(0deg); }
  20% { transform: skew(5deg); }
  40% { transform: skew(-5deg); }
  60% { transform: translateX(5px); }
  80% { transform: translateX(-5px); }
  100% { transform: skew(0deg); }
}

.glitch {
  animation: glitch 0.2s infinite;
  color: red !important;
  text-shadow: 2px 0 blue, -2px 0 lime;
}

.glitch-intense {
  animation: glitch 0.1s infinite;
  filter: invert(1) hue-rotate(90deg) contrast(2);
  transform: scale(1.05) rotate(1deg);
}


/* loading screen */
#loading-screen {
  position: fixed;
  inset: 0;
  background: #222f3e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.6s ease-in-out;
}

.loading-content {
  text-align: center;
  transform: scale(1);
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.loading-text {
  font-size: 2rem;
  color: #82ccdd;
  margin-bottom: 20px;
  animation: fadeIn 1s forwards;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600px;
}

.dot.flash {
  animation: blink 1s infinite;
}

.dot.flash:nth-of-type(2) { animation-delay: 0.2s; }
.dot.flash:nth-of-type(3) { animation-delay: 0.6s; }

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #333;
  border-top: 6px solid #82ccdd;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#main-content {
  display: none;
  padding: 2rem;
  background: white;
}


/* info+ */
.codeinfo {
  display: flex;
  justify-content: center;
  flex-direction: column; 
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

.indice {
  font-family: 'Monserrat', sans-serif;
  font-style: italic;
  font-size: 10px;
}

input[type="password"] {
  padding: 10px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  background-color: #0c2461;
  color: #82ccdd;
  text-align: center;
  width: 120px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0px 5px 10px;
}

input[type="password"]::placeholder {
  color: #82ccdd;  
}

.btn-secret {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #82ccdd;
  color: #1e3799;
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

#infosCachees {
  display: none;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #82ccdd;
  background-color: #0c2461;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif; 
}

.dashboard-section {
  width: 100%;
  max-width: 900px;
  margin: 8rem auto 2rem;  /* <-- grand écart */
  padding: 0 1.5rem;
  font-family: 'Montserrat', sans-serif;
}
.dashboard-section h2.dash-heading {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-color, #111);
  margin-bottom: 1.5rem;
  opacity: .7;
}
    .dash-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
      margin-bottom: 1.5rem;
    }
    .dash-stat {
      background: var(--card-bg, rgba(0,0,0,.05));
      border-radius: 12px;
      padding: 1rem 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .dash-stat-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-muted, #666);
    }
    .dash-stat-value {
      font-size: 26px;
      font-weight: 900;
      color: var(--text-color, #111);
      line-height: 1;
    }
    .dash-stat-sub {
      font-size: 11px;
      color: var(--text-muted, #888);
    }
    .dash-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }


/* téléphone */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .top {
    padding-top: 60px;
    padding-left: 0;
    text-align: center;
  }

  .qualite {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .bio {
    width: 90%;
    height: auto;
    margin-top: 100px;
    padding: 20px;
    overflow-x: scroll;
  }

  .contact-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .pfd span {
    font-size: 48px;
    left: 50%;
    top: 30%;
    text-align: center;
    transform: translate(-50%, -50%);
    letter-spacing: 4px;
  }

  .loader {
    width: 200px;
    height: 200px;
  }

  .button {
    margin: 0 auto;
    text-align: center;
  }

  .clb {
    left: auto;
    display: block;
    margin: 0 auto;
  }
}

/* PC portable (1024px à 1600px) */
@media screen and (min-width: 1024px) and (max-width: 1600px) {
  .main {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .top {
    padding-top: 60px;
    padding-left: 0;
    text-align: center;
  }

  .qualite {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .bio {
    width: 90%;
    height: auto;
    margin-top: 100px;
    padding: 20px;
    overflow-x: scroll;
  }

  .contact-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .pfd span {
    font-size: 48px;
    left: 50%;
    top: 30%;
    text-align: center;
    transform: translate(-50%, -50%);
    letter-spacing: 4px;
  }

  .loader {
    width: 200px;
    height: 200px;
  }

  .button {
    margin: 0 auto;
    text-align: center;
  }

  .clb {
    left: auto;
    display: block;
    margin: 0 auto;
  }
}
  
    @media (prefers-color-scheme: dark) {
      .dashboard-section { --text-color: #f0f0f0; --text-muted: #999; --card-bg: rgba(255,255,255,.06); --border-color: rgba(255,255,255,.08); }
    }
    body.dark .dashboard-section { --text-color: #f0f0f0; --text-muted: #999; --card-bg: rgba(255,255,255,.06); --border-color: rgba(255,255,255,.08); }

    @media (max-width: 600px) { .dash-grid { grid-template-columns: 1fr; } }
    .dash-card {
      background: var(--card-bg, rgba(0,0,0,.04));
      border: 1px solid var(--border-color, rgba(0,0,0,.08));
      border-radius: 14px;
      padding: 1.1rem 1.3rem;
    }
    .dash-card-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted, #888);
      margin-bottom: 1rem;
    }

    
    .skill-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .skill-name {
      font-size: 12px;
      font-weight: 600;
      width: 75px;
      flex-shrink: 0;
      color: var(--text-color, #111);
    }
    .skill-track {
      flex: 1;
      height: 5px;
      background: var(--border-color, rgba(0,0,0,.1));
      border-radius: 99px;
      overflow: hidden;
    }
    .skill-fill {
      height: 100%;
      border-radius: 99px;
      width: 0;
      transition: width 1s cubic-bezier(.4,0,.2,1);
    }
    .skill-pct {
      font-size: 11px;
      font-weight: 700;
      width: 30px;
      text-align: right;
      color: var(--text-muted, #888);
    }


    .proj-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 0;
      border-bottom: 1px solid var(--border-color, rgba(0,0,0,.07));
    }
    .proj-row:last-child { border-bottom: none; }
    .proj-ico {
      width: 30px; height: 30px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; flex-shrink: 0;
    }
    .proj-info { flex: 1; }
    .proj-name { font-size: 13px; font-weight: 700; color: var(--text-color, #111); }
    .proj-tech { font-size: 11px; color: var(--text-muted, #888); }
    .proj-badge {
      font-size: 10px; font-weight: 700;
      padding: 3px 9px; border-radius: 99px;
    }
    .badge-live { background: #d4f7e2; color: #1a6e3c; }
    .badge-wip  { background: #fef3cd; color: #7a5800; }


    .act-row {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 12px; padding: 7px 0;
      border-bottom: 1px solid var(--border-color, rgba(0,0,0,.07));
      color: var(--text-color, #111);
    }
    .act-row:last-child { border-bottom: none; }
    .act-dot {
      width: 7px; height: 7px; border-radius: 50%;
      margin-top: 4px; flex-shrink: 0;
    }
    .act-time { font-size: 10px; color: var(--text-muted, #888); margin-left: auto; white-space: nowrap; }
