.updates-page { width: min(900px, calc(100% - 40px)); padding: 82px 0 60px; margin: 0 auto; }
.updates-hero { max-width: 700px; margin: 0 auto 78px; text-align: center; }
.updates-label { color: #76ff99; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.updates-hero h1 { margin: 18px 0 20px; font: 800 clamp(38px, 6vw, 64px)/1.1 Unbounded, sans-serif; letter-spacing: -3px; background: linear-gradient(105deg, #effff3, #9bffb4 48%, #41dd70); background-clip: text; -webkit-background-clip: text; color: transparent; }
.updates-hero p { margin: 0; color: #afc1b4; font-size: 16px; line-height: 1.7; }

.updates-timeline { position: relative; display: grid; gap: 52px; padding-left: 42px; }
.updates-timeline::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 2px; background: linear-gradient(180deg, rgba(114, 255, 150, .5), rgba(114, 255, 150, .15) 40%, rgba(114, 255, 150, .05)); border-radius: 2px; }

.update-entry { position: relative; display: grid; gap: 16px; animation: updateFadeIn .6s ease backwards; }
.update-entry::before { content: ""; position: absolute; left: -50px; top: 12px; width: 18px; height: 18px; border: 3px solid #72ff96; border-radius: 50%; background: #020b06; box-shadow: 0 0 0 6px rgba(114, 255, 150, .15), 0 0 22px rgba(114, 255, 150, .4); z-index: 1; }

.update-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.update-version { color: #effff2; font: 700 clamp(24px, 3vw, 32px)/1.2 Unbounded, sans-serif; letter-spacing: -1.5px; }
.update-date { color: #8fa898; font-size: 13px; font-weight: 700; letter-spacing: .06em; }

.update-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.update-tag { display: inline-block; padding: 6px 11px; border-radius: 7px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.update-tag.tag-feature { border: 1px solid rgba(114, 255, 150, .35); background: rgba(114, 255, 150, .12); color: #9dffb5; }
.update-tag.tag-fix { border: 1px solid rgba(255, 176, 114, .35); background: rgba(255, 176, 114, .12); color: #ffcd9d; }
.update-tag.tag-optimization { border: 1px solid rgba(138, 176, 255, .35); background: rgba(138, 176, 255, .12); color: #b4cdff; }
.update-tag.tag-change { border: 1px solid rgba(255, 138, 255, .35); background: rgba(255, 138, 255, .12); color: #ffb4ff; }

.update-content { display: grid; gap: 16px; padding: 28px; border: 1px solid rgba(142, 255, 169, .17); border-radius: 17px; background: rgba(4, 30, 13, .44); box-shadow: inset 0 1px 0 rgba(229, 255, 235, .04); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.update-content:hover { border-color: rgba(131, 255, 162, .35); background: rgba(14, 69, 30, .38); transform: translateX(8px); }

.update-section { display: grid; gap: 10px; }
.update-section-title { margin: 0; color: #effff2; font: 700 17px/1.3 Unbounded, sans-serif; letter-spacing: -.8px; display: flex; align-items: center; gap: 9px; }
.update-section-title::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.update-list { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.update-list li { position: relative; padding-left: 18px; color: #aabcae; font-size: 14px; line-height: 1.68; }
.update-list li::before { content: "→"; position: absolute; left: 0; color: #70ff94; font-weight: 700; }
.update-list li strong { color: #dfffe6; font-weight: 700; }
.update-list li code { padding: 2px 6px; border: 1px solid rgba(142, 255, 169, .18); border-radius: 5px; background: rgba(3, 23, 10, .6); color: #a9ffbd; font: 600 .88em/1.4 monospace; }

.update-highlight { padding: 15px 18px; margin-top: 8px; border-left: 3px solid #74ff99; border-radius: 8px; background: rgba(73, 202, 98, .12); color: #d0f9d8; font-size: 14px; font-weight: 600; line-height: 1.6; }

.update-image { display: block; width: 100%; max-width: 520px; margin-top: 16px; border: 1px solid rgba(142, 255, 169, .16); border-radius: 12px; overflow: hidden; box-shadow: 0 18px 50px rgba(0, 0, 0, .24); }
.update-image img { display: block; width: 100%; height: auto; }

.no-updates { padding: 60px 20px; text-align: center; color: #8fa898; font-size: 15px; border: 1px solid rgba(142, 255, 169, .12); border-radius: 17px; background: rgba(4, 30, 13, .28); }

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

.update-entry:nth-child(1) { animation-delay: .05s; }
.update-entry:nth-child(2) { animation-delay: .1s; }
.update-entry:nth-child(3) { animation-delay: .15s; }
.update-entry:nth-child(4) { animation-delay: .2s; }
.update-entry:nth-child(5) { animation-delay: .25s; }

@media (max-width: 780px) { .updates-page { width: min(100% - 28px, 560px); padding: 56px 0 42px; }
  .updates-hero { margin-bottom: 56px; }
  .updates-hero h1 { font-size: 37px; letter-spacing: -2px; }
  .updates-hero p { font-size: 15px; }
  .updates-timeline { gap: 42px; padding-left: 32px; }
  .updates-timeline::before { left: -2px; }
  .update-entry::before { left: -42px; width: 14px; height: 14px; border-width: 2px; }
  .update-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .update-version { font-size: 23px; }
  .update-date { font-size: 12px; }
  .update-content { padding: 22px 20px; }
  .update-content:hover { transform: translateX(4px); }
  .update-section-title { font-size: 16px; }
  .update-list li { font-size: 13px; padding-left: 16px; } }

@media (prefers-reduced-motion: reduce) { .update-entry { animation: none; }
  .update-content:hover { transform: none; } }


.site-footer { padding: 28px 20px 36px; border-top: 1px solid rgba(142, 255, 169, .09); color: #6f8b77; font: 700 10px/1 Unbounded, sans-serif; letter-spacing: .16em; text-align: center; }
