/* ===== CSS Variables — MercySMP Deep Black Theme ===== */
:root {
  /* Фон - глубокий чёрный с оттенками */
  --color-bg: #0a0a0b; 
  --color-bg-light: #111113;
  --color-bg-card: #161618;
  --color-bg-hover: #1c1c1f;
  --color-footer: #0d0d0f;

  /* Акценты - цвета привилегий */
  --color-primary: #d4a5ff;
  --color-secondary: #FF69B4;
  --color-accent: #FFD700;
  --color-highlight: #c084fc;
  --color-yellow: #FFD700;
  --color-pink: #FF69B4;

  /* Текст */
  --color-title: #ffffff;
  --color-subtitle: #d0d0d5;
  --color-paragraph: #b8b8c0;
  --color-muted: #6a6a70;

  /* Границы - нейтральное стекло */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.18);

  /* Размеры */
  --sidebar-width: 72px;
  --sidebar-expanded: 240px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 10px;
  --radius-pill: 50px;

  /* Переходы */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;

  /* Шрифт */
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Градиенты - цвета привилегий */
  --gradient-primary: linear-gradient(135deg, #d4a5ff 0%, #FF69B4 100%);
  --gradient-secondary: linear-gradient(135deg, #FFD700 0%, #d4a5ff 100%);
  --gradient-highlight: linear-gradient(135deg, #c084fc 0%, #FF69B4 100%);
  --gradient-title: linear-gradient(135deg, #d4a5ff 0%, #FF69B4 50%, #FFD700 100%);
  --gradient-bg: linear-gradient(180deg, #0a0a0b 0%, #0f0f11 100%);

  /* Тени */
  --shadow-primary: 0px 8px 24px rgba(252, 135, 25, 0.2);
  --shadow-secondary: 0px 8px 24px rgba(255, 105, 180, 0.2);
  --shadow-accent: 0px 8px 24px rgba(255, 215, 0, 0.2);
  --shadow-card: 0px 4px 20px rgba(0, 0, 0, 0.4);
}

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

/* Scale wrapper — entire site scales to fit any viewport */
.site-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 1080px;
  z-index: 1;
}

/* ===== Desktop Fixed Layout — scale 1920px to fit ===== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

/* ===== Body ===== */
body {
  font-family: var(--font);
  background: 
    radial-gradient(ellipse at 90% 10%, rgba(25, 25, 30, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(20, 20, 25, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0b 0%, #0f0f11 50%, #0a0a0b 100%);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

@keyframes bgFloat {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Background Spheres ===== */
.bg-sphere {
  display: none;
}

/* ===== Glass Mixin ===== */
.glass-card {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 135, 25, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.glass-card:hover {
  background: var(--color-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.glass-card:hover::before {
  opacity: 1;
}

/* ===== Main Content ===== */
.main-content {
  min-height: 1080px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.tab-panel {
  display: none;
  padding: 48px 56px;
  animation: fadeSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-panel.active {
  display: block;
}

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

.fade-in {
  animation: fadeSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://i.pinimg.com/originals/59/0d/73/590d73050637dcb12e9af999f8d6437b.gif') center/cover no-repeat;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.6);
  z-index: 0;
}

.hero-section .section-container {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1080px;
  position: relative;
}

.hero-glow {
  display: none;
}

.hero-section {
  min-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px 7px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-subtitle);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 120px;
  font-weight: 800;
  letter-spacing: 6px;
  text-align: center;
  background: var(--gradient-title);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  line-height: 1.1;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

/* Mod Circle */
.mod-circle {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 60px auto 60px -975px;
  animation: rotateCircle 60s linear infinite;
}

.mod-circle .mod-center-label {
  animation: counterRotateText 60s linear infinite;
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterRotateText {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.mod-item {
  position: absolute;
  width: 90px;
  height: 90px;
  left: 50%;
  top: 50%;
  margin-left: -45px;
  margin-top: -45px;
  transform: rotate(calc(var(--i) * 25.714deg)) translate(380px);
  animation: counterRotate 60s linear infinite;
  cursor: pointer;
  z-index: 1;
}

.mod-item:hover {
  z-index: 100;
}

.mod-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15%;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease;
}

.mod-item:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes counterRotate {
  from { transform: rotate(calc(var(--i) * 25.714deg)) translate(380px) rotate(0deg); }
  to { transform: rotate(calc(var(--i) * 25.714deg)) translate(380px) rotate(-360deg); }
}

.mod-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Clarendon URW', Clarendon, Georgia, serif;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
  max-width: 400px;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(10, 10, 11, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.mod-center-label.visible {
  opacity: 1;
}

.mod-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.mod-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15%;
}

.mod-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-title);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
  letter-spacing: 2px;
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

.mod-desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-paragraph);
  transition: opacity 0.3s ease;
  margin-bottom: 16px;
}

.mod-download-text {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-paragraph);
  transition: opacity 0.3s ease;
  margin-bottom: 8px;
}

.mod-download-arrow {
  font-size: 28px;
  color: var(--color-paragraph);
  transition: opacity 0.3s ease;
}

/* Hero Text Right */
.hero-text-right {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20;
  pointer-events: none;
  margin-left: 500px;
  margin-top: -100px;
}

.hero-title-right {
  font-family: 'Clarendon URW', 'Georgia', serif;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 8px;
  margin: 0;
  text-align: center;
  margin-bottom: 40px;
  color: #dbdbdb;
  text-shadow: 0 1px 0 #999, 0 2px 0 #888, 0 3px 0 #777, 0 4px 0 #666, 0 5px 0 #555, 0 6px 6px rgba(0,0,0,0.4), 0 0 20px rgba(219, 219, 219, 0.3), 0 0 40px rgba(219, 219, 219, 0.1);
}

.mercy-text {
  display: inline-block;
}

.smp-text {
  display: inline-block;
  margin-left: 20px;
  margin-top: 40px;
}

.hero-subtitle-right {
  font-family: 'Centro Sans Pro', var(--font), sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-subtitle);
  margin: 0;
  letter-spacing: 2px;
  opacity: 0.9;
}

.hero-werh-image {
  position: absolute;
  top: -360px;
  left: -1525px;
  width: 660px;
  height: auto;
  transform: rotate(0deg);
  z-index: 10;
  object-fit: contain;
}

.hero-rig-image {
  position: absolute;
  left: 0;
  width: 330px;
  margin-left: -105px;
  margin-top: -587px;
  transform: rotate(20deg);
}

.hero-lay-image {
  position: absolute;
  left: 0;
  width: 330px;
  margin-left: 145px;
  margin-top: -352px;
  transform: rotate(-5deg);
}

@keyframes counterRotate {
  from { transform: rotate(calc(var(--i) * 25.714deg)) translate(320px) rotate(0deg); }
  to { transform: rotate(calc(var(--i) * 25.714deg)) translate(320px) rotate(-360deg); }
}

.mod-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15%;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease;
}

.mod-item:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-slogan {
  font-size: 30px;
  font-weight: 300;
  color: var(--color-title);
  margin-bottom: 16px;
  letter-spacing: 3px;
  opacity: 0.85;
}

.hero-desc {
  font-size: 16px;
  color: var(--color-paragraph);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

/* IP Block */
.ip-block {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px 14px 28px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
  transition: var(--transition);
}

.ip-block:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.025);
}

.ip-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.ip-address {
  font-size: 18px;
  font-weight: 600;
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.ip-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xs);
  color: var(--color-subtitle);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}

.ip-copy-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.ip-copy-btn:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-1px);
}

.ip-copy-btn:hover::before {
  opacity: 1;
}

.ip-copy-btn svg {
  width: 15px;
  height: 15px;
  position: relative;
  z-index: 1;
}

.ip-copy-btn .copy-text {
  position: relative;
  z-index: 1;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-paragraph);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-btn:hover {
  color: var(--color-subtitle);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  background: var(--color-bg-hover);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-subtitle);
}

/* ===== Section Common ===== */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease-in-out infinite;
}

.section-subtitle {
  text-align: center;
  color: var(--color-paragraph);
  font-size: 16px;
  margin-bottom: 48px;
  font-weight: 400;
}

/* ===== Services ===== */
.services-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 4px;
}

.service-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-title);
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 14px;
  color: var(--color-paragraph);
  line-height: 1.5;
}

.service-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 4px 0;
}

.service-note {
  font-size: 12px;
  color: var(--color-muted);
  font-style: italic;
}

.buy-service-btn {
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--color-subtitle);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
  letter-spacing: 0.3px;
}

.buy-service-btn:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.1);
}



/* ===== Admin Team Section — Premium Design ===== */
.admin-team-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: url('https://64.media.tumblr.com/8d9cdd9b18d40bc21844f6afb696ed24/6a5478d12ccddcfd-5e/s1280x1920/73363bc3e8d744c582fc75ea2a4e83c1ba378421.gif') center/cover no-repeat;
}

.admin-team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.7);
  z-index: 0;
}

.admin-team-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.admin-team-section .section-container {
  position: relative;
  z-index: 2;
}

.admin-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

.admin-card {
  background: linear-gradient(135deg, rgba(20, 20, 22, 0.8) 0%, rgba(15, 15, 18, 0.9) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 15px;
  padding: 0;
  width: 320px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-decoration: none;
}

.admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
  background-size: 200% 100%;
  animation: adminGlow 3s ease-in-out infinite;
  z-index: 10;
}

.admin-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: radial-gradient(ellipse at 50% 0%, rgba(239, 68, 68, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.admin-card .card-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: 15px;
}

.admin-card .card-shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.admin-card:hover .card-shine::before {
  left: 125%;
}

@keyframes adminGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 200% 50%; }
}

.admin-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 
    0 0 50px rgba(239, 68, 68, 0.3),
    0 0 100px rgba(239, 68, 68, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px) scale(1.02);
}

.admin-card:hover::after {
  opacity: 1;
}

.admin-skin-wrapper {
  width: 100%;
  height: 280px;
  background: linear-gradient(180deg, rgba(20, 20, 22, 0) 0%, rgba(20, 20, 22, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.admin-skin-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(15, 15, 18, 1) 0%, transparent 100%);
}

.admin-skin-image {
  height: 270px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.admin-card:hover .admin-skin-image {
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.7)) brightness(1.05);
}

.admin-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.admin-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ef4444;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.admin-rank-badge svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.admin-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-title, #ffffff);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.admin-nickname {
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
}

.admin-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
  line-height: 1.5;
  font-style: italic;
}

.admin-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.admin-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.admin-social-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}

.admin-social-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== Installation Section ===== */
.installation-section {
  padding: 80px 0;
  position: relative;
  background: url('https://i.pinimg.com/originals/44/e5/7e/44e57e4207a9e3a415947e3e84e7fbbf.gif') center/cover no-repeat;
}

.installation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.7);
  z-index: 0;
}

.installation-section .section-container {
  position: relative;
  z-index: 1;
}

.download-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 40px auto 0;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.download-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropbox-btn:hover {
  background: rgba(0, 118, 255, 0.2);
  border-color: rgba(0, 118, 255, 0.5);
}

.yandex-btn:hover {
  background: rgba(255, 204, 0, 0.2);
  border-color: rgba(255, 204, 0, 0.5);
}

.google-btn:hover {
  background: rgba(66, 133, 244, 0.2);
  border-color: rgba(66, 133, 244, 0.5);
}

.file-size-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Rules Section — Premium Design ===== */
.rules-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.rules-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rules-intro-text {
  font-size: 15px;
  font-style: italic;
  color: var(--color-muted);
  line-height: 1.7;
  font-family: var(--font);
}

.rules-tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.rules-tab-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.rules-tab-scroll-btn {
  flex-shrink: 0;
  width: 36px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.rules-tab-scroll-btn:hover {
  color: var(--color-primary);
  background: rgba(252, 135, 25, 0.06);
  border-color: rgba(252, 135, 25, 0.15);
}

.rules-tab-scroll-btn svg {
  width: 16px;
  height: 16px;
}

.rules-tab-scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.rules-tab-nav {
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.rules-tab-nav::-webkit-scrollbar {
  display: none;
}

.rules-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px 16px;
  background: transparent;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex: none;
  position: relative;
  transition: color 0.3s ease;
}

.rules-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rules-tab-btn:hover {
  color: var(--color-subtitle);
}

.rules-tab-btn:hover::after {
  transform: scaleX(0.5);
}

.rules-tab-btn.active {
  color: var(--color-primary);
}

.rules-tab-btn.active::after {
  transform: scaleX(1);
}

.rules-tab-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  transition: all 0.3s ease;
}

.rules-tab-btn.active .rules-tab-number {
  background: rgba(252, 135, 25, 0.12);
  color: var(--color-primary);
}

.rules-tab-btn:hover .rules-tab-number {
  background: rgba(255, 255, 255, 0.06);
}

.rules-tab-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.rules-tab-btn:hover .rules-tab-icon {
  opacity: 0.8;
}

.rules-tab-btn.active .rules-tab-icon {
  opacity: 1;
  color: var(--color-primary);
}

.rules-tab-content {
  padding: 40px 8px 20px;
}

.rules-tab-pane {
  display: none;
  animation: rulesTabFade 0.3s ease;
}

.rules-tab-pane.active {
  display: block;
}

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

.rules-rule-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rules-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.rules-rule-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.rules-rule-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), rgba(252, 135, 25, 0.4));
  flex-shrink: 0;
  margin-top: 5px;
}

.rules-rule-text {
  flex: 1;
}

.rules-rule-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-subtitle);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.rules-rule-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rules-rule-point {
  font-size: 14px;
  color: var(--color-paragraph);
  line-height: 1.6;
}

.rules-penalty-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #f87171;
  margin-top: 10px;
}

.rules-penalty-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.rules-allowed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  margin-top: 10px;
}

.rules-allowed-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ===== Season Info Section ===== */
.season-info-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  text-align: left;
  margin-left: -1050px;
}

.season-info-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}

.season-info-content {
  padding: 0;
  max-width: 700px;
  text-align: left;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

/* ===== Gallery Slider ===== */
.gallery-container {
  position: absolute;
  width: 150%;
  height: 350px;
  margin-left: 850px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-item.active {
  opacity: 1;
}

.gallery-progress {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform-origin: left;
  transform: scaleX(0);
}

.progress-bar.active::after {
  animation: progressBar 5s linear;
}

.progress-bar.finished {
  background: rgba(255, 255, 255, 0.8);
}

.progress-bar.finished::after {
  transform: scaleX(1);
}

@keyframes progressBar {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 10;
  pointer-events: none;
}

.gallery-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.gallery-btn svg {
  width: 20px;
  height: 20px;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.9), transparent);
  pointer-events: none;
  z-index: 5;
}

/* Для настройки галереи:
   .gallery-container { height: 280px; } - высота галереи
   .gallery-container { margin-left: 100px; } - отступ слева
   .gallery-container { top: 50px; } - отступ сверху
   animation: progressBar 5s - скорость смены (5s на фото)
*/

.season-info-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-paragraph);
  margin-bottom: 16px;
}

.season-info-image {
  position: absolute;
  top: 500px;
  right: 1050px;
  width: 400px;
  height: auto;
  object-fit: contain;
}

.wall-ad-text {
  position: absolute;
  top: 590px;
  right: 420px;
  max-width: 300px;
  text-align: left;
  z-index: 3;
}

.wall-ad-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-paragraph);
  margin-bottom: 8px;
}

.wall-ad-text p:first-child {
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 12px;
}

.wall-ad-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--color-title);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
  cursor: pointer;
}

.wall-ad-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.wall-ad-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== System Requirements Section ===== */
.requirements-section-custom {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.opora-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
}

.opora-image {
  position: absolute;
  top: 100px;
  left: -40%;
  transform: translateX(-50%);
  width: 800px;
  height: auto;
  object-fit: contain;
}

.opora-title {
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease-in-out infinite;
  white-space: nowrap;
}

.opora-nizhe {
  display: none;
}

/* ===== Requirements Table ===== */
.req-table-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -300px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.req-card {
  background: rgba(20, 20, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.req-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fb7185, #f43f5e);
}

.req-card:nth-child(2)::before {
  background: linear-gradient(90deg, #f43f5e, #e11d48);
}

.req-card:nth-child(3)::before {
  background: linear-gradient(90deg, #e11d48, #be123c);
}

.req-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--glass-border-hover);
}

.req-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.req-badge {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.req-min .req-badge {
  color: #ffffff;
}

.req-mid .req-badge {
  color: #ffffff;
}

.req-max .req-badge {
  color: #ffffff;
}

.req-fps {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.req-disclaimer {
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 24px;
  opacity: 0.7;
}

.req-desc {
  font-size: 14px;
  color: var(--color-subtitle);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.req-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.req-spec {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.req-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #ffffff;
  margin-top: 2px;
}

.req-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req-label {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.req-value {
  font-size: 14px;
  color: var(--color-paragraph);
  line-height: 1.5;
}

/* ===== Donate Section — Pastel Aesthetic ===== */
.donate-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 255px;
}

.donate-image {
  position: absolute;
  left: 330px;
  top: 60%;
  transform: translateY(-50%);
  width: 600px;
  height: auto;
  object-fit: contain;
}

/* Для настройки картинки:
   .donate-image { left: 50px; } - горизонтальное положение
   .donate-image { top: 50%; } - вертикальное положение (50% = по центру)
   .donate-image { width: 400px; } - ширина картинки
   .donate-image { transform: translateY(-50%); } - центрирование по вертикали
*/

.donate-grid {
  display: grid;
  grid-template-columns: repeat(2, 420px);
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  left: 450px;
}

/* ===== Keys Section — Same as Donate ===== */
.keys-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.keys-image {
  position: absolute;
  left: 330px;
  top: 60%;
  transform: translateY(-50%);
  width: 600px;
  height: auto;
  object-fit: contain;
}

.keys-grid {
  display: grid;
  grid-template-columns: repeat(2, 420px);
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  left: 450px;
}

.keys-card {
  background: rgba(20, 20, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  height: 140px;
  backdrop-filter: blur(10px);
}

.keys-card .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.keys-card:hover .card-glow {
  opacity: 0.3;
}

.keys-card .card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), transparent, rgba(255, 215, 0, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.keys-card:hover .card-border-glow {
  opacity: 1;
}

.keys-card .privilege-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.keys-card:hover .privilege-icon {
  transform: scale(1.1);
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
}

.keys-card .privilege-item-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
  transition: all 0.4s ease;
}

.keys-card:hover .privilege-item-icon {
  filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.5)) brightness(1.2);
  transform: scale(1.08);
}

.keys-card .privilege-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.keys-card .privilege-name {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Clarendon URW', serif;
  line-height: 1.2;
}

.keys-card .privilege-price {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.keys-card .buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #FFD700;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.keys-card .buy-btn svg {
  width: 16px;
  height: 16px;
}

.keys-card .buy-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.keys-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

.donate-card {
  background: rgba(20, 20, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  height: 140px;
  backdrop-filter: blur(10px);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.donate-card:hover .card-glow {
  opacity: 0.15;
}

.card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--border-color), transparent, var(--border-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.donate-card:hover .card-border-glow {
  opacity: 1;
}

.donate-card .privilege-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.donate-card:hover .privilege-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.donate-card .privilege-item-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: all 0.4s ease;
}

.donate-card:hover .privilege-item-icon {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5)) brightness(1.15);
  transform: scale(1.08);
}

.donate-card .privilege-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.donate-card .privilege-name {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Clarendon URW', serif;
  line-height: 1.2;
}

.donate-card .privilege-price {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.donate-card .privilege-privates {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.donate-card .buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.donate-card .buy-btn svg {
  width: 16px;
  height: 16px;
}

.donate-card .buy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.donate-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.donate-card[data-rank="nova"] .privilege-name {
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.4), 0 0 20px rgba(167, 139, 250, 0.2);
  letter-spacing: 2px;
}

.donate-card[data-rank="zenith"] .privilege-name {
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.4), 0 0 20px rgba(192, 132, 252, 0.2);
  letter-spacing: 3px;
}

.donate-card[data-rank="sponsor"] .privilege-name {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
  letter-spacing: 5px;
}

.donate-card .privilege-price {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #d4a5ff, #ffb3d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.donate-card .buy-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--color-subtitle);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.donate-card .buy-btn:hover {
  transform: translateY(-2px);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Privilege Modal ===== */
.privilege-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.privilege-modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

.privilege-modal {
  background: rgba(20, 20, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 850px;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-form-side {
  flex: 0 0 340px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form-side h3 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal-item-name {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2;
}

.modal-item-price {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.donate-image-container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background: transparent;
  border-radius: 14px;
  border: none;
}

.modal-donate-image {
  width: 300px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.payment-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(6px);
}

.payment-option svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.payment-option:first-child svg {
  color: #229ED9;
  fill: #229ED9;
}

.payment-option:last-child svg {
  color: #ffffff;
  stroke: #ffffff;
}

.payment-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option span {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.payment-option small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.payment-policy-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  line-height: 1.6;
}

.payment-policy-agreement svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #4ade80;
  margin-top: 2px;
}

.payment-policy-agreement a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-policy-agreement a:hover {
  color: #ffffff;
}

.modal-details-side {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 600px;
  overflow-y: auto;
  min-width: 380px;
}

.modal-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-details-side::-webkit-scrollbar {
  width: 6px;
}

.modal-details-side::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
}

.modal-details-side::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal-details-side::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.modal-product-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-rank-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.modal-rank-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.modal-title-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Clarendon URW', serif;
}

.modal-price {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Montserrat', sans-serif;
}

.modal-section h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.modal-section h4 svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.5);
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.modal-list li {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-list li.command {
  font-family: 'Consolas', monospace;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.08);
}

.modal-list li.command::before {
  content: '>';
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.modal-list li.feature-include {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}

.modal-list li.feature-include::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  font-size: 16px;
}

.modal-period-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.modal-period-tab {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-period-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.modal-period-tab.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.modal-policy-link {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.modal-policy-link:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-title-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.modal-price {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffb3d9, #d4a5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
  gap: 8px;
}

.modal-list li {
  font-size: 14px;
  color: var(--color-paragraph);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.modal-list li::before {
  content: '›';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
}

.modal-list li.command {
  color: var(--color-title);
  position: relative;
  padding-left: 36px;
}

.modal-list li.command::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.modal-period-tab.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-hover);
  color: var(--color-title);
}

/* Tab Navigation */
.donate-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.donate-tab {
  padding: 10px 26px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--color-paragraph);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.donate-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border-hover);
  color: var(--color-subtitle);
}

.donate-tab.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-hover);
  color: var(--color-title);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .privilege-modal {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-form-side {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(212, 165, 255, 0.1);
  }

  .donate-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
}

/* Process Steps */
.donate-process {
  margin-bottom: 24px;
}

.donate-process h3, .qr-section h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
  color: var(--color-title);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  padding: 16px;
  min-width: 100px;
}

.step-icon-svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  opacity: 0.7;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step p {
  font-size: 13px;
  color: var(--color-paragraph);
  line-height: 1.4;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.4;
}

.step-arrow img {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* QR Section */
.qr-section {
  margin-bottom: 24px;
}

.payment-policy {
  margin-bottom: 24px;
}

.payment-policy h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-title);
}

.policy-subtitle {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-item {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 16px;
}

.policy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.policy-item p {
  font-size: 13px;
  color: var(--color-paragraph);
  line-height: 1.6;
}

.qr-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.qr-item {
  text-align: center;
}

.qr-item.qr-clickable {
  cursor: pointer;
  position: relative;
}

.qr-item.qr-clickable::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(252, 135, 25, 0.05);
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--transition);
}

.qr-item.qr-clickable:hover::after {
  opacity: 1;
}

.qr-item.qr-clickable .qr-hint {
  display: block;
  font-size: 11px;
  color: var(--color-primary);
  margin-top: 4px;
  opacity: 0.7;
}

.qr-item img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  object-fit: cover;
  padding: 8px;
  transition: var(--transition);
}

.qr-item img:hover {
  border-color: var(--glass-border-hover);
  transform: scale(1.05);
}

.qr-item p {
  font-size: 13px;
  color: var(--color-paragraph);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== QR Modal ===== */
.qr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qr-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.qr-modal {
  position: relative;
  background: var(--color-bg-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.qr-modal-overlay.active .qr-modal {
  transform: scale(1);
}

.qr-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(252, 135, 25, 0.1);
  border: 1px solid rgba(252, 135, 25, 0.2);
  border-radius: var(--radius-xs);
  color: var(--color-subtitle);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qr-modal-close:hover {
  background: rgba(252, 135, 25, 0.2);
  border-color: rgba(252, 135, 25, 0.4);
}

.qr-modal img {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--glass-border);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.qr-modal-label {
  font-size: 14px;
  color: var(--color-paragraph);
  margin-top: 16px;
  font-weight: 600;
}

/* ===== Payment Modal ===== */
.payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 20px;
}

.payment-modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.payment-modal {
  width: 420px;
  max-width: 90vw;
  padding: 40px;
  position: relative;
  text-align: center;
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--color-paragraph);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-family: var(--font);
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-hover);
  color: var(--color-title);
}

.payment-modal h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payment-rank {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.payment-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-title);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--color-subtitle);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  transition: var(--transition);
  text-decoration: none;
}

.payment-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border-hover);
  transform: translateY(-1px);
}

.payment-option svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-subtitle);
}

.payment-option small {
  display: block;
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 2px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--color-bg-light);
  border: 1px solid var(--glass-border);
  color: var(--color-subtitle);
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ===== Selection ===== */
::selection {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-title);
}

/* ===== Responsive — Tablets ===== */
@media (max-width: 1024px) {
  .hero-title-right {
    font-size: 100px;
    letter-spacing: 4px;
  }

  .hero-werh-image {
    width: 450px;
    top: -250px;
    left: -900px;
  }

  .hero-rig-image {
    width: 240px;
    margin-left: -70px;
    margin-top: -400px;
  }

  .hero-lay-image {
    width: 240px;
    margin-left: 100px;
    margin-top: -250px;
  }

  .mod-circle {
    width: 450px;
    height: 450px;
    margin-left: -700px;
  }

  .mod-item {
    width: 70px;
    height: 70px;
    margin-left: -35px;
    margin-top: -35px;
  }

  .donate-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .tab-panel {
    padding: 40px 36px;
  }

  .season-info-image {
    right: 800px;
  }

  .wall-ad-text {
    right: 300px;
  }
}

/* ===== Responsive — Mobile ===== */
@media (max-width: 768px) {
  .site-wrapper {
    width: 100%;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
    padding: 80px 16px 40px;
  }

  .mod-circle {
    display: none;
  }

  .hero-werh-image,
  .hero-rig-image,
  .hero-lay-image {
    display: none;
  }

  .hero-text-right {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin: 0;
    margin-top: 20px;
  }

  .hero-title-right {
    font-size: 56px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .hero-subtitle-right {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .tab-panel {
    padding: 24px 16px 40px;
  }

  /* Season Info */
  .season-info-section {
    padding: 20px 0;
  }

  .season-info-image {
    position: relative;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    margin: 20px auto;
    display: block;
  }

  .wall-ad-text {
    position: relative;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 300px;
    text-align: center;
    margin: 16px auto;
  }

  .wall-ad-text p {
    font-size: 13px;
  }

  .wall-ad-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Gallery */
  .gallery-container {
    padding: 0 16px;
  }

  .gallery-track {
    height: 200px;
  }

  .gallery-item {
    max-width: 160px;
    max-height: 160px;
  }

  /* Donate */
  .donate-image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: block;
    margin: 0 auto 24px;
    width: 280px;
  }

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

  .privilege-card {
    padding: 20px;
  }

  /* Admin Team */
  .admin-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  /* Rules */
  .rules-tab-btn {
    padding: 12px 10px;
    font-size: 12px;
  }

  .rules-rule-item {
    padding: 14px;
    gap: 10px;
  }

  .rules-rule-title {
    font-size: 14px;
  }

  .rules-rule-point {
    font-size: 12px;
  }

  /* System Requirements */
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Installation */
  .process-steps {
    flex-direction: column;
    gap: 16px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  /* Modal */
  .privilege-modal-content {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-period-tabs {
    flex-wrap: wrap;
  }
}

/* ===== Contacts Section ===== */
.contacts-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 10;
  clear: both;
  background: rgba(10, 10, 11, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contacts-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(20, 20, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--color-paragraph);
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-title);
  margin: 0;
}

.contact-info p {
  font-size: 14px;
  color: var(--color-paragraph);
  margin: 0;
}

.contact-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-arrow {
  color: var(--color-paragraph);
  transform: translateX(4px);
}

/* Contacts responsive */
@media (max-width: 768px) {
  .contacts-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 360px;
  }
}

/* ===== Mobile 360–390px — Full Adaptation ===== */
@media (max-width: 390px) {
  /* Base — запрет горизонтального скролла */
  html, body {
    width: 100%;
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  body {
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
  }

  .site-wrapper {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    min-width: 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    position: relative !important;
    transform: none !important;
  }

  .main-content {
    min-height: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    left: auto !important;
    right: auto !important;
    position: relative !important;
    transform: none !important;
  }

  /* ===== HERO ===== */
  .hero-section {
    min-height: auto !important;
    padding: 40px 0 24px !important;
    margin: 0 !important;
    background-position: center top !important;
    background-size: cover !important;
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 0 12px !important;
    margin: 0 auto !important;
    gap: 12px !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .hero-badge {
    font-size: 9px !important;
    padding: 5px 14px 5px 14px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 12px !important;
  }

  .hero-title-right {
    font-size: 36px !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
    line-height: 1.05 !important;
    padding: 0 8px !important;
  }

  .smp-text {
    margin-left: 6px !important;
    margin-top: 10px !important;
  }

  .hero-subtitle-right {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
    padding: 0 8px !important;
  }

  .hero-werh-image,
  .hero-rig-image,
  .hero-lay-image {
    display: none !important;
  }

  .mod-circle {
    display: none !important;
  }

  .hero-text-right {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 12px !important;
  }

  /* ===== SEASON INFO ===== */
  .season-info-section {
    padding: 24px 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .season-info-section .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .season-info-wrapper {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
  }

  .season-info-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    text-align: center !important;
  }

  .season-info-content p {
    font-size: 12px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
  }

  /* Gallery */
  .gallery-container {
    position: relative !important;
    width: calc(100vw - 24px) !important;
    max-width: 340px !important;
    height: 190px !important;
    margin: 0 auto 16px auto !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }

  .gallery-track {
    height: 190px !important;
  }

  .gallery-item {
    object-fit: cover !important;
  }

  .gallery-progress {
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    gap: 5px !important;
  }

  .gallery-nav {
    padding: 0 8px !important;
  }

  .gallery-btn {
    width: 34px !important;
    height: 34px !important;
  }

  .gallery-btn svg {
    width: 16px !important;
    height: 16px !important;
  }

  .gallery-overlay {
    height: 80px !important;
  }

  .season-info-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    width: 220px !important;
    height: auto !important;
    margin: 0 auto 12px auto !important;
    display: block !important;
  }

  .wall-ad-text {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    max-width: 300px !important;
    text-align: center !important;
    margin: 0 auto 12px auto !important;
    padding: 0 12px !important;
  }

  .wall-ad-text p {
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }

  .wall-ad-text p:first-child {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }

  .wall-ad-btn {
    padding: 8px 14px !important;
    font-size: 12px !important;
    margin-top: 6px !important;
  }

  .wall-ad-btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* ===== ADMIN TEAM ===== */
  .admin-team-section {
    padding: 60px 0 !important;
    background-position: center top !important;
    background-size: cover !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .admin-team-section .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .section-title {
    font-size: 28px !important;
    margin-bottom: 6px !important;
    padding: 0 4px !important;
  }

  .section-subtitle {
    font-size: 13px !important;
    margin-bottom: 28px !important;
    padding: 0 4px !important;
  }

  .admin-grid {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 32px auto 0 auto !important;
    padding: 0 !important;
  }

  .admin-card {
    width: calc(100vw - 24px) !important;
    max-width: 340px !important;
  }

  .admin-skin-wrapper {
    height: 200px !important;
  }

  .admin-skin-image {
    height: 195px !important;
  }

  .admin-info {
    padding: 14px 18px 18px !important;
    gap: 6px !important;
  }

  .admin-name {
    font-size: 18px !important;
  }

  .admin-nickname {
    font-size: 13px !important;
  }

  .admin-desc {
    font-size: 11px !important;
  }

  .admin-rank-badge {
    font-size: 9px !important;
    padding: 3px 10px !important;
    gap: 4px !important;
  }

  .admin-social-btn {
    width: 34px !important;
    height: 34px !important;
  }

  .admin-social-btn svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* ===== RULES ===== */
  .rules-section {
    padding: 48px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .rules-section .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .rules-intro {
    padding: 16px 12px !important;
    margin-bottom: 28px !important;
  }

  .rules-intro-text {
    font-size: 12px !important;
  }

  .rules-tabs-wrapper {
    padding: 0 !important;
  }

  .rules-tab-btn {
    padding: 12px 8px 10px !important;
    font-size: 11px !important;
    gap: 4px !important;
  }

  .rules-tab-number {
    min-width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
    border-radius: 5px !important;
  }

  .rules-tab-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .rules-tab-scroll-btn {
    width: 28px !important;
    height: 44px !important;
  }

  .rules-tab-scroll-btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  .rules-tab-content {
    padding: 24px 4px 16px !important;
  }

  .rules-rule-item {
    padding: 14px 12px !important;
    gap: 10px !important;
  }

  .rules-rule-title {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .rules-rule-point {
    font-size: 12px !important;
  }

  .rules-penalty-badge,
  .rules-allowed-badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }

  /* ===== SYSTEM REQUIREMENTS ===== */
  .requirements-section-custom {
    padding: 48px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .requirements-section-custom .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .opora-wrapper {
    height: auto !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .opora-image {
    display: none !important;
  }

  .opora-title {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    font-size: 28px !important;
    margin: 0 0 24px 0 !important;
    white-space: normal !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .req-table-wrapper {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .req-card {
    padding: 20px 16px !important;
  }

  .req-badge {
    font-size: 15px !important;
  }

  .req-fps {
    font-size: 12px !important;
  }

  .req-desc {
    font-size: 13px !important;
    margin-bottom: 18px !important;
    padding-bottom: 12px !important;
  }

  .req-specs {
    gap: 12px !important;
  }

  .req-spec {
    gap: 10px !important;
  }

  .req-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .req-label {
    font-size: 11px !important;
  }

  .req-value {
    font-size: 12px !important;
  }

  .req-disclaimer {
    font-size: 11px !important;
    margin-top: 16px !important;
  }

  /* ===== DONATE ===== */
  .donate-section {
    padding: 60px 0 !important;
    margin-top: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .donate-section .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .donate-image {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
    width: 200px !important;
    height: auto !important;
  }

  .donate-tabs {
    margin-bottom: 24px !important;
    gap: 6px !important;
  }

  .donate-tab {
    padding: 8px 16px !important;
    font-size: 11px !important;
  }

  .donate-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 0 !important;
    left: auto !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .donate-card {
    padding: 16px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    height: auto !important;
    gap: 12px !important;
  }

  .donate-card .privilege-icon {
    width: 64px !important;
    height: 64px !important;
  }

  .donate-card .privilege-item-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .donate-card .privilege-name {
    font-size: 15px !important;
    letter-spacing: 1px !important;
  }

  .donate-card .privilege-price {
    font-size: 18px !important;
  }

  .donate-card .privilege-privates {
    font-size: 11px !important;
  }

  .donate-card .buy-btn {
    padding: 10px 20px !important;
    font-size: 12px !important;
    width: 100% !important;
  }

  .donate-card:hover {
    transform: none !important;
  }

  /* ===== INSTALLATION ===== */
  .installation-section {
    padding: 48px 0 !important;
    background-position: center top !important;
    background-size: cover !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .installation-section .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .download-buttons-wrapper {
    gap: 10px !important;
    max-width: 100% !important;
  }

  .download-btn {
    padding: 14px 20px !important;
    font-size: 14px !important;
    gap: 8px !important;
  }

  .download-btn svg {
    width: 20px !important;
    height: 20px !important;
  }

  .file-size-note {
    font-size: 12px !important;
    margin-top: 14px !important;
  }

  /* ===== CONTACTS ===== */
  .contacts-section {
    padding: 48px 0 60px !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .contacts-section .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .contacts-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 28px !important;
    padding: 0 !important;
  }

  .contact-card {
    width: calc(100vw - 24px) !important;
    max-width: 340px !important;
    padding: 16px 20px !important;
    min-width: auto !important;
    gap: 12px !important;
  }

  .contact-icon-wrapper {
    width: 40px !important;
    height: 40px !important;
  }

  .contact-icon-wrapper svg {
    width: 20px !important;
    height: 20px !important;
  }

  .contact-info h3 {
    font-size: 14px !important;
  }

  .contact-info p {
    font-size: 13px !important;
  }

  .contact-arrow {
    width: 18px !important;
    height: 18px !important;
  }

  /* ===== PRIVILEGE MODAL ===== */
  .privilege-modal-overlay {
    padding: 8px !important;
  }

  .privilege-modal {
    max-width: 100% !important;
    width: 100% !important;
    max-height: 95vh !important;
    flex-direction: column !important;
    border-radius: 16px !important;
  }

  .modal-form-side {
    flex: none !important;
    padding: 20px 16px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .modal-form-side h3 {
    font-size: 12px !important;
  }

  .modal-item-name {
    font-size: 20px !important;
  }

  .modal-item-price {
    font-size: 24px !important;
  }

  .payment-option {
    padding: 14px 14px !important;
    gap: 12px !important;
  }

  .payment-option svg {
    width: 24px !important;
    height: 24px !important;
  }

  .payment-option span {
    font-size: 13px !important;
  }

  .payment-option small {
    font-size: 11px !important;
  }

  .payment-policy-agreement {
    font-size: 11px !important;
  }

  .modal-details-side {
    padding: 20px 16px !important;
    max-height: 50vh !important;
    min-width: auto !important;
  }

  .modal-header {
    gap: 14px !important;
    padding-bottom: 14px !important;
  }

  .modal-rank-icon-wrapper {
    width: 60px !important;
    height: 60px !important;
  }

  .modal-rank-icon-img {
    width: 44px !important;
    height: 44px !important;
  }

  .modal-title {
    font-size: 20px !important;
  }

  .modal-price {
    font-size: 18px !important;
  }

  .modal-section h4 {
    font-size: 11px !important;
    gap: 8px !important;
  }

  .modal-section h4 svg {
    width: 15px !important;
    height: 15px !important;
  }

  .modal-list li {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

  .modal-list li.command {
    font-size: 11px !important;
  }

  .modal-period-tabs {
    gap: 6px !important;
    padding-bottom: 12px !important;
    margin-bottom: 12px !important;
  }

  .modal-period-tab {
    padding: 10px 10px !important;
    font-size: 11px !important;
  }

  .modal-close {
    width: 30px !important;
    height: 30px !important;
    top: 12px !important;
    right: 12px !important;
    font-size: 20px !important;
  }

  .modal-policy-link {
    font-size: 11px !important;
    padding: 8px 0 !important;
  }

  /* ===== TOAST ===== */
  .toast {
    bottom: 20px !important;
    padding: 10px 24px !important;
    font-size: 13px !important;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar {
    width: 3px !important;
  }

  /* ===== GENERAL ===== */
  .tab-panel {
    padding: 20px 12px 32px !important;
  }

  .section-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .services-section {
    padding: 48px 0 !important;
  }

  .services-section .section-container {
    padding: 0 12px !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .service-card {
    padding: 24px 16px !important;
  }

  .service-icon img {
    width: 100px !important;
    height: 100px !important;
  }

  .service-card h3 {
    font-size: 18px !important;
  }

  .service-price {
    font-size: 22px !important;
  }

  .buy-service-btn {
    padding: 10px 24px !important;
    font-size: 13px !important;
  }

  /* ===== Keys section mobile ===== */
  .keys-section {
    padding: 60px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .keys-section .section-container {
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .keys-image {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
    width: 200px !important;
    height: auto !important;
  }

  .keys-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 0 !important;
    left: auto !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .keys-card {
    padding: 16px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    height: auto !important;
    gap: 12px !important;
  }

  .keys-card .privilege-icon {
    width: 64px !important;
    height: 64px !important;
  }

  .keys-card .privilege-item-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .keys-card .privilege-name {
    font-size: 15px !important;
    letter-spacing: 1px !important;
  }

  .keys-card .privilege-price {
    font-size: 18px !important;
  }

  .keys-card .buy-btn {
    padding: 10px 20px !important;
    font-size: 12px !important;
    width: 100% !important;
  }

  .keys-card:hover {
    transform: none !important;
  }
}