
/* Background layer - defined locally to ensure correct image path */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('/bg.webp') center center / cover no-repeat;
  background-color: #080c10;
}
.bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 12, 16, 0.92) 0%,
    rgba(10, 15, 22, 0.95) 50%,
    rgba(12, 18, 26, 0.98) 100%
  );
}
/* UI-Kit Styles */
/* Rutale Design System - CSS Variables */
:root {
  /* Hytale color palette - darker theme */
  --bg-primary: #0c1218;
  --bg-secondary: #0e141c;
  --bg-card: #141c28;
  --bg-panel: #111820;
  --border-color: #1a2535;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --accent-blue: #69A2E3;
  --accent-orange: #FFAA48;
  --accent-warning: #B4450D;

  /* Edition colors */
  --standard-color: #BCD85E;
  --supporter-color: #FA7510;
  --cursebreaker-color: #BF4AF2;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.2s ease;
  --transition-slow: 0.3s ease;

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 1000;
  --z-tooltip: 1100;
  --z-snowflakes: 1000;
}
/* Rutale Design System - Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-y: scroll;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
html, body, #app {
  overflow-x: hidden;
}
body {
  font-family: 'Nunito Sans', 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}
.app {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
/* ============ BACKGROUND ============ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('/bg.webp') center center / cover no-repeat;
  background-color: #080c10;
}
.bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 12, 16, 0.92) 0%,
    rgba(10, 15, 22, 0.95) 50%,
    rgba(12, 18, 26, 0.98) 100%
  );
}
/* ============ MAIN CONTENT ============ */
.main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}
.main--fullbleed {
  max-width: none;
  padding: 0;
  /* Pull content up behind banner+header so the landing bg covers the full viewport */
  margin-top: -103px;
  position: relative;
}
/* ============ LINKS ============ */
a {
  color: inherit;
  text-decoration: none;
}
/* ============ SPINNER ============ */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(105, 162, 227, 0.2);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(105, 162, 227, 0.3);
}
/* ============ PAGE TRANSITIONS ============ */
.page-fade-enter-active {
  transition: opacity 0.15s ease;
}
.page-fade-leave-active {
  transition: opacity 0.1s ease;
}
.page-fade-enter-from,
.page-fade-leave-to {
  opacity: 0;
}
/* ========================================
   UI-Kit Components Styles
   ======================================== */
/* ============ BUTTONS ============ */
.r-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.r-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.r-btn-primary {
  --border-color: #598ac3;
  padding: 6px 32px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  color: white;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  transition: box-shadow 0.15s, background-color 0.15s;
}
.r-btn-primary:hover:not(:disabled) {
  box-shadow: 0 0 0 2px var(--border-color) inset;
  filter: brightness(0.85);
}
.r-btn-secondary {
  background: rgba(105, 162, 227, 0.1);
  border: 1px solid rgba(105, 162, 227, 0.3);
  color: var(--accent-blue);
}
.r-btn-secondary:hover:not(:disabled) {
  background: rgba(105, 162, 227, 0.2);
}
.r-btn-danger {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
}
.r-btn-danger:hover:not(:disabled) {
  background: rgba(255, 68, 68, 0.2);
}
.r-btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}
/* ============ CARDS ============ */
.r-card {
  background: rgba(20, 28, 40, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.r-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}
.r-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.r-card-row:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.r-card-info {
  background: rgba(105, 162, 227, 0.05);
  border-color: rgba(105, 162, 227, 0.2);
}
.r-card-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 0 0 8px 0;
}
/* ============ BADGES ============ */
.r-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.r-badge-green {
  background: rgba(188, 216, 94, 0.15);
  color: #BCD85E;
}
.r-badge-blue {
  background: rgba(105, 162, 227, 0.15);
  color: var(--accent-blue);
}
.r-badge-orange {
  background: rgba(255, 170, 72, 0.15);
  color: var(--accent-orange);
}
.r-badge-red {
  background: rgba(255, 68, 68, 0.15);
  color: #ff6b6b;
}
.r-badge-gray {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}
/* ============ FORMS ============ */
.r-form-group {
  margin-bottom: 16px;
}
.r-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.r-form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color 0.2s;
}
.r-form-input:focus {
  outline: none;
  border-color: var(--accent-blue);
}
.r-form-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.r-form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.r-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
/* ============ ALERTS ============ */
.r-alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}
.r-alert-error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
}
.r-alert-success {
  background: rgba(188, 216, 94, 0.1);
  border: 1px solid rgba(188, 216, 94, 0.3);
  color: #BCD85E;
}
.r-alert-warning {
  background: rgba(255, 170, 72, 0.1);
  border: 1px solid rgba(255, 170, 72, 0.3);
  color: var(--accent-orange);
}
.r-alert a {
  color: inherit;
  font-weight: 600;
}
/* ============ MODAL ============ */
.r-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 12, 16, 0.92);
  backdrop-filter: blur(12px);
  animation: r-fadeIn 0.25s ease-out;
}
@keyframes r-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.r-modal {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(160deg, #1a2538 0%, #131c2a 50%, #0f1620 100%);
  border: 1px solid rgba(105, 162, 227, 0.25);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  animation: r-modalSlideUp 0.3s ease-out;
}
@keyframes r-modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.r-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.r-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.r-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s;
}
.r-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.r-modal-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* ============ HEADER ============ */
.r-header {
  position: sticky;
  top: 0;
  z-index: 102;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  /* sticky creates a positioning context for logo */
}
.r-header-inner {
  display: flex;
  align-items: center;
  pointer-events: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.r-logo {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-shrink: 0;
  pointer-events: auto;
}
.r-logo-img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 1px 5px black);
}
.r-header-mobile {
  display: none;
}
/* Mobile Menu Overlay */
.r-mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.r-mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.r-mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #1a2a42 0%, #0f1a2a 100%);
  border-right: 1px solid rgba(105, 162, 227, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  pointer-events: auto;
}
.r-mobile-menu-overlay.is-open .r-mobile-menu {
  transform: translateX(0);
}
.r-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(105, 162, 227, 0.15);
}
.r-mobile-menu-logo img {
  height: 40px;
  width: auto;
}
.r-mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.r-mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.r-mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 24px;
}
/* Mobile Navigation */
.r-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.r-mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.r-mobile-nav-item:hover {
  background: rgba(105, 162, 227, 0.1);
  color: white;
}
.r-mobile-nav-item.is-active {
  background: rgba(236, 188, 98, 0.1);
  color: #ecbc62;
}
.r-mobile-nav-item.is-disabled {
  color: rgba(255, 255, 255, 0.35);
  cursor: default;
}
.r-mobile-nav-item.is-disabled:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
}
.r-mobile-nav-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(255, 165, 0, 0.15);
  color: #ffa500;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.r-mobile-nav-item svg {
  opacity: 0.5;
}
.r-mobile-nav-action {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 8px;
}
.r-mobile-nav-action .r-nav-icon-heart {
  opacity: 1;
  order: 1;
}
/* Mobile Auth */
.r-mobile-menu-auth {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.r-mobile-auth-link {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.r-mobile-auth-link:hover {
  background: rgba(105, 162, 227, 0.1);
  color: white;
}
/* Mobile CTA */
.r-mobile-menu-cta {
  margin-top: auto;
  padding-top: 16px;
}
.r-mobile-cta-btn {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
}
.r-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
  background: #203658;
  padding: 2px 32px;
  border-radius: 2px;
  border: 3px solid transparent;
  -o-border-image: url('data:image/webp;base64,UklGRiQCAABXRUJQVlA4WAoAAAAQAAAAUwAAUwAAQUxQSGwAAAABcBtJkiK1F+PEWbIG7YpnFY09o97TyAvaYz9TREwAIFFt10huTZMACN7IeoB4o+uSGuGo++GC91NjZFtGu8bo0KcGqP799+K15yW1Ez4tKqNtZmQLIx32Y5m6yscFfWXjAUA3Lrmy2JlGAQBWUDggkgEAADAOAJ0BKlQAVAA+kT6VSDsjoiEx1NmDYBIJZwDNBNBJ+xrQbIlY6axn7kD7p5yHtX7IRlN4HDIar2/UxGf6At52l7YCKLWcIb8nKz+QsYH+TlBVaCuWMCKBx9tLTSx63L8ESEcyoF5wdB3CshEy0ulDBWownbbsZBMAAP7MmgoivNK3iu9tiwSgfCiMtV8smY1d0t8Bw7Hb/WsJOMEzjdqQ3PE9wTPrKE/VdBifgfCtIU0UCdHRIwlqstqDRTYu+ibNDLjxEUcmRuViwswzq2uUz6qG4lG5uiRK4bwvl/4OUko9eimOxua/083gvaRdHu4B7el+mBBPRyPTS8j/NAEr3G4Nfm2p1e5SHCAB+bjUl5uewn3c3aD0ewAFDgA+ByflASVWmlCi4vhPj3UrlLwXR3uRqLxBUUfWOdWoN409zWpOrAC0/YVNm+5hgqitSJxWYXDRO8PbNxUeUBRYaGzar99kz4iBLqLiUDlw9ppfKlpzrDJFlZCWIJhu6cE9BrdNVgZZUxmAPcAzra7xhAAAAA==') 28 28 stretch;
     border-image: url('data:image/webp;base64,UklGRiQCAABXRUJQVlA4WAoAAAAQAAAAUwAAUwAAQUxQSGwAAAABcBtJkiK1F+PEWbIG7YpnFY09o97TyAvaYz9TREwAIFFt10huTZMACN7IeoB4o+uSGuGo++GC91NjZFtGu8bo0KcGqP799+K15yW1Ez4tKqNtZmQLIx32Y5m6yscFfWXjAUA3Lrmy2JlGAQBWUDggkgEAADAOAJ0BKlQAVAA+kT6VSDsjoiEx1NmDYBIJZwDNBNBJ+xrQbIlY6axn7kD7p5yHtX7IRlN4HDIar2/UxGf6At52l7YCKLWcIb8nKz+QsYH+TlBVaCuWMCKBx9tLTSx63L8ESEcyoF5wdB3CshEy0ulDBWownbbsZBMAAP7MmgoivNK3iu9tiwSgfCiMtV8smY1d0t8Bw7Hb/WsJOMEzjdqQ3PE9wTPrKE/VdBifgfCtIU0UCdHRIwlqstqDRTYu+ibNDLjxEUcmRuViwswzq2uUz6qG4lG5uiRK4bwvl/4OUko9eimOxua/083gvaRdHu4B7el+mBBPRyPTS8j/NAEr3G4Nfm2p1e5SHCAB+bjUl5uewn3c3aD0ewAFDgA+ByflASVWmlCi4vhPj3UrlLwXR3uRqLxBUUfWOdWoN409zWpOrAC0/YVNm+5hgqitSJxWYXDRO8PbNxUeUBRYaGzar99kz4iBLqLiUDlw9ppfKlpzrDJFlZCWIJhu6cE9BrdNVgZZUxmAPcAzra7xhAAAAA==') 28 28 stretch;
  border-image-outset: 1px;
  border-image-width: 18px;
  outline: 1px solid #182438;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.r-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.r-nav a:not(.r-nav-dropdown-trigger):not(.r-nav-dropdown-item) {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 2px 4px rgba(22, 36, 86, 0.3);
  padding: 6px 0;
  white-space: nowrap;
}
.r-nav a:not(.r-nav-dropdown-trigger):not(.r-nav-dropdown-item):hover {
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.r-nav a:not(.r-nav-dropdown-trigger):not(.r-nav-dropdown-item).r-nav-active,
.r-nav .r-nav-active:not(.r-nav-dropdown-trigger):not(.r-nav-dropdown-item) {
  color: #ecbc62;
  background: radial-gradient(ellipse at center, rgba(237, 181, 72, 0.1) 0%, rgba(237, 181, 72, 0.1) 20%, rgba(237, 181, 72, 0) 70%, rgba(237, 181, 72, 0) 100%);
}
.r-nav-divider {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0;
  color: transparent;
  vertical-align: middle;
}
.r-nav-item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.r-nav-action {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 2px 4px rgba(22, 36, 86, 0.3);
  white-space: nowrap;
}
.r-nav-action:hover {
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.r-nav-icon-heart {
  color: #ff6b6b;
  flex-shrink: 0;
}
.r-nav-action:hover .r-nav-icon-heart {
  color: #ff8a8a;
}
.r-nav-disabled {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: default;
  padding: 6px 0;
}
.r-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.r-header-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin: 0 -8px;
}
.r-header-auth-wrapper {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
/* Skeleton shimmer animation */
@keyframes r-skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.r-skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  background-size: 200% 100%;
  animation: r-skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}
.r-skeleton-text {
  display: inline-block;
  height: 1em;
  vertical-align: middle;
}
.r-header-auth-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 2px 4px rgba(22, 36, 86, 0.3);
  padding: 0;
  white-space: nowrap;
}
.r-header-auth-link:hover {
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.r-header-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.r-header-profile:hover {
  color: white;
}
.r-header-profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 2px solid #598ac3;
  background: linear-gradient(135deg, #465da9, #4578aa);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.r-header-profile-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* ============ COUNTDOWN ============ */
/* Fixed width container to prevent layout shift */
.r-countdown-wrapper {
  width: 120px; /* Fixed width for 0д 00:00:00 format */
  display: flex;
  justify-content: center;
}
.r-countdown {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 2px 4px rgba(22, 36, 86, 0.3);
  display: flex;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.r-countdown span {
  display: inline-block;
  text-align: center;
}
.r-countdown .num {
  width: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
}
.r-countdown .sep {
  width: 5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
.r-countdown .day-label {
  width: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 768px) {
  .r-countdown {
    display: none;
  }
}
/* ============ FOOTER ============ */
.r-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: rgba(15, 25, 40, 0.95);
  margin-top: auto;
}
.r-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.r-footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}
.r-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.r-footer-links a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.r-footer-links a:hover {
  color: white;
}
.r-footer-links span {
  color: var(--text-muted);
}
.r-footer-info {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.r-footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
}
/* ============ PARTNER BANNER ============ */
.r-partner-banner-wrapper {
  position: relative;
  z-index: 101;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.r-partner-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #15243a;
  border-bottom: 1px solid #434134;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.r-partner-banner:hover {
  background: #1a2d48;
  color: var(--text-primary);
}
.r-partner-banner-icon {
  color: #ff0000;
  flex-shrink: 0;
}
/* Mobile menu button inside banner */
.r-banner-menu-btn {
  display: none;
}
/* Mobile: banner is fixed at top, clickable as menu button */
@media (max-width: 1500px) {
  .r-partner-banner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
  }

  /* Add padding to body to compensate for fixed banner */
  body {
    padding-top: 35px;
  }

  /* Make banner clickable and more transparent on mobile */
  .r-partner-banner {
    background: rgba(10, 18, 30, 0.6) !important;
    backdrop-filter: blur(10px);
    cursor: pointer;
    pointer-events: auto;
    border-bottom: none;
  }

  .r-partner-banner:hover {
    background: rgba(15, 25, 40, 0.7) !important;
  }

  .r-partner-banner:active {
    background: rgba(20, 32, 50, 0.75) !important;
  }

  /* Hide YouTube icon and arrow on mobile */
  .r-partner-banner-icon,
  .r-partner-banner-arrow {
    display: none;
  }

  /* Show menu button inside banner */
  .r-banner-menu-btn {
    display: flex;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    pointer-events: auto;
  }

  .r-banner-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .r-banner-menu-btn .r-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
  }

  .r-banner-menu-btn .r-hamburger span {
    display: block;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .r-banner-menu-btn.is-open .r-hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .r-banner-menu-btn.is-open .r-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .r-banner-menu-btn.is-open .r-hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.r-partner-banner strong {
  color: var(--text-primary);
  font-weight: 600;
}
.r-partner-garland {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  pointer-events: none;
}
.r-partner-garland-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: r-garland-twinkle 2s ease-in-out infinite;
}
.r-partner-garland-light:nth-child(4n+1) { background: #ff6b6b; }
.r-partner-garland-light:nth-child(4n+2) { background: #ffd93d; }
.r-partner-garland-light:nth-child(4n+3) { background: #6bcb77; }
.r-partner-garland-light:nth-child(4n) { background: #4d96ff; }
.r-partner-garland-light:nth-child(1) { animation-delay: 0s; }
.r-partner-garland-light:nth-child(2) { animation-delay: 0.15s; }
.r-partner-garland-light:nth-child(3) { animation-delay: 0.3s; }
.r-partner-garland-light:nth-child(4) { animation-delay: 0.45s; }
.r-partner-garland-light:nth-child(5) { animation-delay: 0.6s; }
.r-partner-garland-light:nth-child(6) { animation-delay: 0.75s; }
.r-partner-garland-light:nth-child(7) { animation-delay: 0.9s; }
.r-partner-garland-light:nth-child(8) { animation-delay: 1.05s; }
.r-partner-garland-light:nth-child(9) { animation-delay: 1.2s; }
.r-partner-garland-light:nth-child(10) { animation-delay: 1.35s; }
.r-partner-garland-light:nth-child(11) { animation-delay: 1.5s; }
.r-partner-garland-light:nth-child(12) { animation-delay: 1.65s; }
.r-partner-garland-light:nth-child(13) { animation-delay: 1.8s; }
.r-partner-garland-light:nth-child(14) { animation-delay: 1.95s; }
.r-partner-garland-light:nth-child(15) { animation-delay: 0.1s; }
.r-partner-garland-light:nth-child(16) { animation-delay: 0.25s; }
.r-partner-garland-light:nth-child(17) { animation-delay: 0.4s; }
.r-partner-garland-light:nth-child(18) { animation-delay: 0.55s; }
.r-partner-garland-light:nth-child(19) { animation-delay: 0.7s; }
.r-partner-garland-light:nth-child(20) { animation-delay: 0.85s; }
@keyframes r-garland-twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; box-shadow: 0 0 8px currentColor; }
}
/* ============ NAV TOOLTIP ============ */
.r-nav-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(145deg, #0f1928 0%, #0a121e 100%);
  border: 1px solid rgba(105, 162, 227, 0.4);
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  z-index: 200;
  will-change: opacity;
  backface-visibility: hidden;
}
.r-nav-tooltip::before {
  display: none;
}
.r-nav-item-wrapper:hover .r-nav-tooltip {
  opacity: 1;
  pointer-events: auto;
}
.r-nav-tooltip-icon {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.r-nav-tooltip-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.r-nav-tooltip-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.r-nav-tooltip-text {
  font-size: 13px;
  color: rgba(105, 162, 227, 0.85);
  font-weight: 400;
  text-transform: none;
}
.r-nav-tooltip-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.r-nav-tooltip-text a:hover {
  color: var(--accent-blue);
}
/* ============ NAV DROPDOWN ============ */
.r-nav-dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
/* Hover bridge to prevent dropdown closing when mouse travels to panel */
.r-nav-dropdown-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 12px;
  pointer-events: none;
}
.r-nav-dropdown-wrapper:hover::after {
  pointer-events: auto;
}
.r-nav-dropdown-trigger {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 2px 4px rgba(22, 36, 86, 0.3);
  white-space: nowrap;
}
.r-nav-dropdown-trigger:hover {
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.r-nav-dropdown-trigger.r-nav-active {
  color: #ecbc62;
  background: none !important;
}
.r-nav-dropdown-chevron {
  transition: transform 0.2s;
  opacity: 0.5;
  flex-shrink: 0;
}
.r-nav-dropdown-wrapper:hover .r-nav-dropdown-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}
.r-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding: 6px;
  background: linear-gradient(145deg, #0f1928 0%, #0a121e 100%);
  border: 1px solid rgba(105, 162, 227, 0.4);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  z-index: 200;
  will-change: opacity;
  backface-visibility: hidden;
}
.r-nav-dropdown::before {
  display: none;
}
.r-nav-dropdown-wrapper:hover .r-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
}
.r-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 2px;
  color: rgba(183, 206, 221, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  width: 100%;
  text-align: left;
}
.r-nav-dropdown-item:hover {
  background: none !important;
  text-shadow: none !important;
  color: #fff;
}
.r-nav-dropdown-item.r-nav-active {
  color: #ecbc62;
  background: none !important;
}
.r-nav-dropdown-item .r-nav-icon-heart {
  flex-shrink: 0;
}
.r-nav-dropdown-disabled {
  color: rgba(183, 206, 221, 0.35);
  cursor: default;
  justify-content: space-between;
}
.r-nav-dropdown-disabled:hover {
  background: transparent;
  color: rgba(183, 206, 221, 0.35);
}
.r-nav-dropdown-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 6px;
  background: rgba(255, 165, 0, 0.15);
  color: #ffa500;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
/* ============ MOBILE DROPDOWN ============ */
.r-mobile-nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.r-mobile-dropdown-chevron {
  transition: transform 0.2s;
  opacity: 0.5;
  flex-shrink: 0;
}
.r-mobile-dropdown-chevron.is-expanded {
  transform: rotate(180deg);
}
.r-mobile-dropdown-children {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.r-mobile-nav-child {
  padding-left: 32px !important;
  font-size: 14px !important;
}
/* ============ LOADING ============ */
.r-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.r-loading-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  color: var(--text-muted);
}
/* ============ STUB PAGE (In Development) ============ */
.stub-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stub-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px;
  text-align: center;
  background: linear-gradient(145deg, rgba(180, 69, 13, 0.15), rgba(140, 50, 10, 0.2));
  border: 1px solid rgba(180, 69, 13, 0.4);
  border-radius: 16px;
}
.stub-icon {
  color: var(--accent-orange);
}
.stub-title {
  color: var(--accent-orange);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.stub-text {
  color: rgba(255, 170, 72, 0.85);
}
.stub-actions {
  display: flex;
  gap: 12px;
}
/* ============ RESPONSIVE ============ */
/* Switch to mobile menu at 1500px - desktop nav needs more space */
@media (max-width: 1500px) {
  .r-header {
    padding: 12px 20px;
  }

  .r-header-inner {
    display: none;
  }

  .r-header-mobile {
    display: flex;
  }

  .r-mobile-menu-btn {
    display: flex;
  }

  .r-mobile-menu-overlay {
    display: block;
  }

  /* Mobile menu adjustments for banner */
  .r-mobile-menu {
    padding-top: 35px; /* Space for fixed banner */
  }

  .r-mobile-menu-close {
    display: none;
  }

  .r-mobile-menu-header {
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .cabinet-container {
    flex-direction: column;
  }

  .cabinet-sidebar {
    width: 100%;
  }

  .cabinet-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cabinet-nav-link {
    padding: 10px 16px;
  }
}
@media (max-width: 540px) {
  .r-header {
    padding: 12px 16px;
  }

  .r-logo-mobile img {
    height: 48px;
  }

  .cabinet-edition-card,
  .cabinet-account-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cabinet-account-badges,
  .cabinet-account-actions {
    justify-content: center;
  }

  .r-form-actions {
    flex-direction: column;
  }

  .cabinet-auth-card {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .r-footer-links {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}
@media (max-width: 600px) {
  .r-footer {
    padding: 20px 16px;
  }

  .r-footer-logo {
    height: 40px;
  }

  .r-footer-info {
    font-size: 12px;
  }

  .r-footer-disclaimer {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .r-footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .r-footer-links span {
    display: none;
  }
}
/* ============ NEW CABINET PAGE ============ */
.cabinet-main {
  width: 100%;
  margin: 0 auto;
  padding: 24px;
}
.cab-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cab-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.cab-maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 40px 20px;
}
.cab-maintenance-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.cab-maintenance-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
}
.cab-maintenance-text {
  font-size: 16px;
  color: rgba(183, 206, 221, 0.7);
  margin: 0 0 24px 0;
}
.cab-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(105, 162, 227, 0.2);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: cab-spin 0.8s linear infinite;
}
.cab-spinner-small {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(105, 162, 227, 0.2);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: cab-spin 0.8s linear infinite;
}
@keyframes cab-spin {
  to { transform: rotate(360deg); }
}
/* Profile Block */
.cab-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(145deg, rgba(20, 28, 40, 0.9) 0%, rgba(15, 22, 32, 0.95) 100%);
  border: 1px solid rgba(105, 162, 227, 0.15);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cab-profile-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
/* Sections */
.cab-section {
  background: linear-gradient(145deg, rgba(20, 28, 40, 0.9) 0%, rgba(15, 22, 32, 0.95) 100%);
  border: 1px solid rgba(105, 162, 227, 0.15);
  border-radius: 16px;
  padding: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cab-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cab-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cab-expand-icon {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s;
}
.cab-expand-icon.expanded {
  transform: rotate(180deg);
}
.cab-section-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(105, 162, 227, 0.1);
}
/* Alerts */
.cab-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cab-alert-error {
  background: rgba(180, 69, 13, 0.15);
  border: 1px solid rgba(180, 69, 13, 0.3);
  color: var(--accent-orange);
}
.cab-alert-warning {
  background: rgba(255, 170, 72, 0.1);
  border: 1px solid rgba(255, 170, 72, 0.25);
  color: var(--accent-orange);
}
.cab-alert-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
}
.cab-alert-close:hover {
  opacity: 1;
}
/* Buttons */
.cab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.cab-btn-primary {
  background: linear-gradient(90deg, #465da9, #4578aa);
  color: #fff;
  border: 2px solid #598ac3;
}
.cab-btn-primary:hover:not(:disabled) {
  filter: brightness(1.1);
}
.cab-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cab-btn-secondary {
  background: rgba(105, 162, 227, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(105, 162, 227, 0.3);
}
.cab-btn-secondary:hover {
  background: rgba(105, 162, 227, 0.2);
}
.cab-btn-block {
  width: 100%;
}
.cab-btn-text {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
}
.cab-btn-text:hover {
  text-decoration: underline;
}
.cab-btn-danger {
  color: #e74c3c;
}
/* Payment Section */
.cab-payment-section {
  text-align: center;
}
.cab-payment-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.cab-edition-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}
.cab-payment-amount {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.cab-payment-qr {
  margin-bottom: 20px;
}
.cab-qr-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.cab-qr-wrapper {
  display: inline-block;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
}
.cab-qr-wrapper svg {
  display: block;
  width: 200px;
  height: 200px;
}
.cab-qr-placeholder {
  width: 232px;
  height: 232px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.cab-qr-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.cab-payment-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px;
  background: rgba(105, 162, 227, 0.1);
  border-radius: 8px;
  color: var(--accent-blue);
  font-size: 14px;
}
.cab-foreign-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cab-foreign-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: underline;
  margin-bottom: 8px;
}
.cab-foreign-link:hover {
  color: #fff;
}
.cab-foreign-hint {
  display: block;
  font-size: 12px;
  color: var(--accent-orange);
}
/* Editions Grid */
.cab-editions-section .cab-section-title {
  margin-bottom: 20px;
}
.cab-editions-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  color: var(--text-muted);
}
/* Edition Skeleton Loading */
.cab-edition-skeleton {
  pointer-events: none;
}
.cab-skeleton-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, rgba(105, 162, 227, 0.05) 25%, rgba(105, 162, 227, 0.1) 50%, rgba(105, 162, 227, 0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 12px;
}
.cab-skeleton-text {
  background: linear-gradient(90deg, rgba(105, 162, 227, 0.05) 25%, rgba(105, 162, 227, 0.1) 50%, rgba(105, 162, 227, 0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 4px;
}
.cab-skeleton-name {
  height: 16px;
  width: 80%;
  margin: 0 auto 8px;
}
.cab-skeleton-price {
  height: 24px;
  width: 50%;
  margin: 0 auto;
}
.cab-skeleton-button {
  height: 44px;
  background: linear-gradient(90deg, rgba(105, 162, 227, 0.05) 25%, rgba(105, 162, 227, 0.1) 50%, rgba(105, 162, 227, 0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
  margin-top: 12px;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.cab-editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.cab-edition-card {
  background: rgba(15, 22, 32, 0.6);
  border: 1px solid rgba(105, 162, 227, 0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.cab-edition-card:hover {
  border-color: rgba(105, 162, 227, 0.3);
  transform: translateY(-2px);
}
.cab-edition-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
.cab-edition-info {
  margin-bottom: 12px;
}
.cab-edition-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cab-edition-price {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
/* ============================
   Two-column Layout
   ============================ */
.cab-main-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.cab-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
}
.cab-content {
  min-width: 0;
}
/* Account Selector Dropdown */
.cab-account-selector {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px;
}
.cab-account-selector-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cab-account-selector-empty {
  text-align: center;
}
.cab-account-dropdown {
  position: relative;
}
.cab-account-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(15, 22, 32, 0.8);
  border: 1px solid rgba(105, 162, 227, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.cab-account-dropdown-btn:hover {
  border-color: rgba(105, 162, 227, 0.4);
}
.cab-account-dropdown.open .cab-account-dropdown-btn {
  border-color: var(--accent-blue);
  border-radius: 8px 8px 0 0;
}
.cab-account-dropdown-email {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cab-account-dropdown-arrow {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s;
}
.cab-account-dropdown.open .cab-account-dropdown-arrow {
  transform: rotate(180deg);
}
.cab-account-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 22, 32, 0.98);
  border: 1px solid var(--accent-blue);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  z-index: 100;
  animation: dropdownSlide 0.15s ease-out;
}
@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cab-account-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.cab-account-dropdown-item:hover {
  background: rgba(105, 162, 227, 0.1);
}
.cab-account-dropdown-item.active {
  background: rgba(188, 216, 94, 0.1);
}
.cab-account-dropdown-item-email {
  flex: 1;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cab-account-dropdown-check {
  color: var(--standard-color);
  font-size: 14px;
}
.cab-account-delete-btn {
  padding: 4px 8px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border-radius: 4px;
  line-height: 1;
  margin-left: auto;
}
.cab-account-delete-btn:hover:not(:disabled) {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.15);
}
.cab-account-delete-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cab-account-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}
.cab-account-dropdown-add {
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  color: var(--accent-blue);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.cab-account-dropdown-add:hover {
  background: rgba(105, 162, 227, 0.1);
}
.cab-badge-small {
  font-size: 9px;
  padding: 2px 6px;
}
/* Buy section in sidebar */
.cab-buy-section {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px;
}
.cab-buy-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cab-buy-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* ============================
   Game Profiles (Hytale style)
   ============================ */
.cab-profiles-section {
  margin-bottom: 0;
}
.cab-profiles-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}
.cab-profiles-empty p {
  margin-bottom: 16px;
}
.cab-profiles-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  color: rgba(255, 255, 255, 0.6);
}
/* Profile Card Skeleton */
.profile-card-skeleton {
  opacity: 0.7;
}
.profile-banner-skeleton {
  background: linear-gradient(135deg, rgba(30, 40, 55, 1) 0%, rgba(20, 28, 40, 1) 100%);
}
.skeleton-text {
  color: transparent;
  background: linear-gradient(90deg, rgba(255,255,255,0.08) 25%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* Session Expired Block */
.cab-session-expired {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 170, 72, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cab-session-expired-icon {
  font-size: 48px;
  line-height: 1;
}
.cab-session-expired-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-orange);
}
.cab-session-expired-text {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}
/* Buy section at bottom */
.cab-buy-section {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 20px 24px;
}
.cab-buy-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cab-buy-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cab-buy-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
/* Small button variant */
.cab-btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}
/* Legacy editions styles */
.cab-editions-info {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.cab-editions-info p {
  margin: 0;
}
/* Account Section */
.cab-account-email {
  font-size: 14px;
  color: var(--accent-blue);
  font-weight: 400;
}
.cab-account-empty {
  margin-top: 16px;
}
.cab-accounts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cab-account-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(15, 22, 32, 0.6);
  border: 1px solid rgba(105, 162, 227, 0.1);
  border-radius: 10px;
}
.cab-account-item.active {
  border-color: rgba(105, 162, 227, 0.3);
}
.cab-account-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cab-account-actions {
  display: flex;
  gap: 8px;
}
.cab-badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  background: rgba(105, 162, 227, 0.2);
  color: var(--accent-blue);
}
.cab-badge-green {
  background: rgba(188, 216, 94, 0.2);
  color: var(--standard-color);
}
/* Requests Section */
.cab-requests-count {
  font-size: 12px;
  padding: 2px 8px;
  background: rgba(105, 162, 227, 0.2);
  border-radius: 10px;
  color: var(--accent-blue);
  font-weight: 400;
}
.cab-requests-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cab-request-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(15, 22, 32, 0.6);
  border: 1px solid rgba(105, 162, 227, 0.1);
  border-radius: 10px;
}
.cab-request-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cab-edition-badge-small {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}
.cab-request-email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.cab-request-status {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cab-status-badge {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}
.status-pending {
  background: rgba(255, 170, 72, 0.15);
  color: var(--accent-orange);
}
.status-processing {
  background: rgba(105, 162, 227, 0.15);
  color: var(--accent-blue);
}
.status-completed {
  background: rgba(188, 216, 94, 0.15);
  color: var(--standard-color);
}
.status-cancelled {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}
.status-warning {
  background: rgba(255, 170, 72, 0.2);
  color: var(--accent-orange);
}
.cab-queue-position {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.cab-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 20px;
}
.cab-empty p {
  margin-bottom: 16px;
}
/* Modal */
.cab-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.cab-modal {
  background: linear-gradient(145deg, #1a2433 0%, #141c28 100%);
  border: 1px solid rgba(105, 162, 227, 0.2);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
}
.cab-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
}
.cab-modal-close:hover {
  color: #fff;
}
.cab-modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
}
.cab-modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cab-modal-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.cab-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 22, 32, 0.8);
  border: 1px solid rgba(105, 162, 227, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.cab-input:focus {
  border-color: var(--accent-blue);
}
.cab-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cab-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cab-input:disabled {
  opacity: 0.6;
}
/* Responsive */
@media (max-width: 968px) {
  .cab-main-layout {
    grid-template-columns: 1fr;
  }

  .cab-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cab-sidebar .cab-section {
    flex: 1;
    min-width: 200px;
  }

  .cab-sidebar .cab-buy-section {
    flex: 1;
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .cab-sidebar {
    flex-direction: column;
  }

  .cab-sidebar .cab-section,
  .cab-sidebar .cab-buy-section {
    min-width: 100%;
  }

  .profile-banner {
    padding-top: 60px;
  }

  .profile-banner-overlay {
    background: rgba(11, 22, 33, 0.8) !important;
  }

  .profile-header {
    padding-left: 0;
    justify-content: center;
  }

  .profile-username {
    text-align: center;
  }

  .profile-info-panel {
    margin-left: 0;
  }

  .cab-editions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cab-edition-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 12px;
  }

  .cab-edition-image {
    width: 100px;
    margin-bottom: 0;
  }

  .cab-edition-info {
    margin-bottom: 0;
  }

  .cab-edition-card .cab-btn {
    padding: 10px 16px;
    width: auto;
  }

  /* Skeleton cards on mobile */
  .cab-edition-card.cab-edition-skeleton {
    grid-template-columns: 100px 1fr;
  }

  .cab-edition-skeleton .cab-skeleton-button {
    display: none;
  }

  .cab-request-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cab-account-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 540px) {
  .cabinet-main {
    padding: 16px;
  }

  .cab-section {
    padding: 16px;
  }

  .cab-edition-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cab-edition-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 12px;
  }

  .cab-qr-wrapper svg {
    width: 180px;
    height: 180px;
  }

  .cab-payment-amount {
    font-size: 24px;
  }
}

.pack-details[data-v-7b68faad] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0;
}
.pack-details-title[data-v-7b68faad] {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(#f5fbff, #bfe6ff);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  border-bottom: 1px solid #1D3150;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

/* Limited Edition Banner */
.limited-banner[data-v-7b68faad] {
  border: 1px solid #335079;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 24px;
  background: rgba(51, 80, 121, 0.1);
}
.limited-banner-title[data-v-7b68faad] {
  font-weight: 700;
  font-size: 14px;
  color: #69A2E3;
  margin: 0 0 6px;
}
.limited-banner-text[data-v-7b68faad] {
  font-size: 14px;
  color: rgba(105, 162, 227, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* Pack List */
.pack-list[data-v-7b68faad] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Pack Card */
.pack-card[data-v-7b68faad] {
  background-color: rgba(113, 113, 122, 0.1);
  border-radius: 6px;
  position: relative;
  padding: 20px;
  scroll-margin-top: 24px;
  transition: all 0.2s;
  outline: 2px solid transparent;
}
.pack-card[data-v-7b68faad]:target {
  outline-color: #47516B;
}
.pack-card-inner[data-v-7b68faad] {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

/* Gradient overlay — soft vignette around banner */
.pack-overlay[data-v-7b68faad] {
  position: absolute;
  inset: 0;
  background:
    /* right fade (main content area) */
    linear-gradient(to right, transparent 0px, rgba(11, 22, 33, 0.75) 320px),
    /* top edge fade */
    linear-gradient(to bottom, rgba(11, 22, 33, 0.5) 0px, transparent 60px),
    /* bottom edge fade */
    linear-gradient(to top, rgba(11, 22, 33, 0.5) 0px, transparent 60px),
    /* left edge fade */
    linear-gradient(to right, rgba(11, 22, 33, 0.4) 0px, transparent 40px);
  border-radius: 6px;
  pointer-events: none;
}

/* Banner spacer on desktop */
.pack-banner-spacer[data-v-7b68faad] {
  display: none;
  height: 256px;
  width: 256px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

/* Content */
.pack-content[data-v-7b68faad] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 10;
}
.pack-name[data-v-7b68faad] {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background: none;
  margin: 0;
  line-height: 1.2;
}
.pack-description[data-v-7b68faad] {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #b7cedd;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Items grid */
.pack-items-grid[data-v-7b68faad] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pack-item[data-v-7b68faad] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 120px;
}

/* Single item image (clickable) */
.pack-item-image[data-v-7b68faad] {
  width: 120px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.15s;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  padding: 0;
}
@media (hover: hover) {
.pack-item-image[data-v-7b68faad]:hover {
    filter: brightness(1.1);
}
}
.pack-item-image[data-v-7b68faad]:active {
  filter: brightness(0.9);
}

/* Mosaic (2x2 grid for included items / capes) */
.pack-item-mosaic[data-v-7b68faad] {
  width: 120px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}
.mosaic-thumb[data-v-7b68faad] {
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: filter 0.15s;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  padding: 0;
  border-radius: 2px;
}
@media (hover: hover) {
.mosaic-thumb[data-v-7b68faad]:hover {
    filter: brightness(1.1);
}
}
.mosaic-thumb[data-v-7b68faad]:active {
  filter: brightness(0.9);
}
.mosaic-extra[data-v-7b68faad] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mosaic-extra span[data-v-7b68faad] {
  color: white;
  font-weight: 700;
  font-size: 18px;
}
.pack-item-label[data-v-7b68faad] {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 13px;
  margin: 0;
  color: #b7cedd;
  line-height: 1.3;
}
.pack-item-label[data-v-7b68faad] strong {
  color: white;
}

/* Actions bar */
.pack-actions[data-v-7b68faad] {
  position: relative;
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  z-index: 10;
  margin-top: 16px;
}
.pack-action-mix[data-v-7b68faad] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  border-radius: 6px;
  padding: 12px;
  justify-content: flex-end;
}
.pack-action-buy[data-v-7b68faad] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  padding: 12px;
}

/* Secondary button (Mix 'n' Match) */
.btn-secondary[data-v-7b68faad] {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
  min-width: 192px;
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: #273349;
  border: 2px solid #47516b;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
@media (hover: hover) {
.btn-secondary[data-v-7b68faad]:hover {
    border-color: #576c95;
    box-shadow: 0 0 0 2px #576c95 inset;
    background: #18283c;
}
}
.btn-secondary[data-v-7b68faad]:active {
  border-color: #576c95;
  box-shadow: 0 0 0 2px #576c95 inset;
  background: #253f60;
}

/* Primary buy button */
.btn-pack-buy[data-v-7b68faad] {
  --border-color: #598ac3;
  display: block;
  width: 100%;
  min-width: 192px;
  padding: 8px 16px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.15s, background-color 0.15s;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
}
.btn-pack-buy[data-v-7b68faad]:hover {
  box-shadow: 0 0 0 2px var(--border-color) inset;
  filter: brightness(0.85);
}

/* Lightbox */
.lightbox-overlay[data-v-7b68faad] {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  animation: lightbox-fade-7b68faad 0.2s ease-out;
}
@keyframes lightbox-fade-7b68faad {
from { opacity: 0;
}
to { opacity: 1;
}
}
.lightbox-content[data-v-7b68faad] {
  position: relative;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: lightbox-slide-7b68faad 0.3s ease-out;
}
@keyframes lightbox-slide-7b68faad {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.lightbox-close[data-v-7b68faad] {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
@media (hover: hover) {
.lightbox-close[data-v-7b68faad]:hover {
    color: white;
}
}
.lightbox-title[data-v-7b68faad] {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin: 0;
}
.lightbox-description[data-v-7b68faad] {
  font-size: 14px;
  color: #b7cedd;
  text-align: center;
  margin: 0;
  max-width: 500px;
}
.lightbox-image[data-v-7b68faad] {
  width: 100%;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
}

/* Slideshow */
.lightbox-slideshow[data-v-7b68faad] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.lightbox-nav[data-v-7b68faad] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);

  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
@media (hover: hover) {
.lightbox-nav[data-v-7b68faad]:hover {
    background: rgba(0, 0, 0, 0.75);
    color: white;
}
}
.lightbox-nav-prev[data-v-7b68faad] {
  left: -56px;
}
.lightbox-nav-next[data-v-7b68faad] {
  right: -56px;
}

/* Dots */
.lightbox-dots[data-v-7b68faad] {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}
.lightbox-dot[data-v-7b68faad] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.lightbox-dot.active[data-v-7b68faad] {
  background: #CC802A;
  transform: scale(1.3);
}
@media (hover: hover) {
.lightbox-dot[data-v-7b68faad]:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}
}
.lightbox-counter[data-v-7b68faad] {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Desktop */
@media (min-width: 769px) {
.pack-banner-spacer[data-v-7b68faad] {
    display: block;
}
.pack-items-grid[data-v-7b68faad] {
    grid-template-columns: repeat(4, 128px);
}
.pack-item[data-v-7b68faad] {
    width: 128px;
}
.pack-item-image[data-v-7b68faad] {
    width: 128px;
    height: 128px;
}
.pack-item-mosaic[data-v-7b68faad] {
    width: 128px;
    height: 128px;
}
}

/* Large desktop */
@media (min-width: 1200px) {
.pack-items-grid[data-v-7b68faad] {
    grid-template-columns: repeat(4, 168px);
}
.pack-item[data-v-7b68faad] {
    width: 168px;
}
.pack-item-image[data-v-7b68faad] {
    width: 168px;
    height: 168px;
}
.pack-item-mosaic[data-v-7b68faad] {
    width: 168px;
    height: 168px;
}
}

/* Mobile */
@media (max-width: 768px) {
.pack-details[data-v-7b68faad] {
    padding: 32px 16px;
}
.pack-overlay[data-v-7b68faad] {
    background: rgba(11, 22, 33, 0.8) !important;
}
.pack-card-inner[data-v-7b68faad] {
    flex-direction: column;
}
.pack-items-grid[data-v-7b68faad] {
    grid-template-columns: repeat(2, 120px);
    justify-content: center;
}
.pack-item[data-v-7b68faad] {
    margin: 0 auto;
}
.pack-actions[data-v-7b68faad] {
    flex-direction: column;
}
.pack-action-mix[data-v-7b68faad],
  .pack-action-buy[data-v-7b68faad] {
    width: 100%;
}
.btn-secondary[data-v-7b68faad],
  .btn-pack-buy[data-v-7b68faad] {
    min-width: unset;
}
.lightbox-content[data-v-7b68faad] {
    max-width: 95vw;
}
.lightbox-nav-prev[data-v-7b68faad] {
    left: 8px;
}
.lightbox-nav-next[data-v-7b68faad] {
    right: 8px;
}
.lightbox-nav[data-v-7b68faad] {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.65);
}
}
@media (max-width: 480px) {
.pack-details-title[data-v-7b68faad] {
    font-size: 20px;
}
}

.sysreq[data-v-36cda44b] {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0;
  scroll-margin-top: 40px;
}
.sysreq-title[data-v-36cda44b] {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(#f5fbff, #bfe6ff);
  -webkit-background-clip: text;
  background-clip: text;
  border-bottom: 1px solid #1D3150;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.sysreq-grid[data-v-36cda44b] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sysreq-column[data-v-36cda44b] {
  display: flex;
  flex-direction: column;
}
.sysreq-header[data-v-36cda44b] {
  background: rgba(32, 54, 88, 0.35);
  border-radius: 6px 6px 0 0;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #1D3150;
  text-align: center;
}
.sysreq-header-title[data-v-36cda44b] {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 4px;
}
.sysreq-header-subtitle[data-v-36cda44b] {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.sysreq-body[data-v-36cda44b] {
  background: rgba(32, 54, 88, 0.35);
  border-radius: 0 0 6px 6px;
  flex: 1;
  padding: 0 24px;
}
.sysreq-row[data-v-36cda44b] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #1D3150;
}
.sysreq-row-last[data-v-36cda44b] {
  border-bottom: none;
}
.sysreq-label[data-v-36cda44b] {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sysreq-icon[data-v-36cda44b] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sysreq-os-icon[data-v-36cda44b] {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.sysreq-value[data-v-36cda44b] {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sysreq-sublabel[data-v-36cda44b] {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.sysreq-sublabel-gap[data-v-36cda44b] {
  margin-top: 8px;
}
.sysreq-warning[data-v-36cda44b] {
  color: #f59e0b;
}
.sysreq-footer[data-v-36cda44b] {
  margin-top: 16px;
  text-align: center;
}
.sysreq-footer p[data-v-36cda44b] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.sysreq-footer a[data-v-36cda44b] {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  transition: color 0.2s;
}
.sysreq-footer a[data-v-36cda44b]:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
.sysreq-grid[data-v-36cda44b] {
    grid-template-columns: 1fr;
}
.sysreq-title[data-v-36cda44b] {
    font-size: 20px;
}
}
@media (max-width: 480px) {
.sysreq[data-v-36cda44b] {
    padding: 32px 0;
}
.sysreq-body[data-v-36cda44b] {
    padding: 0 16px;
}
.sysreq-header[data-v-36cda44b] {
    padding: 16px 16px 12px;
}
}

/* Hero Section */
.hero[data-v-de996c9c] {
  text-align: center;
  padding: 20px 0;
}
.title[data-v-de996c9c] {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(#f5fbff, #bfe6ff);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
}
.hero-date[data-v-de996c9c] {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-info[data-v-de996c9c] {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-info strong[data-v-de996c9c] {
  color: white;
  font-weight: 600;
}
.divider[data-v-de996c9c] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.divider-line[data-v-de996c9c] {
  flex: 1;
  max-width: 300px;
  height: 1px;
  background: var(--border-color);
}
.divider-crystal[data-v-de996c9c] {
  width: 12px;
  height: 24px;
}

/* Upgrade Note */
.upgrade-note[data-v-de996c9c] {
  width: 100%;
  max-width: 612px;
  margin: 28px auto 0;
  padding: 12px 24px;
  background: rgba(105, 162, 227, 0.1);
  border-left: 6px solid #69a2e3;
  border-right: 6px solid #69a2e3;
  border-radius: 16px;
  font-size: 14px;
  color: #69a2e3;
  line-height: 1.6;
}
.upgrade-note a[data-v-de996c9c] {
  font-weight: 700;
  color: #69a2e3;
  text-decoration: none;
  background: linear-gradient(90deg, #69a2e3 0%, #69a2e3 40%, #ffffff 50%, #69a2e3 60%, #69a2e3 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-de996c9c 3s ease-in-out infinite;
  transition: text-shadow 0.2s;
}
.upgrade-note a[data-v-de996c9c]:hover {
  text-shadow: 0 0 15px rgba(105, 162, 227, 0.6);
}
@keyframes shimmer-de996c9c {
0% { background-position: 100% 0;
}
100% { background-position: 0% 0;
}
}

/* Editions Grid */
.editions[data-v-de996c9c] {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0 0 40px;
}

/* Edition Card */
.edition-card[data-v-de996c9c] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 380px;
  position: relative;
}

/* Popular highlight — filter on parent to avoid Safari overflow:hidden clipping */
.edition-card-popular[data-v-de996c9c] {
  filter: drop-shadow(0 0 18px rgba(105, 162, 227, 0.5)) drop-shadow(0 0 40px rgba(105, 162, 227, 0.25));
  transition: filter 0.4s ease;
}
.edition-card-popular[data-v-de996c9c]:hover {
  filter: drop-shadow(0 0 24px rgba(105, 162, 227, 0.65)) drop-shadow(0 0 50px rgba(105, 162, 227, 0.35));
}
.popular-label[data-v-de996c9c] {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 30;
}
.popular-label-text[data-v-de996c9c] {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  white-space: nowrap;
  color: #69A2E3;
}
.popular-label-line[data-v-de996c9c] {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105, 162, 227, 0.35), transparent);
}
.card-frame[data-v-de996c9c] {
  position: relative;
  width: 380px;
  height: 543px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.card-image[data-v-de996c9c] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  transition: transform 0.4s ease;
}
.card-frame:hover .card-image[data-v-de996c9c] {
  transform: scale(1.05);
}

/* Details overlay on hover */
.card-details-overlay[data-v-de996c9c] {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease 0.15s, transform 0.4s ease;
  pointer-events: none;
}
.card-frame:hover .card-details-overlay[data-v-de996c9c] {
  opacity: 1;
  transform: scale(1.05);
}
.card-details-bg[data-v-de996c9c] {
  width: 75%;
  height: 100%;
  background: url('/images/card-overlay.png') center no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-details-text[data-v-de996c9c] {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

/* Price Panel */
.price-panel[data-v-de996c9c] {
  width: 85%;
  max-width: 380px;
  padding: 12px 20px 20px;
  background: #161F2A;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 20;
}
.price[data-v-de996c9c] {
  font-size: 24px;
  font-weight: 700;
  color: #69A2E3;
}
.btn-buy[data-v-de996c9c] {
  --border-color: #598ac3;
  display: block;
  width: 100%;
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.15s, background-color 0.15s;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
}
.btn-buy[data-v-de996c9c]:hover {
  box-shadow: 0 0 0 2px var(--border-color) inset;
  filter: brightness(0.85);
}

/* Warning Box */
.warning-box[data-v-de996c9c] {
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
}
.warning-icon[data-v-de996c9c] {
  width: 62px;
  height: 62px;
  margin-bottom: 8px;
}
.warning-content[data-v-de996c9c] {
  background: rgba(180, 69, 13, 0.1);
  border-left: 6px solid var(--accent-warning);
  border-right: 6px solid var(--accent-warning);
  border-radius: 16px;
  padding: 16px 40px;
  font-size: 14px;
  color: var(--accent-orange);
  line-height: 1.6;
}
.warning-content p[data-v-de996c9c] {
  margin-bottom: 12px;
}
.warning-content p[data-v-de996c9c]:last-child {
  margin-bottom: 0;
}
.warning-content strong[data-v-de996c9c] {
  font-weight: 700;
}
.warning-content a[data-v-de996c9c] {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* Reviews Section */
.reviews-section[data-v-de996c9c] {
  padding: 48px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.reviews-header[data-v-de996c9c] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.reviews-title[data-v-de996c9c] {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(#f5fbff, #bfe6ff);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
}
.reviews-channel-link[data-v-de996c9c] {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.reviews-channel-link[data-v-de996c9c]:hover {
  color: white;
}
.reviews-grid[data-v-de996c9c] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review-card[data-v-de996c9c] {
  background: linear-gradient(145deg, rgba(20, 28, 40, 0.95) 0%, rgba(15, 22, 32, 0.98) 100%);
  border: 1px solid rgba(105, 162, 227, 0.15);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card[data-v-de996c9c]:hover {
  border-color: rgba(105, 162, 227, 0.35);
  transform: translateY(-4px);
}
.review-header[data-v-de996c9c] {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.review-header[data-v-de996c9c]:hover {
  opacity: 0.8;
}
.review-header:hover .review-username[data-v-de996c9c] {
  color: var(--accent-blue);
}
.review-avatar[data-v-de996c9c] {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #465da9, #4578aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.review-author[data-v-de996c9c] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-name[data-v-de996c9c] {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-username[data-v-de996c9c] {
  font-size: 13px;
  color: var(--text-muted);
}
.review-text[data-v-de996c9c] {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-expand-btn[data-v-de996c9c] {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  align-self: flex-start;
}
.review-expand-btn[data-v-de996c9c]:hover {
  color: white;
}
.review-date[data-v-de996c9c] {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
}

/* How Section */
.how-section[data-v-de996c9c] {
  padding: 48px 0;
  text-align: center;
}
.steps[data-v-de996c9c] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.step[data-v-de996c9c] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num[data-v-de996c9c] {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(105, 162, 227, 0.15);
  border: 2px solid rgba(105, 162, 227, 0.4);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-blue);
}
.step-text[data-v-de996c9c] {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-secondary);
}
.step-arrow[data-v-de996c9c] {
  color: rgba(255, 255, 255, 0.25);
  font-size: 20px;
}
.step.highlight .step-num[data-v-de996c9c] {
  background: rgba(188, 216, 94, 0.2);
  border-color: rgba(188, 216, 94, 0.6);
  color: #BCD85E;
}
.step.highlight .step-text[data-v-de996c9c] {
  color: #BCD85E;
  font-weight: 700;
}
.btn-cta[data-v-de996c9c] {
  --border-color: #598ac3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.15s, background-color 0.15s;
}
.btn-cta[data-v-de996c9c]:hover {
  box-shadow: 0 0 0 2px var(--border-color) inset;
  filter: brightness(0.85);
}

/* Review Modal */
.review-modal-overlay[data-v-de996c9c] {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 12, 16, 0.92);
  backdrop-filter: blur(12px);
  animation: fadeIn-de996c9c 0.25s ease-out;
}
@keyframes fadeIn-de996c9c {
from { opacity: 0;
}
to { opacity: 1;
}
}
.review-modal[data-v-de996c9c] {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #1a2538 0%, #131c2a 50%, #0f1620 100%);
  border: 1px solid rgba(105, 162, 227, 0.25);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(105, 162, 227, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: modalSlideUp-de996c9c 0.3s ease-out;
}
@keyframes modalSlideUp-de996c9c {
from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
.review-modal-close[data-v-de996c9c] {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.review-modal-close[data-v-de996c9c]:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}
.review-modal-header[data-v-de996c9c] {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 24px;
  max-width: calc(100% - 56px);
  transition: opacity 0.2s;
}
.review-modal-header[data-v-de996c9c]:hover {
  opacity: 0.85;
}
.review-modal-header:hover .review-username[data-v-de996c9c] {
  color: var(--accent-blue);
}
.review-avatar-lg[data-v-de996c9c] {
  width: 56px;
  height: 56px;
  font-size: 22px;
}
.review-modal-header .review-name[data-v-de996c9c] {
  font-size: 18px;
}
.review-modal-header .review-username[data-v-de996c9c] {
  font-size: 14px;
}
.review-modal-content[data-v-de996c9c] {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-right: 8px;
}
.review-modal-content[data-v-de996c9c]::-webkit-scrollbar {
  width: 6px;
}
.review-modal-content[data-v-de996c9c]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
}
.review-modal-content[data-v-de996c9c]::-webkit-scrollbar-thumb {
  background: rgba(105, 162, 227, 0.3);
  border-radius: 3px;
}
.review-modal-content[data-v-de996c9c]::-webkit-scrollbar-thumb:hover {
  background: rgba(105, 162, 227, 0.5);
}
.review-modal-text[data-v-de996c9c] {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  white-space: pre-wrap;
}
.review-modal .review-date[data-v-de996c9c] {
  font-size: 13px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Skeleton Loading */
@keyframes skeleton-shimmer-de996c9c {
0% { transform: translateX(-100%);
}
100% { transform: translateX(100%);
}
}
.skeleton[data-v-de996c9c] {
  background: rgba(105, 162, 227, 0.1);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.skeleton[data-v-de996c9c]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  animation: skeleton-shimmer-de996c9c 3s ease-in-out infinite;
}
.skeleton-card[data-v-de996c9c] {
  width: 380px;
}
.skeleton-card .card-frame[data-v-de996c9c] {
  width: 380px;
  height: 543px;
  background: rgba(20, 30, 45, 0.8);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.skeleton-card .card-frame[data-v-de996c9c]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  animation: skeleton-shimmer-de996c9c 3s ease-in-out infinite;
}
.skeleton-card .price-panel[data-v-de996c9c] {
  width: 380px;
}
.skeleton-price[data-v-de996c9c] {
  width: 100px;
  height: 24px;
}
.skeleton-btn[data-v-de996c9c] {
  width: 100%;
  height: 48px;
}

/* Responsive */
@media (max-width: 1280px) {
.editions[data-v-de996c9c] {
    flex-wrap: wrap;
    max-width: 820px;
    margin: 0 auto;
}
}
@media (max-width: 900px) {
.editions[data-v-de996c9c] {
    max-width: 400px;
}
}
@media (max-width: 768px) {
.reviews-header[data-v-de996c9c] {
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.reviews-title[data-v-de996c9c] {
    font-size: 20px;
}
.reviews-grid[data-v-de996c9c] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.editions[data-v-de996c9c] {
    max-width: 100%;
    padding: 20px 16px;
}
.edition-card[data-v-de996c9c],
  .card-frame[data-v-de996c9c],
  .skeleton-card[data-v-de996c9c],
  .skeleton-card .card-frame[data-v-de996c9c] {
    width: 100%;
    max-width: 380px;
}
.card-frame[data-v-de996c9c],
  .skeleton-card .card-frame[data-v-de996c9c] {
    height: auto;
    aspect-ratio: 380 / 543;
}
.price-panel[data-v-de996c9c],
  .skeleton-card .price-panel[data-v-de996c9c] {
    width: 100%;
    max-width: 380px;
}
.steps[data-v-de996c9c] {
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.step[data-v-de996c9c] {
    flex-direction: column;
    text-align: center;
}
.step-arrow[data-v-de996c9c] {
    display: none;
}
.reviews-section[data-v-de996c9c] {
    padding: 32px 0;
}
.review-card[data-v-de996c9c] {
    padding: 20px;
}
.review-avatar[data-v-de996c9c] {
    width: 38px;
    height: 38px;
    font-size: 16px;
}
.review-modal[data-v-de996c9c] {
    padding: 24px;
    max-height: 85vh;
}
.review-avatar-lg[data-v-de996c9c] {
    width: 48px;
    height: 48px;
    font-size: 20px;
}
.review-modal-header .review-name[data-v-de996c9c] {
    font-size: 16px;
}
.review-modal-text[data-v-de996c9c] {
    font-size: 15px;
}
.review-modal-close[data-v-de996c9c] {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
}
}

.r-content-loader[data-v-a7af9432] {
  width: 100%;
  padding: 2rem;
}

/* Skeleton shimmer animation */
@keyframes shimmer-a7af9432 {
0% {
    background-position: -200% 0;
}
100% {
    background-position: 200% 0;
}
}

/* Base skeleton element */
.r-skeleton-line[data-v-a7af9432],
.r-skeleton-title[data-v-a7af9432],
.r-skeleton-nav-item[data-v-a7af9432],
.r-skeleton-card[data-v-a7af9432],
.r-skeleton-card-image[data-v-a7af9432] {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: shimmer-a7af9432 1.5s ease-in-out infinite;
  border-radius: 6px;
}

/* Line sizes */
.r-skeleton-line[data-v-a7af9432] {
  height: 14px;
  margin-bottom: 12px;
}
.r-skeleton-line--full[data-v-a7af9432] { width: 100%;
}
.r-skeleton-line--lg[data-v-a7af9432] { width: 80%;
}
.r-skeleton-line--md[data-v-a7af9432] { width: 60%;
}
.r-skeleton-line--sm[data-v-a7af9432] { width: 40%;
}

/* Title */
.r-skeleton-title[data-v-a7af9432] {
  height: 28px;
  width: 200px;
  margin-bottom: 24px;
}

/* Cabinet layout */
.r-skeleton-cabinet[data-v-a7af9432] {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.r-skeleton-sidebar[data-v-a7af9432] {
  width: 240px;
  flex-shrink: 0;
}
.r-skeleton-header[data-v-a7af9432] {
  margin-bottom: 24px;
}
.r-skeleton-nav[data-v-a7af9432] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.r-skeleton-nav-item[data-v-a7af9432] {
  height: 40px;
  border-radius: 8px;
}
.r-skeleton-content[data-v-a7af9432] {
  flex: 1;
}
.r-skeleton-card[data-v-a7af9432] {
  padding: 24px;
  border-radius: 12px;
  min-height: 200px;
}

/* Cards grid */
.r-skeleton-cards[data-v-a7af9432] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.r-skeleton-card-item[data-v-a7af9432] {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.r-skeleton-card-image[data-v-a7af9432] {
  height: 180px;
  border-radius: 0;
}
.r-skeleton-card-body[data-v-a7af9432] {
  padding: 20px;
}

/* Default layout */
.r-skeleton-default[data-v-a7af9432] {
  max-width: 800px;
  margin: 0 auto;
}
.r-skeleton-paragraph[data-v-a7af9432] {
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
.r-skeleton-cabinet[data-v-a7af9432] {
    flex-direction: column;
}
.r-skeleton-sidebar[data-v-a7af9432] {
    width: 100%;
}
}

.donate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px;
}
.donate-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, rgba(20, 28, 40, 0.98) 0%, rgba(15, 22, 32, 0.99) 100%);
  border: 3px solid transparent;
  -o-border-image: url('data:image/webp;base64,UklGRiQCAABXRUJQVlA4WAoAAAAQAAAAUwAAUwAAQUxQSGwAAAABcBtJkiK1F+PEWbIG7YpnFY09o97TyAvaYz9TREwAIFFt10huTZMACN7IeoB4o+uSGuGo++GC91NjZFtGu8bo0KcGqP799+K15yW1Ez4tKqNtZmQLIx32Y5m6yscFfWXjAUA3Lrmy2JlGAQBWUDggkgEAADAOAJ0BKlQAVAA+kT6VSDsjoiEx1NmDYBIJZwDNBNBJ+xrQbIlY6axn7kD7p5yHtX7IRlN4HDIar2/UxGf6At52l7YCKLWcIb8nKz+QsYH+TlBVaCuWMCKBx9tLTSx63L8ESEcyoF5wdB3CshEy0ulDBWownbbsZBMAAP7MmgoivNK3iu9tiwSgfCiMtV8smY1d0t8Bw7Hb/WsJOMEzjdqQ3PE9wTPrKE/VdBifgfCtIU0UCdHRIwlqstqDRTYu+ibNDLjxEUcmRuViwswzq2uUz6qG4lG5uiRK4bwvl/4OUko9eimOxua/083gvaRdHu4B7el+mBBPRyPTS8j/NAEr3G4Nfm2p1e5SHCAB+bjUl5uewn3c3aD0ewAFDgA+ByflASVWmlCi4vhPj3UrlLwXR3uRqLxBUUfWOdWoN409zWpOrAC0/YVNm+5hgqitSJxWYXDRO8PbNxUeUBRYaGzar99kz4iBLqLiUDlw9ppfKlpzrDJFlZCWIJhu6cE9BrdNVgZZUxmAPcAzra7xhAAAAA==') 28 28 stretch;
     border-image: url('data:image/webp;base64,UklGRiQCAABXRUJQVlA4WAoAAAAQAAAAUwAAUwAAQUxQSGwAAAABcBtJkiK1F+PEWbIG7YpnFY09o97TyAvaYz9TREwAIFFt10huTZMACN7IeoB4o+uSGuGo++GC91NjZFtGu8bo0KcGqP799+K15yW1Ez4tKqNtZmQLIx32Y5m6yscFfWXjAUA3Lrmy2JlGAQBWUDggkgEAADAOAJ0BKlQAVAA+kT6VSDsjoiEx1NmDYBIJZwDNBNBJ+xrQbIlY6axn7kD7p5yHtX7IRlN4HDIar2/UxGf6At52l7YCKLWcIb8nKz+QsYH+TlBVaCuWMCKBx9tLTSx63L8ESEcyoF5wdB3CshEy0ulDBWownbbsZBMAAP7MmgoivNK3iu9tiwSgfCiMtV8smY1d0t8Bw7Hb/WsJOMEzjdqQ3PE9wTPrKE/VdBifgfCtIU0UCdHRIwlqstqDRTYu+ibNDLjxEUcmRuViwswzq2uUz6qG4lG5uiRK4bwvl/4OUko9eimOxua/083gvaRdHu4B7el+mBBPRyPTS8j/NAEr3G4Nfm2p1e5SHCAB+bjUl5uewn3c3aD0ewAFDgA+ByflASVWmlCi4vhPj3UrlLwXR3uRqLxBUUfWOdWoN409zWpOrAC0/YVNm+5hgqitSJxWYXDRO8PbNxUeUBRYaGzar99kz4iBLqLiUDlw9ppfKlpzrDJFlZCWIJhu6cE9BrdNVgZZUxmAPcAzra7xhAAAAA==') 28 28 stretch;
  border-image-outset: 1px;
  border-image-width: 18px;
  border-radius: 2px;
  outline: 1px solid #182438;
  padding: 28px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.donate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.donate-back {
  padding: 4px;
  background: none;
  border: none;
  color: rgba(183, 206, 221, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.donate-back:hover {
  color: #fff;
}
.donate-close {
  padding: 4px;
  background: none;
  border: none;
  color: rgba(183, 206, 221, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donate-close:hover {
  color: #fff;
}
.donate-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f5fbff, #b7d4ec);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex: 1;
}
.donate-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(183, 206, 221, 0.6);
}
.donate-desc strong {
  color: rgba(236, 188, 98, 0.9);
}
.donate-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.donate-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(32, 54, 88, 0.3);
  border: 2px solid rgba(89, 138, 195, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-align: left;
  color: white;
}
.donate-option:hover {
  background: rgba(32, 54, 88, 0.5);
  border-color: rgba(89, 138, 195, 0.4);
}
.donate-option-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255, 107, 107, 0.06);
  border: 1px solid rgba(255, 107, 107, 0.12);
}
.donate-option-icon--rutii {
  background: rgba(74, 156, 216, 0.06);
  border-color: rgba(74, 156, 216, 0.12);
}
.donate-option-content {
  flex: 1;
  min-width: 0;
}
.donate-option-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.donate-option-desc {
  display: block;
  font-size: 12px;
  color: rgba(183, 206, 221, 0.5);
  line-height: 1.5;
}
.donate-option-desc--lock {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(236, 188, 98, 0.6);
}
.donate-option--locked {
  opacity: 0.7;
}
.donate-option--locked .donate-option-arrow {
  display: none;
}
.donate-option-arrow {
  flex-shrink: 0;
  color: rgba(183, 206, 221, 0.25);
  transition: color 0.15s, transform 0.15s;
}
.donate-option:hover .donate-option-arrow {
  color: rgba(183, 206, 221, 0.5);
  transform: translateX(2px);
}
.donate-footer {
  margin: 16px 0 0;
  font-size: 12px;
  color: rgba(183, 206, 221, 0.35);
  text-align: center;
}

/* ===== FREE DONATION VIEW ===== */
.free-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(236, 188, 98, 0.06);
  border: 1px solid rgba(236, 188, 98, 0.15);
  border-radius: 4px;
  margin-bottom: 16px;
}
.free-notice-icon {
  flex-shrink: 0;
  color: rgba(236, 188, 98, 0.7);
  margin-top: 1px;
}
.free-notice-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(183, 206, 221, 0.8);
}
.free-comment-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(15, 22, 35, 0.6);
  border: 1px solid rgba(89, 138, 195, 0.25);
  border-radius: 4px;
  margin-bottom: 12px;
}
.free-comment-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.free-comment-copy {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(89, 138, 195, 0.15);
  border: 1px solid rgba(89, 138, 195, 0.3);
  border-radius: 4px;
  color: rgba(183, 206, 221, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.free-comment-copy:hover {
  background: rgba(89, 138, 195, 0.25);
  border-color: rgba(89, 138, 195, 0.45);
  color: #fff;
}
.free-hint {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(183, 206, 221, 0.4);
}
.free-donate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(224, 64, 80, 0.15), rgba(255, 107, 107, 0.15));
  border: 2px solid rgba(255, 107, 107, 0.4);
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.free-donate-btn:hover {
  background: linear-gradient(90deg, rgba(224, 64, 80, 0.25), rgba(255, 107, 107, 0.25));
  border-color: rgba(255, 107, 107, 0.6);
  box-shadow: 0 0 16px rgba(255, 107, 107, 0.15);
}

/* ===== RUTII CONVERSION VIEW ===== */
.rutii-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.rutii-package {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 8px 12px;
  background: rgba(32, 54, 88, 0.3);
  border: 2px solid rgba(89, 138, 195, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  color: white;
}
.rutii-package:hover {
  background: rgba(32, 54, 88, 0.5);
  border-color: rgba(89, 138, 195, 0.35);
}
.rutii-package--selected {
  background: rgba(89, 138, 195, 0.15);
  border-color: rgba(89, 138, 195, 0.5);
  box-shadow: 0 0 12px rgba(89, 138, 195, 0.15);
}
.rutii-package-label {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1px 8px;
  background: linear-gradient(90deg, #465da9, #4578aa);
  border: 1px solid #598ac3;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.rutii-package-total {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #ecbc62;
  line-height: 1;
}
.rutii-package-unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(236, 188, 98, 0.5);
}
.rutii-package-bonus {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(130, 220, 130, 0.8);
  margin-top: 2px;
}
.rutii-package-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(183, 206, 221, 0.7);
  margin-top: 4px;
}

/* Custom amount */
.rutii-custom {
  margin-bottom: 16px;
  padding: 14px 16px;
  background: rgba(32, 54, 88, 0.2);
  border: 2px solid rgba(89, 138, 195, 0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.rutii-custom:hover {
  border-color: rgba(89, 138, 195, 0.3);
}
.rutii-custom--active {
  background: rgba(89, 138, 195, 0.1);
  border-color: rgba(89, 138, 195, 0.5);
  box-shadow: 0 0 12px rgba(89, 138, 195, 0.1);
}
.rutii-custom-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(183, 206, 221, 0.45);
  margin-bottom: 8px;
}
.rutii-custom-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rutii-custom-input-wrap {
  position: relative;
  flex: 1;
}
.rutii-custom-input {
  width: 100%;
  padding: 8px 36px 8px 12px;
  background: rgba(15, 22, 35, 0.6);
  border: 1px solid rgba(89, 138, 195, 0.2);
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
.rutii-custom-input::-webkit-outer-spin-button,
.rutii-custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.rutii-custom-input:focus {
  border-color: rgba(89, 138, 195, 0.45);
}
.rutii-custom-currency {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(183, 206, 221, 0.3);
  pointer-events: none;
}
.rutii-custom-hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(183, 206, 221, 0.35);
}
.rutii-result-bonus {
  font-size: 13px;
  font-weight: 700;
  color: rgba(130, 220, 130, 0.8);
}
.rutii-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(236, 188, 98, 0.06);
  border: 1px solid rgba(236, 188, 98, 0.15);
  border-radius: 4px;
  margin-bottom: 16px;
}
.rutii-result-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(183, 206, 221, 0.5);
}
.rutii-result-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ecbc62;
}
.rutii-result-icon {
  flex-shrink: 0;
}
.rutii-result-unit {
  font-size: 14px;
  font-weight: 600;
  color: rgba(236, 188, 98, 0.6);
}
.rutii-pay-btn {
  width: 100%;
  padding: 12px 16px;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  border: 2px solid #598ac3;
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.15s, filter 0.15s;
}
.rutii-pay-btn:hover:not(:disabled) {
  box-shadow: 0 0 0 2px #598ac3 inset;
  filter: brightness(0.85);
}
.rutii-pay-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ===== ACTIVE PAYMENT VIEW ===== */
.rutii-payment-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(236, 188, 98, 0.06);
  border: 1px solid rgba(236, 188, 98, 0.15);
  border-radius: 4px;
  margin-bottom: 16px;
}
.rutii-payment-amount {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rutii-payment-amount-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ecbc62;
  line-height: 1;
}
.rutii-payment-amount-unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(236, 188, 98, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rutii-payment-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(183, 206, 221, 0.6);
}

/* QR Code Section */
.rutii-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rutii-qr-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(183, 206, 221, 0.45);
}
.rutii-qr-wrapper {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rutii-qr-wrapper :deep(svg) {
  width: 180px;
  height: 180px;
}
.rutii-qr-loading {
  width: 204px;
  height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.rutii-qr-hint {
  margin: 0;
  font-size: 12px;
  color: rgba(183, 206, 221, 0.4);
  text-align: center;
}

/* Spinner */
.rutii-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(105, 162, 227, 0.2);
  border-top-color: #69a2e3;
  border-radius: 50%;
  animation: rutii-spin 1s linear infinite;
}
.rutii-spinner--sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-color: rgba(188, 216, 94, 0.3);
  border-top-color: #BCD85E;
}
@keyframes rutii-spin {
to { transform: rotate(360deg);
}
}

/* Mobile: Open in bank */
.rutii-bank-btn {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  border: 2px solid #598ac3;
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.15s, filter 0.15s;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rutii-bank-btn:hover {
  box-shadow: 0 0 0 2px #598ac3 inset;
  filter: brightness(0.85);
}
@media (max-width: 768px) {
.rutii-bank-btn {
    display: flex;
}
}

/* Payment Status */
.rutii-payment-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(188, 216, 94, 0.12) 0%, rgba(105, 162, 227, 0.12) 100%);
  border: 1px solid rgba(188, 216, 94, 0.25);
  border-radius: 4px;
  margin-bottom: 12px;
}
.rutii-payment-status-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #BCD85E;
  letter-spacing: 0.3px;
}
.rutii-payment-error {
  margin: 0 0 12px;
  padding: 10px 14px;
  background: rgba(255, 100, 100, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.2);
  border-radius: 4px;
  font-size: 13px;
  color: rgba(255, 120, 120, 0.9);
  text-align: center;
}
.rutii-cancel-btn {
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 4px;
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 4px;
}
.rutii-cancel-btn:hover:not(:disabled) {
  background: rgba(255, 68, 68, 0.1);
  border-color: rgba(255, 68, 68, 0.5);
}
.rutii-cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* DEV: Simulate success button */
.rutii-simulate-btn {
  width: 100%;
  padding: 10px 16px;
  background: rgba(236, 188, 98, 0.1);
  border: 1px dashed rgba(236, 188, 98, 0.4);
  border-radius: 4px;
  color: #ecbc62;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 4px;
}
.rutii-simulate-btn:hover:not(:disabled) {
  background: rgba(236, 188, 98, 0.18);
  border-color: rgba(236, 188, 98, 0.6);
}
.rutii-simulate-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Transitions */
.donate-fade-enter-active,
.donate-fade-leave-active {
  transition: opacity 0.25s ease;
}
.donate-fade-enter-from,
.donate-fade-leave-to {
  opacity: 0;
}
.donate-fade-enter-active .donate-modal,
.donate-fade-leave-active .donate-modal {
  transition: transform 0.25s ease;
}
.donate-fade-enter-from .donate-modal {
  transform: scale(0.95) translateY(10px);
}
.donate-fade-leave-to .donate-modal {
  transform: scale(0.95) translateY(10px);
}

/* Mobile */
@media (max-width: 768px) {
.donate-overlay {
    padding: 10px;
}
.donate-modal {
    max-width: 100%;
    padding: 20px;
}
.donate-option {
    padding: 14px;
    gap: 12px;
}
.donate-option-icon {
    width: 40px;
    height: 40px;
}
.donate-option-icon svg {
    width: 22px;
    height: 22px;
}
.donate-title {
    font-size: 16px;
}
.rutii-packages {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.rutii-package {
    padding: 12px 6px 10px;
}
.rutii-package-total {
    font-size: 20px;
}
.rutii-result-value {
    font-size: 20px;
}
.rutii-custom-input {
    font-size: 16px;
}
.free-comment-block {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.free-comment-copy {
    justify-content: center;
}
}
@media (max-width: 480px) {
.donate-overlay {
    padding: 0;
}
.donate-modal {
    border-radius: 0;
    -o-border-image: none;
       border-image: none;
    border: 1px solid rgba(89, 138, 195, 0.2);
    outline: none;
    padding: 20px;
}
.rutii-packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
.rutii-package-total {
    font-size: 18px;
}
.rutii-package-label {
    font-size: 8px;
}
}

/* ===== FAB Button ===== */
.r-chat-fab[data-v-f50ab8a1] {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  border: 2px solid #598ac3;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(69, 120, 170, 0.4);
  z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}
.r-chat-fab[data-v-f50ab8a1]:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(69, 120, 170, 0.55);
  filter: brightness(1.1);
}
.r-chat-fab--open[data-v-f50ab8a1] {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
.r-chat-badge[data-v-f50ab8a1] {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: #ff4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== Chat Window ===== */
.r-chat-window[data-v-f50ab8a1] {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 400px;
  height: 560px;
  max-height: calc(100vh - 48px);
  max-width: calc(100vw - 48px);
  background: linear-gradient(160deg, #1a2538 0%, #131c2a 50%, #0f1620 100%);
  border: 1px solid rgba(105, 162, 227, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
  z-index: 900;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ===== Transitions ===== */
.r-chat-slide-enter-active[data-v-f50ab8a1] { transition: all 0.25s ease-out;
}
.r-chat-slide-leave-active[data-v-f50ab8a1] { transition: all 0.2s ease-in;
}
.r-chat-slide-enter-from[data-v-f50ab8a1],
.r-chat-slide-leave-to[data-v-f50ab8a1] {
  opacity: 0;
  transform: translateY(16px) scale(0.95);
}
.r-chat-fade-enter-active[data-v-f50ab8a1],
.r-chat-fade-leave-active[data-v-f50ab8a1] { transition: opacity 0.15s;
}
.r-chat-fade-enter-from[data-v-f50ab8a1],
.r-chat-fade-leave-to[data-v-f50ab8a1] { opacity: 0;
}

/* ===== Header ===== */
.r-chat-header[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 14px;
  background: #203658;
  border-bottom: 1px solid rgba(105, 162, 227, 0.15);
  flex-shrink: 0;
}
.r-chat-header-profile[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.r-chat-header-avatar-wrap[data-v-f50ab8a1] {
  position: relative;
  flex-shrink: 0;
}
.r-chat-header-avatar[data-v-f50ab8a1] {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  image-rendering: pixelated;
  display: block;
}
.r-chat-header-avatar-wrap .r-chat-status[data-v-f50ab8a1] {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border: 2px solid #203658;
  border-radius: 50%;
}
.r-chat-header-info[data-v-f50ab8a1] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.r-chat-header-title[data-v-f50ab8a1] {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary, #fff);
  text-shadow: 0 2px 4px rgba(22, 36, 86, 0.3);
  line-height: 1.2;
}
.r-chat-header-subtitle[data-v-f50ab8a1] {
  font-size: 12px;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}
.r-chat-header-searching[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted, rgba(255,255,255,0.45));
  line-height: 1.2;
}
.r-chat-header-searching-dots[data-v-f50ab8a1] {
  display: flex;
  gap: 2px;
}
.r-chat-header-searching-dots span[data-v-f50ab8a1] {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted, rgba(255,255,255,0.4));
  animation: r-chat-typing-bounce-f50ab8a1 1.2s ease-in-out infinite;
}
.r-chat-header-searching-dots span[data-v-f50ab8a1]:nth-child(2) { animation-delay: 0.2s;
}
.r-chat-header-searching-dots span[data-v-f50ab8a1]:nth-child(3) { animation-delay: 0.4s;
}
.r-chat-status[data-v-f50ab8a1] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.r-chat-status--online[data-v-f50ab8a1] {
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}
.r-chat-status--offline[data-v-f50ab8a1] {
  background: #ff9800;
  animation: r-chat-pulse-f50ab8a1 1.5s ease-in-out infinite;
}
@keyframes r-chat-pulse-f50ab8a1 {
0%, 100% { opacity: 1;
}
50% { opacity: 0.4;
}
}
.r-chat-close[data-v-f50ab8a1] {
  background: none;
  border: none;
  color: var(--text-muted, rgba(255,255,255,0.5));
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.r-chat-close[data-v-f50ab8a1]:hover {
  color: var(--text-primary, #fff);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Name Card (inline in messages area) ===== */
.r-chat-name-card[data-v-f50ab8a1] {
  align-self: flex-end;
  width: 85%;
  margin-top: 12px;
  background: rgba(20, 28, 40, 0.8);
  border: 1px solid rgba(105, 162, 227, 0.15);
  border-radius: 12px;
  padding: 12px;
}
.r-chat-name-card-label[data-v-f50ab8a1] {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary, rgba(255,255,255,0.6));
  margin: 0 0 8px;
}
.r-chat-name-card-form[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.r-chat-name-card-input[data-v-f50ab8a1] {
  flex: 1;
  height: 36px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color, #1a2535);
  border-radius: 8px;
  color: var(--text-primary, #fff);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.r-chat-name-card-input[data-v-f50ab8a1]:focus {
  border-color: var(--accent-blue, #69A2E3);
}
.r-chat-name-card-input[data-v-f50ab8a1]::-moz-placeholder {
  color: var(--text-muted, rgba(255,255,255,0.35));
}
.r-chat-name-card-input[data-v-f50ab8a1]::placeholder {
  color: var(--text-muted, rgba(255,255,255,0.35));
}
.r-chat-name-card-btn[data-v-f50ab8a1] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  border: 2px solid #598ac3;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.15s;
}
.r-chat-name-card-btn[data-v-f50ab8a1]:hover:not(:disabled) {
  filter: brightness(1.15);
}
.r-chat-name-card-btn[data-v-f50ab8a1]:active:not(:disabled) {
  filter: brightness(0.9);
}
.r-chat-name-card-btn[data-v-f50ab8a1]:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.r-chat-name-card-error[data-v-f50ab8a1] {
  color: #ff6b6b;
  font-size: 12px;
  margin: 6px 0 0;
}



/* ===== Messages ===== */
.r-chat-messages[data-v-f50ab8a1] {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.r-chat-messages[data-v-f50ab8a1]::-webkit-scrollbar { width: 8px;
}
.r-chat-messages[data-v-f50ab8a1]::-webkit-scrollbar-track { background: transparent;
}
.r-chat-messages[data-v-f50ab8a1]::-webkit-scrollbar-thumb {
  background: var(--border-color, #1a2535);
  border-radius: 4px;
}
.r-chat-messages[data-v-f50ab8a1]::-webkit-scrollbar-thumb:hover {
  background: rgba(105, 162, 227, 0.3);
}
.r-chat-sentinel[data-v-f50ab8a1] {
  height: 1px;
  flex-shrink: 0;
}
.r-chat-loading[data-v-f50ab8a1] {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  flex-shrink: 0;
}
.r-chat-spinner[data-v-f50ab8a1] {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-blue, #69A2E3);
  border-radius: 50%;
  animation: r-chat-spin-f50ab8a1 0.6s linear infinite;
}
@keyframes r-chat-spin-f50ab8a1 {
to { transform: rotate(360deg);
}
}
.r-chat-empty[data-v-f50ab8a1] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.r-chat-empty p[data-v-f50ab8a1] {
  color: var(--text-muted, rgba(255,255,255,0.5));
  font-size: 14px;
  margin: 0;
}

/* ===== Message Bubble ===== */
.r-chat-msg[data-v-f50ab8a1] {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  word-break: break-word;
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.r-chat-msg--highlight[data-v-f50ab8a1] {
  background: rgba(105, 162, 227, 0.15) !important;
}
.r-chat-msg--user[data-v-f50ab8a1] {
  align-self: flex-end;
  background: rgba(105, 162, 227, 0.12);
  border: 1px solid rgba(105, 162, 227, 0.2);
  border-bottom-right-radius: 4px;
}
.r-chat-msg--operator[data-v-f50ab8a1] {
  align-self: flex-start;
  background: rgba(20, 28, 40, 0.8);
  border: 1px solid rgba(105, 162, 227, 0.1);
  border-bottom-left-radius: 4px;
}
.r-chat-msg--system[data-v-f50ab8a1] {
  align-self: center;
  max-width: 90%;
  padding: 6px 14px;
  background: rgba(105, 162, 227, 0.06);
  border: none;
  border-radius: 8px;
}

/* Emoji-only messages — large emojis, no bubble */
.r-chat-msg--emoji-only[data-v-f50ab8a1] {
  background: none !important;
  border: none !important;
  padding: 4px 0;
}
.r-chat-msg--emoji-only .r-chat-msg-text[data-v-f50ab8a1] {
  font-size: 36px;
  line-height: 1.2;
}
.r-chat-msg--emoji-only .r-chat-msg-time-inline[data-v-f50ab8a1] {
  font-size: 11px;
}
.r-chat-msg-system[data-v-f50ab8a1] {
  font-size: 12px;
  color: var(--text-muted, rgba(255,255,255,0.5));
  text-align: center;
  letter-spacing: 0.02em;
}

/* Operator author */
.r-chat-msg-author[data-v-f50ab8a1] {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent-blue, #69A2E3);
  margin-bottom: 4px;
}
.r-chat-msg-avatar[data-v-f50ab8a1] {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  image-rendering: pixelated;
}

/* ===== Quick Actions Menu (above bubble) ===== */
.r-chat-quickmenu[data-v-f50ab8a1] {
  position: absolute;
  bottom: calc(100% - 4px);
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  background: linear-gradient(145deg, #1a2538, #131c2a);
  border: 1px solid rgba(105, 162, 227, 0.25);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.r-chat-quickmenu--bottom[data-v-f50ab8a1] {
  bottom: auto;
  top: calc(100% - 4px);
}
.r-chat-msg--user .r-chat-quickmenu[data-v-f50ab8a1] {
  right: 0;
}
.r-chat-msg--operator .r-chat-quickmenu[data-v-f50ab8a1] {
  left: 0;
}
.r-chat-quickmenu-emoji[data-v-f50ab8a1] {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s;
  line-height: 1;
}
.r-chat-quickmenu-emoji[data-v-f50ab8a1]:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.25);
}
.r-chat-quickmenu-emoji[data-v-f50ab8a1]:active {
  transform: scale(0.9);
}
.r-chat-quickmenu-divider[data-v-f50ab8a1] {
  width: 1px;
  height: 20px;
  background: var(--border-color, #1a2535);
  margin: 0 2px;
  flex-shrink: 0;
}
.r-chat-quickmenu-action[data-v-f50ab8a1] {
  background: none;
  border: none;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.r-chat-quickmenu-action[data-v-f50ab8a1]:hover {
  color: var(--accent-blue, #69A2E3);
  background: rgba(255, 255, 255, 0.1);
}

/* Reply-to inside message */
.r-chat-msg-reply[data-v-f50ab8a1] {
  display: flex;
  gap: 6px;
  padding: 4px 8px;
  margin-bottom: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.15s;
  align-self: stretch;
}
.r-chat-msg-reply[data-v-f50ab8a1]:hover {
  background: rgba(255, 255, 255, 0.08);
}
.r-chat-msg-reply-bar[data-v-f50ab8a1] {
  width: 2px;
  border-radius: 1px;
  background: var(--accent-blue, #69A2E3);
  flex-shrink: 0;
}
.r-chat-msg-reply-content[data-v-f50ab8a1] {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 1px;
}
.r-chat-msg-reply-author[data-v-f50ab8a1] {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-blue, #69A2E3);
}
.r-chat-msg-reply-text[data-v-f50ab8a1] {
  font-size: 12px;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* File attachment */
.r-chat-msg-file[data-v-f50ab8a1] {
  margin-bottom: 4px;
  align-self: stretch;
}
.r-chat-msg-img-link[data-v-f50ab8a1] {
  display: block;
}
.r-chat-msg-img[data-v-f50ab8a1] {
  max-width: 100%;
  max-height: 280px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, 0.03);
}
.r-chat-msg-doc[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary, #fff);
  text-decoration: none;
  transition: background 0.15s;
}
.r-chat-msg-doc[data-v-f50ab8a1]:hover {
  background: rgba(255, 255, 255, 0.08);
}
.r-chat-msg-doc-info[data-v-f50ab8a1] {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.r-chat-msg-doc-name[data-v-f50ab8a1] {
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.r-chat-msg-doc-size[data-v-f50ab8a1] {
  font-size: 11px;
  color: var(--text-muted, rgba(255,255,255,0.5));
}

/* Message body (text + inline time) */
.r-chat-msg-body[data-v-f50ab8a1] {
  align-self: stretch;
  cursor: pointer;
  position: relative;
}

/* Message text */
.r-chat-msg-text[data-v-f50ab8a1] {
  font-size: 14px;
  color: var(--text-primary, #fff);
  margin: 0;
  line-height: 1.45;
  white-space: pre-wrap;
  display: inline;
}

/* Inline time (Telegram-style, floats to bottom-right of text) */
.r-chat-msg-time-inline[data-v-f50ab8a1] {
  float: right;
  font-size: 10px;
  color: var(--text-muted, rgba(255,255,255,0.35));
  margin-left: 8px;
  margin-top: 4px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  top: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.r-chat-msg-edited[data-v-f50ab8a1] {
  font-style: italic;
  margin-right: 3px;
}

/* Send status indicators */
.r-chat-msg-status[data-v-f50ab8a1] {
  display: inline-flex;
  align-items: center;
  margin-left: 3px;
  vertical-align: middle;
}
.r-chat-msg-status--sending[data-v-f50ab8a1] {
  color: rgba(255,255,255,0.4);
}
.r-chat-msg-status--failed[data-v-f50ab8a1] {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 11px;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 68, 68, 0.2);
  line-height: 1;
}
.r-chat-msg--sending[data-v-f50ab8a1] {
  opacity: 0.7;
}
.r-chat-msg--failed[data-v-f50ab8a1] {
  opacity: 0.8;
}
.r-chat-msg-send-error[data-v-f50ab8a1] {
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
  padding-left: 2px;
}

/* Reactions */
.r-chat-msg-reactions[data-v-f50ab8a1] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.r-chat-reaction-btn[data-v-f50ab8a1] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary, rgba(255,255,255,0.7));
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  line-height: 1;
  white-space: nowrap;
}
.r-chat-reaction-btn[data-v-f50ab8a1]:hover {
  background: rgba(255, 255, 255, 0.12);
}
.r-chat-reaction-btn[data-v-f50ab8a1]:active {
  transform: scale(0.92);
}
.r-chat-reaction-btn--active[data-v-f50ab8a1] {
  background: rgba(105, 162, 227, 0.2);
  color: var(--accent-blue, #69A2E3);
}
.r-chat-reaction-btn--active[data-v-f50ab8a1]:hover {
  background: rgba(105, 162, 227, 0.28);
}
.r-chat-reaction-emoji[data-v-f50ab8a1] {
  font-size: 17px;
  line-height: 1;
}
.r-chat-reaction-count[data-v-f50ab8a1] {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

/* Typing indicator */
.r-chat-typing[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.r-chat-typing-dots[data-v-f50ab8a1] {
  display: flex;
  gap: 3px;
}
.r-chat-typing-dots span[data-v-f50ab8a1] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted, rgba(255,255,255,0.4));
  animation: r-chat-typing-bounce-f50ab8a1 1.2s ease-in-out infinite;
}
.r-chat-typing-dots span[data-v-f50ab8a1]:nth-child(2) { animation-delay: 0.2s;
}
.r-chat-typing-dots span[data-v-f50ab8a1]:nth-child(3) { animation-delay: 0.4s;
}
@keyframes r-chat-typing-bounce-f50ab8a1 {
0%, 60%, 100% { transform: translateY(0); opacity: 0.4;
}
30% { transform: translateY(-4px); opacity: 1;
}
}
.r-chat-typing-text[data-v-f50ab8a1] {
  font-size: 12px;
  color: var(--text-muted, rgba(255,255,255,0.5));
}

/* Scroll to bottom button */
.r-chat-scroll-btn[data-v-f50ab8a1] {
  position: sticky;
  bottom: 8px;
  align-self: flex-end;
  margin-right: 12px;
  margin-top: -44px;
  width: 36px;
  height: 36px;
  min-height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(20, 28, 40, 0.9);
  border: 1px solid rgba(105, 162, 227, 0.2);
  color: var(--text-secondary, rgba(255,255,255,0.7));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 5;
  transition: all 0.15s;
}
.r-chat-scroll-btn[data-v-f50ab8a1]:hover {
  background: rgba(26, 37, 56, 0.95);
  color: var(--text-primary, #fff);
  border-color: rgba(105, 162, 227, 0.35);
}
.r-chat-scroll-badge[data-v-f50ab8a1] {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent-blue, #69A2E3);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Reconnecting ===== */
.r-chat-reconnecting[data-v-f50ab8a1] {
  padding: 6px 16px;
  background: rgba(255, 152, 0, 0.1);
  border-top: 1px solid rgba(255, 152, 0, 0.2);
  color: #ff9800;
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
}
.r-chat-offline-bar[data-v-f50ab8a1] {
  padding: 8px 16px;
  background: rgba(255, 152, 0, 0.08);
  border-bottom: 1px solid rgba(255, 152, 0, 0.15);
  color: #ffb74d;
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.4;
}
.r-chat-error-bar[data-v-f50ab8a1] {
  padding: 6px 16px;
  background: rgba(255, 68, 68, 0.1);
  border-top: 1px solid rgba(255, 68, 68, 0.2);
  color: #ff6b6b;
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
}
.r-chat-rate-limit[data-v-f50ab8a1] {
  padding: 6px 16px;
  background: rgba(255, 152, 0, 0.1);
  border-top: 1px solid rgba(255, 152, 0, 0.2);
  color: #ffb74d;
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
}

/* Upload progress bar */
.r-chat-upload-bar[data-v-f50ab8a1] {
  position: relative;
  padding: 6px 16px;
  background: rgba(105, 162, 227, 0.1);
  border-top: 1px solid rgba(105, 162, 227, 0.2);
  color: var(--accent-blue, #69A2E3);
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
  overflow: hidden;
}
.r-chat-upload-progress[data-v-f50ab8a1] {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(105, 162, 227, 0.1);
  transition: width 0.2s;
}

/* Reply bar above input */
.r-chat-reply-bar[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 6px 16px;
  background: rgba(105, 162, 227, 0.08);
  border-top: 1px solid rgba(105, 162, 227, 0.15);
  flex-shrink: 0;
}
.r-chat-reply-bar-content[data-v-f50ab8a1] {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--accent-blue, #69A2E3);
}
.r-chat-reply-bar-author[data-v-f50ab8a1] {
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.r-chat-reply-bar-text[data-v-f50ab8a1] {
  font-size: 12px;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.r-chat-reply-bar-close[data-v-f50ab8a1] {
  background: none;
  border: none;
  color: var(--text-muted, rgba(255,255,255,0.4));
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  flex-shrink: 0;
}
.r-chat-reply-bar-close[data-v-f50ab8a1]:hover {
  color: var(--text-primary, #fff);
}

/* ===== Input ===== */
.r-chat-input[data-v-f50ab8a1] {
  display: flex;
  flex-direction: column;
  padding: 6px 8px;
  border-top: 1px solid rgba(105, 162, 227, 0.12);
  background: linear-gradient(180deg, #131c2a, #111820);
  flex-shrink: 0;
}
.r-chat-input-toolbar[data-v-f50ab8a1] {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.r-chat-input-field[data-v-f50ab8a1] {
  flex: 1;
  padding: 6px 0;
  background: transparent;
  border: none;
  color: var(--text-primary, #fff);
  font-size: 14px;
  font-family: inherit;
  resize: none;
  outline: none;
  min-height: 20px;
  max-height: 120px;
  line-height: 1.4;
}
.r-chat-input-field[data-v-f50ab8a1]::-moz-placeholder {
  color: var(--text-muted, rgba(255,255,255,0.4));
}
.r-chat-input-field[data-v-f50ab8a1]::placeholder {
  color: var(--text-muted, rgba(255,255,255,0.4));
}
.r-chat-toolbar-btn[data-v-f50ab8a1] {
  background: none;
  border: none;
  color: var(--text-muted, rgba(255,255,255,0.4));
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.r-chat-toolbar-btn[data-v-f50ab8a1]:hover:not(:disabled) {
  color: var(--text-primary, #fff);
  background: rgba(255, 255, 255, 0.06);
}
.r-chat-toolbar-btn[data-v-f50ab8a1]:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.r-chat-file-input[data-v-f50ab8a1] {
  display: none;
}

/* Drop overlay */
.r-chat-drop-overlay[data-v-f50ab8a1] {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(10, 15, 25, 0.85);
  backdrop-filter: blur(4px);
  border: 2px dashed rgba(105, 162, 227, 0.5);
  border-radius: inherit;
  color: rgba(105, 162, 227, 0.9);
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
}
.r-chat-send-btn[data-v-f50ab8a1] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid transparent;
  color: var(--text-muted, rgba(255,255,255,0.3));
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease, filter 0.15s ease;
}
.r-chat-send-btn--active[data-v-f50ab8a1] {
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  border-color: #598ac3;
  color: #fff;
  cursor: pointer;
}
.r-chat-send-btn--active[data-v-f50ab8a1]:hover {
  filter: brightness(1.15);
}
.r-chat-send-btn--active[data-v-f50ab8a1]:active {
  filter: brightness(0.9);
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
.r-chat-fab[data-v-f50ab8a1] {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
}
.r-chat-window[data-v-f50ab8a1] {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    border: none;
}
.r-chat-scroll-btn[data-v-f50ab8a1] {
    bottom: 80px;
    right: 16px;
}
}

.payment-page[data-v-3c1f7911] {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-error[data-v-3c1f7911] {
  text-align: center;
}
.payment-error h2[data-v-3c1f7911] {
  color: var(--text-primary);
  margin: 0 0 8px 0;
}
.payment-error p[data-v-3c1f7911] {
  color: var(--text-muted);
  margin: 0 0 20px 0;
}
.payment-modal-overlay[data-v-3c1f7911] {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 16, 0.95);
  backdrop-filter: blur(8px);
}
.payment-modal[data-v-3c1f7911] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 48px;
  background: linear-gradient(135deg, rgba(30, 45, 70, 0.9) 0%, rgba(20, 30, 50, 0.95) 100%);
  border: 1px solid rgba(105, 162, 227, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 450px;
  width: 90%;
}
.payment-modal h2[data-v-3c1f7911] {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.payment-modal p[data-v-3c1f7911] {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}
.success-icon[data-v-3c1f7911] {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(188, 216, 94, 0.15);
  border: 3px solid rgba(188, 216, 94, 0.5);
  border-radius: 50%;
}
.success-icon svg[data-v-3c1f7911] {
  color: #BCD85E;
}
.error-icon[data-v-3c1f7911] {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 68, 68, 0.15);
  border: 3px solid rgba(255, 68, 68, 0.5);
  border-radius: 50%;
}
.error-icon svg[data-v-3c1f7911] {
  color: #ff6b6b;
}
.payment-edition[data-v-3c1f7911] {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.payment-edition-image[data-v-3c1f7911] {
  width: 80px;
  height: auto;
  border-radius: 8px;
}
.payment-edition-info[data-v-3c1f7911] {
  text-align: left;
}
.payment-edition-info h3[data-v-3c1f7911] {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.payment-edition-price[data-v-3c1f7911] {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-blue) !important;
}
.payment-info[data-v-3c1f7911] {
  text-align: center;
}
.payment-note[data-v-3c1f7911] {
  font-size: 12px !important;
  color: var(--text-muted) !important;
}
.payment-note a[data-v-3c1f7911] {
  color: var(--accent-blue);
}
.payment-actions[data-v-3c1f7911] {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}
.payment-actions button[data-v-3c1f7911] {
  flex: 1;
}
@media (max-width: 480px) {
.payment-modal[data-v-3c1f7911] {
    padding: 24px;
}
}

.legal-page[data-v-d6f89704] {
  min-height: 100vh;
  padding: 40px 20px;
}
.legal-container[data-v-d6f89704] {
  max-width: 800px;
  margin: 0 auto;
}
.legal-top[data-v-d6f89704] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.legal-back[data-v-d6f89704] {
  display: inline-block;
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.legal-back[data-v-d6f89704]:hover {
  color: white;
}
.legal-version-select[data-v-d6f89704] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-version-label[data-v-d6f89704] {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.legal-version-trigger[data-v-d6f89704] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(32, 54, 88, 0.4);
  border: 1px solid rgba(89, 138, 195, 0.25);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.legal-version-trigger[data-v-d6f89704]:hover {
  border-color: rgba(89, 138, 195, 0.5);
  background: rgba(32, 54, 88, 0.6);
}
.legal-version-chevron[data-v-d6f89704] {
  transition: transform 0.2s;
  color: rgba(183, 206, 221, 0.5);
  flex-shrink: 0;
}
.legal-version-chevron--open[data-v-d6f89704] {
  transform: rotate(180deg);
}
.legal-version-menu[data-v-d6f89704] {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 100%;
  background: rgba(15, 22, 35, 0.97);
  border: 1px solid rgba(89, 138, 195, 0.3);
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 100;
  backdrop-filter: blur(8px);
}
.legal-version-item[data-v-d6f89704] {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  border-radius: 3px;
  color: rgba(183, 206, 221, 0.7);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
  text-align: left;
}
.legal-version-item[data-v-d6f89704]:hover {
  background: rgba(89, 138, 195, 0.15);
  color: #fff;
}
.legal-version-item--active[data-v-d6f89704] {
  color: #fff;
  background: rgba(89, 138, 195, 0.1);
}
.legal-version-badge[data-v-d6f89704] {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(89, 138, 195, 0.7);
}
.legal-dropdown-enter-active[data-v-d6f89704],
.legal-dropdown-leave-active[data-v-d6f89704] {
  transition: opacity 0.15s, transform 0.15s;
}
.legal-dropdown-enter-from[data-v-d6f89704],
.legal-dropdown-leave-to[data-v-d6f89704] {
  opacity: 0;
  transform: translateY(-4px);
}
.legal-old-banner[data-v-d6f89704] {
  padding: 10px 16px;
  margin-bottom: 20px;
  background: rgba(236, 188, 98, 0.08);
  border: 1px solid rgba(236, 188, 98, 0.2);
  border-radius: 4px;
  font-size: 13px;
  color: rgba(236, 188, 98, 0.85);
}
.legal-old-banner-link[data-v-d6f89704] {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: 4px;
  transition: color 0.15s;
}
.legal-old-banner-link[data-v-d6f89704]:hover {
  color: white;
}
.legal-loading[data-v-d6f89704] {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.legal-content[data-v-d6f89704] h1 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-top: 40px;
  margin-bottom: 16px;
  scroll-margin-top: 24px;
  position: relative;
}
.legal-content[data-v-d6f89704] h1:first-of-type {
  margin-top: 0;
}
.legal-content[data-v-d6f89704] h2 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-top: 32px;
  margin-bottom: 14px;
  scroll-margin-top: 24px;
  position: relative;
}
.legal-content[data-v-d6f89704] .anchor-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8em;
  margin-left: 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
  vertical-align: middle;
}
.legal-content[data-v-d6f89704] h1:hover .anchor-link,
.legal-content[data-v-d6f89704] h2:hover .anchor-link {
  opacity: 1;
}
.legal-content[data-v-d6f89704] .anchor-link:hover {
  color: var(--accent-blue);
}
.legal-content[data-v-d6f89704] .anchor-link:active {
  color: white;
}
.legal-content[data-v-d6f89704] p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content[data-v-d6f89704] ul {
  margin: 12px 0;
  padding-left: 24px;
}
.legal-content[data-v-d6f89704] li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-content[data-v-d6f89704] a {
  color: var(--accent-blue);
  text-decoration: underline;
}
.legal-content[data-v-d6f89704] a:hover {
  color: white;
}
@media (max-width: 480px) {
.legal-page[data-v-d6f89704] {
    padding: 24px 16px;
}
.legal-content[data-v-d6f89704] h1 {
    font-size: 24px;
}
.legal-content[data-v-d6f89704] h2 {
    font-size: 16px;
}
}

.not-found[data-v-5bb95ee9] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 103px - 80px);
  min-height: calc(100dvh - 103px - 80px);
  margin: -40px -24px;
  padding: 40px 24px;
  text-align: center;
}
.not-found-content[data-v-5bb95ee9] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 440px;
}
.not-found-code[data-v-5bb95ee9] {
  color: var(--accent-blue);
  opacity: 0.25;
  margin-bottom: 8px;
}
.not-found-svg[data-v-5bb95ee9] {
  width: 128px;
  height: 56px;
}
.not-found-character[data-v-5bb95ee9] {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 20px rgba(105, 162, 227, 0.3));
  animation: not-found-float-5bb95ee9 3s ease-in-out infinite;
}
@keyframes not-found-float-5bb95ee9 {
0%, 100% { transform: translateY(0);
}
50% { transform: translateY(-8px);
}
}
.not-found-title[data-v-5bb95ee9] {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f5fbff, #b7d4ec);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.not-found-desc[data-v-5bb95ee9] {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.not-found-btn[data-v-5bb95ee9] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 28px;
  background-color: #3a67a9;
  background-image: url('https://store.hytale.com/images/runes.webp'), linear-gradient(90deg, #465da9, #4578aa);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%;
  border: 2px solid #598ac3;
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.15s, filter 0.15s;
}
.not-found-btn[data-v-5bb95ee9]:hover {
  box-shadow: 0 0 0 2px #598ac3 inset;
  filter: brightness(0.85);
}
@media (max-width: 480px) {
.not-found-svg[data-v-5bb95ee9] {
    width: 96px;
    height: 42px;
}
.not-found-title[data-v-5bb95ee9] {
    font-size: 20px;
}
.not-found-character[data-v-5bb95ee9] {
    width: 64px;
    height: 64px;
}
}

/* Hidden by default, shown only in .r-mobile-menu-auth via :deep */
.r-profile-menu-mobile[data-v-a92eea9d] {
  display: none;
}
.r-profile-dropdown[data-v-a92eea9d] {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
  min-width: 0;
}
.r-header-profile[data-v-a92eea9d] {
  background: none;
  border: none;
  color: rgba(183, 206, 221, 0.9);
  cursor: pointer;
  padding: 0;
  min-width: 0;
}
.r-header-profile > span[data-v-a92eea9d]:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.r-header-profile[data-v-a92eea9d]:hover {
  color: #fff;
}
.r-auth-row[data-v-a92eea9d] {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: visible;
}
.r-balance-badge[data-v-a92eea9d] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(236, 188, 98, 0.08);
  border: 1px solid rgba(236, 188, 98, 0.2);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ecbc62;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.r-balance-badge[data-v-a92eea9d]:hover {
  background: rgba(236, 188, 98, 0.15);
  border-color: rgba(236, 188, 98, 0.35);
}
.r-profile-menu[data-v-a92eea9d] {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(10, 15, 25, 0.95);
  border: 1px solid rgba(105, 162, 227, 0.2);
  border-radius: 8px;
  padding: 8px;
  z-index: 100;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.r-profile-menu[data-v-a92eea9d]::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(10, 15, 25, 0.95);
  border-left: 1px solid rgba(105, 162, 227, 0.2);
  border-top: 1px solid rgba(105, 162, 227, 0.2);
  transform: translateX(-50%) rotate(45deg);
}
.r-profile-menu-item[data-v-a92eea9d] {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  color: rgba(183, 206, 221, 0.9);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.r-profile-menu-item[data-v-a92eea9d]:hover {
  background: rgba(105, 162, 227, 0.15);
  color: #fff;
}
.r-profile-menu-logout[data-v-a92eea9d] {
  color: rgba(255, 120, 120, 0.9);
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  border-radius: 0 0 6px 6px;
}
.r-profile-menu-logout[data-v-a92eea9d]:hover {
  background: rgba(255, 100, 100, 0.15);
  color: #ff6b6b;
}

/* Mobile menu auth styles */
[data-v-a92eea9d] .r-mobile-menu-auth .r-profile-dropdown {
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 0;
}
[data-v-a92eea9d] .r-mobile-menu-auth .r-header-profile {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(105, 162, 227, 0.1);
}

/* Hide hover dropdown in mobile menu */
[data-v-a92eea9d] .r-mobile-menu-auth .r-profile-menu {
  display: none;
}

/* Show always-visible mobile menu items */
[data-v-a92eea9d] .r-mobile-menu-auth .r-profile-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  width: 100%;
  padding: 6px;
  background: rgba(10, 15, 25, 0.5);
  border: 1px solid rgba(105, 162, 227, 0.12);
  border-radius: 8px;
}
[data-v-a92eea9d] .r-mobile-menu-auth .r-auth-row {
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
[data-v-a92eea9d] .r-mobile-menu-auth .r-balance-badge {
  justify-content: center;
  padding: 6px 12px;
  font-size: 13px;
}
.r-header-profile-avatar[data-v-a92eea9d] {
  position: relative;
}
.r-avatar-skeleton[data-v-a92eea9d] {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #465da9, #4578aa);
  overflow: hidden;
}
.r-avatar-skeleton[data-v-a92eea9d]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  animation: avatar-shimmer-a92eea9d 1.4s ease-in-out infinite;
}
@keyframes avatar-shimmer-a92eea9d {
0% { transform: translateX(-100%);
}
100% { transform: translateX(100%);
}
}
