<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --color-black: #121212;
  --color-white: rgb(254,252,246);
  --color-orange: #ff6600;
  --font-sans: 'Ubuntu', sans-serif;
  --xmr-orange: #ff6600;
  --glass-bg: rgba(255,255,255, .14);
  --glass-border: rgba(255,255,255, .35);
}

html {
  scroll-behavior: smooth; 
}
[id] {
  scroll-margin-top: 70px;
}


@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/ubuntu-regular-webfont.woff2') format('woff2'),
       url('../assets/fonts/ubuntu-regular-webfont.woff')  format('woff');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/ubuntu-medium-webfont.woff2') format('woff2'),
       url('../assets/fonts/ubuntu-medium-webfont.woff')  format('woff');
}




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  inset-inline: 0;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  box-shadow: none;
  transition:
    background-color .5s ease,
    backdrop-filter .5s ease,
    -webkit-backdrop-filter .5s ease,
    box-shadow .5s ease;
  z-index: 999;
  will-change: backdrop-filter;
}

.site-header.scrolled {
  background-color: rgba(220, 220, 221, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2b2b;
  text-decoration: none;
}

.logo img {
  width: 170px;
  height: auto;
  margin-right: 10px;
  display: block;
}

.primary-logo img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
  padding: 6px 0;
}

nav a:hover {
  color: #ff6600;
}

.cta {
  background-color: #11111118;
  color: #111111;
  padding: 11px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.cta:hover {
  background-color: #11111120;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
  }
}

.full-height-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 1.5rem;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 0rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-height: 1100px) {
 .hero {
  padding: 4rem 1rem 2.5rem;
}
}

.hero-content {
  flex: 1 1 50%;
  padding-right: 0;
}

.hero-text-container {
  max-width: 500px;
  margin-bottom: 0;
}

.hero-title {
  font-size: 4.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1;
}

.hero-description {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: #444;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.btn-source {
  display: inline-block;
  background: none;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-source:hover {
  color: var(--color-orange);
}

.btn-download {
  display: inline-block;
  background-color: var(--color-orange);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 2px solid var(--color-orange);
}

.btn-download:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
}

.hero-image {
  flex: 1 1 70%;
  text-align: center;
}

@media (max-width: 1050px) {
  .hero-image {
  display: none;
  }
}



.hero-image img {
  width: 100%;
  margin-left: 15px;
  max-width: 100%;
  height: auto;
  border-radius: 1px;
aspect-ratio: 1280 / 720;
  display: block; 
  transition: transform 0.7s ease;
}


@media (min-width: 1400px) {
    .hero-image img {
  margin-left: 80px;
}
}


.hero-image img:hover {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .hero-text-container {
    margin: 0 auto 2rem;
  }
}

.features-wrapper {
  margin-top: 50px;
}

@media (max-height: 1100px) {
 .features-wrapper {
  margin-top: 0px;
}
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background-color: transparent;
  border-radius: 16px;
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  flex-wrap: wrap;
}

.feature:hover {
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.05);
}

.feature-icon {
  width: 170px;
  height: 170px;
  margin: 0 auto 0.5rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 102, 0, 0.3));
  transition: transform 0.4s ease;
}

.feature-icon img:hover {
  transform: scale(1.025);
}

.feature-title {
  font-size: 30px;
  color: #292b2b;
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-description {
  color: #424444;
  font-size: 18px;
  line-height: 1.4;
}

.about-section {
  padding: 0 20px;
}

.wrapper {
  max-width: 1200px;
  min-width: 700px;
  margin: 0 auto;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1 1 50%;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-black);
}

.about-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-orange);
  flex-shrink: 0;
}

.about-list span {
  font-size: 1rem;
  color: #333;
}

.about-media {
  flex: 1 1 50%;
  text-align: center;
}

.about-media img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .about-block {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text, .about-media {
    flex: 1 1 100%;
  }
  .about-list {
    align-items: center;
  }
}

.features-security {
  padding: 40px 20px 80px;
  position: relative;
}

.features-security .wrapper {
  max-width: 1200px;
  min-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--color-black);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-orange);
  border-radius: 2px;
}

.items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.item.visible {
  opacity: 1;
  transform: none;
}

.icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255,102,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.icon img {
  width: 28px;
  height: 28px;
}

.item:hover .icon {
  background: var(--color-orange);
}

.item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--color-orange);
}

.item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}

.divider {
  width: 2px;
  background: linear-gradient(to bottom, var(--color-orange), transparent 85%);
}

.features-col,
.security-col {
  background: linear-gradient(135deg, #fff8f0, #fffaf5);
}

@media (max-width: 1000px) {
  .features-security .wrapper {
    flex-direction: column;
    gap: 60px 0;
  }
  .divider {
    display: none;
  }
}

:root {
  --col-1-mt: 0px;
  --col-1-mb: 0px;
  --col-2-mt: 70px;
  --col-2-mb: 0px;
  --col-3-mt: -60px;
  --col-3-mb: 0px;
  --col-1-gap: 3rem;
  --col-2-gap: 3.8rem;
  --col-3-gap: 4.2rem;
}

.fwk-wave-top {
  width: 100%;
  background: rgba(16,19,19,0.97);
  position: relative;
  overflow: hidden;
  padding: 3.8rem 0 5rem;
  z-index: 1;
}

.fwk-wave-top svg {
  display: block;
  width: 100%;
  height: 130px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.fwk-features-bg {
  width: 100%;
  background: rgb(16,19,19);
  padding: 0.1rem 0 5rem;
  position: relative;
  z-index: 2;
}

.fwk-features-section {
  font-family: inherit;
  color: #fff;
  margin: 0 auto;
  padding: 0 0 2rem;
  max-width: 1200px;
}

.fwk-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.1rem 2rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 2rem;
  color: #fff;
  z-index: 10;
}

.fwk-header-text h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #acaaaa;
  letter-spacing: 3px;
}

.fwk-header-text h3 {
  margin: 0.25rem 0 0;
  font-size: 3.5rem;
  margin-left: 10px;
  opacity: 0.94;
  color: #e4e5e6;
}

.fwk-header-text p {
  margin: 0.25rem 0;
  color: #e4e5e6;
  opacity: 0.9;
}

.fwk-logo {
  width: 230px;
  opacity: 0.79;
  margin-right: 100px;
  justify-self: center;
}

.fwk-feature-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: start;
}

.fwk-column {
  display: flex;
  flex-direction: column;
}

.fwk-col-1 {
  margin-top: var(--col-1-mt);
  margin-bottom: var(--col-1-mb);
  gap: var(--col-1-gap);
}

.fwk-col-2 {
  margin-top: var(--col-2-mt);
  margin-bottom: var(--col-2-mb);
  gap: var(--col-2-gap);
}

.fwk-col-3 {
  margin-top: var(--col-3-mt);
  margin-bottom: var(--col-3-mb);
  gap: var(--col-3-gap);
}

.fwk-feature-item {
  display: flex;
  align-items: flex-start;
}

.fwk-feature-icon {
  width: 85px;
  height: 85px;
  margin-right: 1.2rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.fwk-feature-text h4 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
}

.fwk-feature-text p {
  margin: 0.25rem 0 0;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.4;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  font-family: "Ubuntu", sans-serif;
}

.downloads-alt {
  padding: 6rem 0;
  position: relative;
}

.downloads-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
}

.section-title {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
}

.platform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.platform:hover {
  transform: translateX(6px);
  box-shadow: 0 3px 35px rgba(0, 0, 0, 0.10);
}

.platform-icon i {
  font-size: 1.7rem;
}

.platform-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.platform-desc {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn.primary {
  background: var(--xmr-orange);
  color: #fff;
}

.btn.primary:hover {
  background: #ff7a26;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: #fff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.signature-tip {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}



.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.show {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 90%;
  width: 320px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}
.modal-ok {
  margin-top: 1rem;
}
.downloads-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
}
.build-whatsnew {
  display: flex;
  gap: 1.5rem;
  margin-top: 0;
}
.build-whatsnew .build-frame {
  flex: 2;
  min-width: 0;
}
.build-whatsnew .release-box {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .build-whatsnew {
    flex-direction: column;
  }
}
.release-box {
  padding: 2rem;
  margin-top: 100px;
}
.release-box h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
}
.changelog {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.changelog li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: -70px;
}
.stat {
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}
.stat .value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
.os-switcher {
  margin-left: auto;
  display: flex;
  gap: 0.35rem;
}
.os-btn {
  background-color: #11111118;
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem;
  padding: 0.5rem 1rem;
  font-size: 0.74rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
}
.os-btn:hover {
  background: rgba(255, 102, 0, 0.5);
  transform: translateY(-1px);
}
.os-btn.active {
  background: var(--xmr-orange);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.33);
}
.terminal-body {
  transition: opacity 0.25s ease;
}
#terminal-code {
  display: block;
  white-space: pre;
  transition: opacity 0.35s ease;
}
.build-frame {
  padding: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}
.terminal-header {
  display: flex;
  align-items: center;
  padding: 0.7rem 0.9rem;
  background: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.term-title {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: rgba(13, 13, 13, 0.8);
  opacity: 0.92;
  margin-left: 0.6rem;
  white-space: nowrap;
}
.term-title i {
  font-size: 0.95rem;
}
.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  display: none;
  margin-right: 0.4rem;
}
.red { background: #ff605c; }
.yellow { background: #ffbd44; }
.green { background: #00ca4e; }
.terminal-body {
  margin: 0;
  background: rgba(13, 13, 13, 0.8);
  color: #d6ffd8;
  padding: 1.2rem;
  font-family: Consolas, monospace;
  font-size: 0.82rem;
  min-height: 150px;
  overflow: hidden;
}
.links-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.link-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: #fff;
}
.link-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.link-btn i {
  margin-right: 0.45rem;
}
.version-highlight {
  color: var(--color-orange);
}
@media (max-width: 900px) {
  .downloads-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .downloads-left,
  .downloads-right {
    text-align: center;
    align-items: center;
  }
  .platform {
    justify-content: center;
  }
  .links-row {
    justify-content: center;
  }
}
.faq-dark {
  background: rgb(16,19,19);
  padding: 6rem 0 4.5rem;
  color: #e4e5e6;
}
.faq-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.faq-questions {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 360px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}
.faq-questions::after {
  content: "";
  position: absolute;
  top: 80%;
  left: calc(100% + 250px);
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  background: url("public/baner.webp") center / contain no-repeat;
  opacity: 0.5;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 900px) {
  .faq-questions::after { display: none; }
}
.question {
  cursor: pointer;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.question:hover { transform: translateX(4px); }
.question.active {
  background: rgba(255,255,255,0.12);
  border-color: var(--xmr-orange);
}
.num {
  font-family: monospace;
  color: var(--xmr-orange);
  font-weight: 700;
}
.faq-answers {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}
.answer {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0.5rem 0;
  transition: opacity .45s ease, visibility .45s ease;
}
.answer.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.answer h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: var(--xmr-orange);
}
.answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.answer a {
  color: var(--xmr-orange);
  text-decoration: underline;
}
.answer a:hover { opacity: .8; }
@media (max-width: 900px) {
  .faq-wrapper {
    flex-direction: column;
  }
  .faq-questions { width: 100%; flex-direction: row; overflow-x: auto; }
  .question { flex: 1 0 260px; }
}
.faq-pager {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0;
}
.pager-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  opacity: .55;
  transition: opacity .25s ease, transform .25s ease;
}
.pager-btn:hover:not([disabled]) { opacity: 1; }
.pager-btn.prev:hover:not([disabled]) { transform: translateX(-6px); }
.pager-btn.next:hover:not([disabled]) { transform: translateX(6px); }
.pager-btn[disabled] {
  opacity: .25;
  cursor: default;
}
.chevron {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.chevron::before,
.chevron::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #e4e5e6;
  top: 50%;
  left: 0;
  transform-origin: left center;
}
.pager-btn.prev .chevron::before { transform: rotate(45deg); }
.pager-btn.prev .chevron::after { transform: rotate(-45deg); }
.pager-btn.next .chevron::before,
.pager-btn.next .chevron::after {
  left: auto;
  right: 0;
  transform-origin: right center;
}
.pager-btn.next .chevron::before { transform: rotate(-45deg); }
.pager-btn.next .chevron::after { transform: rotate(45deg); }
.site-footer {
  background: rgb(16,19,19);
  color: #e4e5e6;
  font-size: 0.9rem;
  padding: 2.5rem 0 1.8rem;
  border-top: 3px solid #ffffff15;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  
  gap: 0.5rem;  
}
.footer-brand img {
  width: 45px;
  height: 45px;
}
.tagline {
  font-size: 0.82rem;
  opacity: 0.8;
  font-weight: 400;
  max-width: 220px;
}
.footer-nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-nav a:hover {
  color: var(--xmr-orange);
}
.footer-social {
  display: flex;
  gap: 1rem;
  font-size: 1.35rem;
}
.footer-social a {
  color: inherit;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
.privacy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.1rem;
  border-radius: 1rem;
  font-size: 0.78rem;
  color: #e4e5e6;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.privacy-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand,
  .footer-nav,
  .footer-social {
    align-items: center;
  }
  .footer-brand {
    flex-direction: row;
    gap: 0.75rem;
  }
  .tagline {
    max-width: none;
  }
}
</pre></body></html>