@charset "UTF-8";

/* ============================================
   xhmbbs专用主题
   Typecho Theme
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---- CSS Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "JetBrains Mono", "Courier New", ui-monospace, monospace;
  background-color: #111111;
  color: #e8e8e8;
  font-size: 13px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
  background-color: rgba(255, 102, 0, 0.35);
  color: #e8e8e8;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #111111;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
}
::-webkit-scrollbar-thumb:hover {
  background: #444444;
}

/* ---- Links ---- */
a {
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: #ff6600;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: #e8e8e8;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 1rem; }
h5, h6 { font-size: 0.9rem; }

p {
  margin-bottom: 1em;
  color: #888888;
}

/* ---- HUD Status Bars ---- */
.hud-bar {
  position: fixed;
  left: 0;
  right: 0;
  height: 32px;
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: #2a2a2a;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 900;
  font-size: 10px;
  color: #444444;
  white-space: nowrap;
}

.hud-top {
  top: 0;
  border-bottom-width: 1px;
}

.hud-bottom {
  bottom: 0;
  border-top-width: 1px;
}

.hud-left,
.hud-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-separator {
  color: #2a2a2a;
}

.hud-system-name {
  color: #ff6600;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Online indicator pulse */
.hud-indicator {
  width: 6px;
  height: 6px;
  background-color: #ff6600;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Right Vertical Navigation ---- */
.side-nav {
  position: fixed;
  right: 0;
  top: 32px;
  bottom: 32px;
  width: 64px;
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-left: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 800;
}

.side-nav a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #444444;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.side-nav a:hover {
  color: #888888;
}

.side-nav a.active {
  color: #ff6600;
}

.side-nav a.active::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ff6600;
}

/* ---- Scanline Overlay ---- */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  background-size: 100% 4px;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}

/* ---- Main Content Area ---- */
.main-content {
  padding-top: 48px;
  padding-bottom: 64px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1024px;
  margin: 0 auto;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.main-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Panel / Card ---- */
.panel {
  border: 1px solid #2a2a2a;
  background-color: #111111;
}

.panel-header {
  padding: 8px 16px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 10px;
  color: #444444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-body {
  padding: 24px;
}

/* ---- Article / Post List ---- */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-item {
  border: 1px solid #2a2a2a;
  background-color: #111111;
  padding: 24px;
  transition: border-color 0.2s ease, opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(16px);
}

.post-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.post-item:hover {
  border-color: rgba(255, 102, 0, 0.3);
}

.panel {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.panel.visible {
  opacity: 1;
  transform: translateY(0);
}

.post-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.post-title a {
  color: #e8e8e8;
  position: relative;
}

.post-title a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.post-title a:hover {
  color: #ff6600;
}

.post-title a:hover::after {
  width: 100%;
}

.post-meta {
  font-size: 10px;
  color: #444444;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.post-meta a {
  color: #666666;
}

.post-meta a:hover {
  color: #ff6600;
}

.post-meta .meta-sep {
  color: #2a2a2a;
}

.post-excerpt {
  color: #888888;
  font-size: 13px;
  line-height: 1.7;
}

.post-excerpt p {
  margin-bottom: 0;
}

/* ---- Post Detail ---- */
.post-detail {
  border: 1px solid #2a2a2a;
  background-color: #111111;
  padding: 32px;
}

.post-detail .post-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.post-content {
  color: #888888;
  line-height: 1.8;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  color: #e8e8e8;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}

.post-content p {
  margin-bottom: 1.2em;
}

.post-content a {
  color: #ff6600;
  border-bottom: 1px solid rgba(255, 102, 0, 0.3);
}

.post-content a:hover {
  border-bottom-color: #ff6600;
}

.post-content blockquote {
  border-left: 2px solid #ff6600;
  padding-left: 16px;
  margin: 16px 0;
  color: #666666;
}

.post-content code {
  background-color: #1a1a1a;
  padding: 2px 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9em;
  color: #e8e8e8;
}

.post-content pre {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 16px;
  margin: 16px 0;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
}

.post-content pre code {
  background: none;
  padding: 0;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Auto-detected command lines */
.auto-code {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-left: 2px solid #ff6600;
  padding: 10px 14px;
  margin: 12px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9em;
  color: #e8e8e8;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
}

.auto-code::before {
  content: '> ';
  color: #ff6600;
  font-weight: 500;
}

/* Chat command highlight (green for in-game chat input) */
.chat-command {
  color: #55ff55;
  font-weight: 500;
}

/* Full green line for /scoreboard chat input */
.auto-code.chat-line {
  color: #55ff55;
}

.post-content ul,
.post-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 4px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border: 1px solid #2a2a2a;
}

/* Image scan line effect */
.img-scan-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
}

.img-scan-wrapper img {
  display: block;
  border: none;
}

.img-scan-wrapper::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 102, 0, 0.7);
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.5);
  opacity: 0;
}

.img-scan-wrapper:hover::after {
  animation: scanLine 0.7s ease forwards;
}

@keyframes scanLine {
  0% { top: -4px; opacity: 1; }
  100% { top: 100%; opacity: 1; }
}

.post-content hr {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 32px 0;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.post-content th,
.post-content td {
  border: 1px solid #2a2a2a;
  padding: 8px 12px;
  text-align: left;
}

.post-content th {
  background-color: #1a1a1a;
  color: #e8e8e8;
}

/* ---- Tags ---- */
.post-tags {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  font-size: 10px;
}

.post-tags a {
  display: inline-block;
  border: 1px solid #2a2a2a;
  padding: 2px 8px;
  margin-right: 6px;
  margin-bottom: 6px;
  color: #444444;
  transition: all 0.2s ease;
}

.post-tags a:hover {
  color: #ff6600;
  border-color: rgba(255, 102, 0, 0.3);
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  font-size: 10px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #2a2a2a;
  background-color: #111111;
  color: #888888;
  transition: all 0.2s ease;
}

.pagination a:hover {
  color: #ff6600;
  border-color: rgba(255, 102, 0, 0.3);
}

.pagination .current {
  color: #ff6600;
  border-color: rgba(255, 102, 0, 0.3);
  background-color: rgba(255, 102, 0, 0.1);
}

/* ---- Page Title ---- */
.page-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
}

.page-title h1 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.page-title .title-line {
  flex: 1;
  height: 1px;
  background-color: #2a2a2a;
}

/* ---- Comments ---- */
.comments-section {
  margin-top: 32px;
  border: 1px solid #2a2a2a;
  background-color: #111111;
}

.comments-header {
  padding: 12px 16px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 10px;
  color: #444444;
  letter-spacing: 0.1em;
}

.comments-list {
  list-style: none;
  padding: 0;
}

.comment-item {
  padding: 16px;
  border-bottom: 1px solid #2a2a2a;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-meta {
  font-size: 10px;
  color: #444444;
  margin-bottom: 8px;
}

.comment-meta .comment-author {
  color: #ff6600;
  font-weight: 500;
}

.comment-content {
  color: #888888;
  font-size: 13px;
  line-height: 1.6;
}

.comment-content p {
  margin-bottom: 0.5em;
}

/* Comment Form */
.comment-form-wrap {
  padding: 24px;
  border-top: 1px solid #2a2a2a;
}

.comment-form label {
  display: block;
  font-size: 10px;
  color: #444444;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 8px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #e8e8e8;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: rgba(255, 102, 0, 0.5);
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.comment-form input[type="submit"] {
  background-color: #111111;
  border: 1px solid #2a2a2a;
  color: #555555;
  padding: 8px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comment-form input[type="submit"]:hover {
  color: #ff6600;
  border-color: rgba(255, 102, 0, 0.3);
}

/* ---- Sidebar Widgets (Terminal Panel Style) ---- */
.widget {
  border: 1px solid #2a2a2a;
  background-color: #111111;
  margin-bottom: 24px;
}

.widget-title {
  padding: 8px 16px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 10px;
  color: #444444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget-body {
  padding: 16px;
}

.widget-body ul {
  list-style: none;
  padding: 0;
}

.widget-body li {
  padding: 4px 0;
  font-size: 12px;
}

.widget-body a {
  color: #666666;
}

.widget-body a:hover {
  color: #ff6600;
}

/* ---- 404 Page ---- */
.error-page {
  text-align: center;
  padding: 64px 24px;
}

.error-code {
  font-size: 4rem;
  color: #ff6600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.error-message {
  color: #888888;
  font-size: 13px;
  margin-bottom: 24px;
}

/* ---- Timeline / Archive ---- */
.archive-list {
  border-left: 2px solid #2a2a2a;
  padding-left: 24px;
  margin-left: 8px;
}

.archive-item {
  position: relative;
  margin-bottom: 24px;
}

.archive-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 4px;
  width: 8px;
  height: 8px;
  background-color: #ff6600;
}

.archive-date {
  font-size: 10px;
  color: #ff6600;
  margin-bottom: 4px;
}

.archive-title {
  font-size: 13px;
  color: #e8e8e8;
}

.archive-title a {
  color: #e8e8e8;
}

.archive-title a:hover {
  color: #ff6600;
}

/* ---- Search Form ---- */
.search-form {
  display: flex;
  gap: 0;
}

.search-form input[type="text"] {
  flex: 1;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 8px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #e8e8e8;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-form input[type="text"]:focus {
  border-color: rgba(255, 102, 0, 0.5);
}

.search-form input[type="submit"] {
  background-color: #111111;
  border: 1px solid #2a2a2a;
  border-left: none;
  color: #555555;
  padding: 8px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-form input[type="submit"]:hover {
  color: #ff6600;
}

/* ---- Responsive Design ---- */
@media (max-width: 768px) {
  .side-nav {
    display: none;
  }

  .main-content {
    padding-right: 16px;
  }

  .hud-bar {
    padding: 0 8px;
    font-size: 9px;
  }

  .hud-left {
    display: none;
  }

  .hud-theme-info {
    display: none;
  }

  .post-detail {
    padding: 20px;
  }

  .page-title h1 {
    font-size: 1rem;
  }

  .error-code {
    font-size: 3rem;
  }
}

/* ---- Mobile Navigation ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #2a2a2a;
  z-index: 850;
  padding: 8px 16px;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  overflow-x: auto;
}

.mobile-nav a {
  font-size: 10px;
  color: #444444;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #ff6600;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}

/* ---- Utility Classes ---- */
.text-orange { color: #ff6600; }
.text-muted { color: #444444; }
.text-secondary { color: #888888; }
.text-primary { color: #e8e8e8; }

.border-subtle { border-color: #2a2a2a; }
.bg-panel { background-color: #111111; }
.bg-input { background-color: #1a1a1a; }

.font-mono {
  font-family: "JetBrains Mono", "Courier New", ui-monospace, monospace;
}

.tracking-wide {
  letter-spacing: 0.1em;
}

/* ---- Loading cursor blink ---- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #ff6600;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

/* ---- Terminal Boot Loader ---- */
.terminal-loader {
  position: fixed;
  inset: 0;
  background-color: #111111;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.terminal-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.terminal-loader-content {
  width: 100%;
  max-width: 560px;
  padding: 24px;
}

.terminal-loader-logs {
  margin-bottom: 24px;
  min-height: 280px;
}

.loader-log {
  font-size: 12px;
  color: #888888;
  margin-bottom: 6px;
  opacity: 0;
  animation: logReveal 0.1s ease forwards;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.log-prefix {
  color: #444444;
  margin-right: 8px;
}

.log-prefix.log-ok {
  color: #ff6600;
}

@keyframes logReveal {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.terminal-loader-track {
  flex: 1;
  height: 4px;
  background-color: #222222;
  overflow: hidden;
}

.terminal-loader-fill {
  height: 100%;
  width: 0%;
  background-color: #ff6600;
  animation: loadProgress 2s ease forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  80% { width: 92%; }
  100% { width: 100%; }
}

.terminal-loader-percent {
  font-size: 10px;
  color: #ff6600;
  width: 36px;
  text-align: right;
  letter-spacing: 0.05em;
}

/* ---- Code Copy Button ---- */
.highlight {
  position: relative;
}

.copy-code-button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-top: none;
  border-right: none;
  color: #555555;
  padding: 4px 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  z-index: 10;
}

.copy-code-button:hover {
  color: #ff6600;
  border-color: rgba(255, 102, 0, 0.3);
}

/* ---- Terminal Cookie Consent ---- */
.terminal-cookie {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 64px;
  background: #111111;
  border-top: 1px solid #2a2a2a;
  z-index: 950;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  display: none;
  line-height: 1.6;
}

.terminal-cookie.visible {
  display: block;
}

.terminal-cookie-panel {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 20px;
}

.terminal-cookie-header {
  font-size: 10px;
  color: #444444;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.terminal-cookie-header::before {
  content: '> ';
  color: #ff6600;
}

.terminal-cookie-desc {
  color: #888888;
  font-size: 12px;
  margin-bottom: 12px;
}

/* Terminal-style checkbox [ ] / [x] */
.terminal-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 8px;
  user-select: none;
}

.terminal-checkbox.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.terminal-checkbox-box {
  width: 14px;
  height: 14px;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #ff6600;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: "JetBrains Mono", monospace;
  line-height: 1;
}

.terminal-checkbox.checked .terminal-checkbox-box {
  border-color: #ff6600;
}

.terminal-checkbox-text {
  display: flex;
  flex-direction: column;
}

.terminal-checkbox-label {
  font-size: 11px;
  color: #e8e8e8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.terminal-checkbox-desc {
  font-size: 10px;
  color: #444444;
  margin-top: 2px;
}

/* Terminal actions */
.terminal-cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.terminal-btn {
  padding: 6px 14px;
  border: 1px solid #2a2a2a;
  background: #111111;
  color: #555555;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.terminal-btn:hover {
  color: #ff6600;
  border-color: rgba(255, 102, 0, 0.3);
}

.terminal-btn.primary {
  background: rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
  color: #ff6600;
}

.terminal-btn.primary:hover {
  background: rgba(255, 102, 0, 0.2);
}

/* Cookie settings link in footer */
.cookie-settings-link {
  cursor: pointer;
}

@media (max-width: 768px) {
  .terminal-cookie {
    right: 0;
  }
  .terminal-cookie-panel {
    padding: 12px 16px;
  }
  .terminal-cookie-actions {
    flex-direction: column;
  }
  .terminal-btn {
    width: 100%;
  }
}
