body.phantom-loading {
  opacity: 0;
}

body {
  transition: opacity 0.3s ease;
}

.copy-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--phantom-positive);
  color: var(--phantom-positive-text);
  font-family: 'Poppins';
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.copy-toast.toast-error {
  background: var(--phantom-negative);
  color: var(--phantom-negative-text);
}

.text-header {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.text-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
}

.text-desc {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--phantom-text-primary);
  background-color: var(--phantom-page-bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.015) 1px, transparent 0);
  background-size: 32px 32px;
  overflow-x: hidden;
}

#root {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(15px, 4vw, 40px);
  min-height: 100%;
  font-family: 'Poppins', sans-serif;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; height: 100%; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }


.phantom-btn {
  border: none;
  border-radius: 8px;
  padding: 0.95rem 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.phantom-btn:hover {
  transform: translateY(-1px);
}

.phantom-btn--accent {
  background: var(--phantom-accent);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--accent:hover {
  background: var(--phantom-accent-hover);
}

.phantom-btn--primary {
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--primary:hover {
  background: var(--phantom-secondary-hover);
}

.phantom-btn--popular {
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--popular:hover {
  background: var(--phantom-secondary-hover);
}

.phantom-btn--secondary {
  background: var(--phantom-block-bg);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--secondary:hover {
  background: var(--phantom-block-light);
}

.phantom-btn--light {
  background: var(--phantom-btn-surface);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--light:hover {
  background: var(--phantom-btn-surface-hover);
}

.phantom-btn--muted {
  background: var(--phantom-block-light);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--muted:hover {
  background: var(--phantom-btn-surface);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--surface {
  background: var(--phantom-btn-surface);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--surface:hover {
  background: var(--phantom-btn-surface-hover);
}

.phantom-btn--danger {
  background: var(--phantom-negative);
  color: var(--phantom-btn-primary-text);
}

.phantom-btn--danger:hover {
  background: var(--phantom-negative-hover);
}

.phantom-btn--discord {
  background: #5865F2;
  color: var(--phantom-btn-primary-text);
  white-space: nowrap;
}

.phantom-btn--discord:hover {
  background: #4752C4;
}

.phantom-btn--sm {
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
}

.phantom-btn--icon {
  padding: 0.65rem;
  width: 44px;
  height: 44px;
}

.phantom-btn--full {
  width: 100%;
}

.phantom-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.primary-button {
  background: var(--phantom-accent);
  color: var(--phantom-btn-primary-text);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.primary-button:hover { background: var(--phantom-accent-hover); transform: translateY(-1px); }
.primary-button i { color: var(--phantom-btn-primary-text); }
.primary-button .button-text { color: var(--phantom-btn-primary-text); font-weight: 600; }

.secondary-button {
  background: var(--phantom-block-bg);
  color: var(--phantom-btn-primary-text);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.secondary-button:hover { background: var(--phantom-block-light); transform: translateY(-1px); }
.secondary-button i { color: var(--phantom-btn-primary-text); }
.secondary-button .button-text { color: var(--phantom-btn-primary-text); font-weight: 600; }

.positive-button {
  background: var(--phantom-positive);
  color: var(--phantom-positive-text);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.positive-button:hover { background: var(--phantom-positive-hover); transform: translateY(-1px); }
.positive-button i { color: var(--phantom-positive-text); }

.negative-button {
  background: var(--phantom-negative);
  color: var(--phantom-btn-primary-text);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.negative-button:hover { background: var(--phantom-negative-hover); transform: translateY(-1px); }
.negative-button i { color: var(--phantom-btn-primary-text); }

.phantom-topbar {
  background: var(--phantom-block-dark);
  
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phantom-topbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  height: 50px;
}

.phantom-topbar-link {
  color: var(--phantom-text-primary);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.phantom-topbar-link:hover {
  color: var(--phantom-text-secondary);
}

.phantom-topbar-stat {
  color: var(--phantom-text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.phantom-topbar-stat-num {
  color: var(--phantom-text-primary);
  font-weight: 700;
}

.phantom-topbar-currency {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.phantom-header {
  background: var(--phantom-header-bg);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2rem 0;
  overflow: hidden;
}

.phantom-header::before {
  content: '';
  position: absolute;
  inset: -40px;
  background-image: var(--phantom-header-bg-img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(28px) brightness(0.35);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.phantom-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-height: 180px;
}

.phantom-header-info-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--phantom-text-primary);
  font-family: 'Poppins', sans-serif;
  padding: 0;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.phantom-header-info-btn:hover {
  transform: translateY(-2px);
}

.phantom-header-info-btn--right {
  flex-direction: row-reverse;
}

.phantom-header-info-icon {
  width: 64px;
  height: 64px;
  background: var(--phantom-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--phantom-btn-primary-text);
  flex-shrink: 0;
}

.phantom-header-info-label {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--phantom-text-primary);
  letter-spacing: 0.01em;
}

.phantom-header-info-btn:hover .phantom-header-info-icon {
  background: var(--phantom-secondary-hover);
}

.phantom-header-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 2rem;
  flex-shrink: 0;
}

.phantom-header-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.phantom-logo {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.phantom-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.phantom-nav-left,
.phantom-nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.phantom-nav-btn {
  background: var(--phantom-btn-surface);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.4rem;
  height: 50px;
  color: var(--phantom-text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.phantom-nav-btn:hover {
  background: var(--phantom-btn-surface-hover);
}

.phantom-nav-btn i {
  font-size: 0.85rem;
}

.phantom-nav-currency {
  white-space: nowrap;
  min-width: fit-content;
}

.phantom-nav-cart-btn {
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
  position: relative;
  overflow: hidden;
}

.phantom-nav-cart-btn:hover {
  background: var(--phantom-secondary-hover);
}

.phantom-nav-cart-btn::after,
.phantom-nav-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.phantom-nav-cart-btn::after {
  left: -50%;
  width: 35px;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-nav-cart-btn::before {
  left: -50%;
  width: 20px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out 0.15s infinite;
}

.phantom-currency-dropdown {
  position: relative;
}

.phantom-currency-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--phantom-block-bg);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  list-style: none;
  padding: 0.4rem;
  margin: 0;
  min-width: 100px;
  z-index: 100;
}

.phantom-currency-dropdown.open .phantom-currency-menu {
  display: block;
}

.phantom-currency-option {
  display: block;
  padding: 0.45rem 0.9rem;
  color: var(--phantom-text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.phantom-currency-option:hover {
  background: var(--phantom-btn-surface);
  color: var(--phantom-text-primary);
}

.phantom-currency-option.active {
  color: var(--phantom-secondary);
}

@media (max-width: 768px) {
  .phantom-topbar-inner {
    height: auto;
    padding: 0.5rem clamp(15px, 4vw, 40px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .phantom-topbar-link,
  .phantom-topbar-stat {
    font-size: 0.72rem;
  }

  .phantom-topbar-stat,
  .phantom-module-serverstatus {
    display: none !important;
  }

  .phantom-topbar-hide-mobile {
    display: none;
  }

  .phantom-header-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .phantom-header-info-btn {
    display: none;
  }

  .phantom-header-divider {
    display: none;
  }

  .phantom-logo {
    max-width: 300px;
  }

  .phantom-nav-bar {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .phantom-nav-btn span {
    display: none;
  }

  .phantom-nav-btn {
    padding: 0.5rem;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .phantom-nav-currency {
    padding: 0.5rem 0.75rem;
    width: auto;
    font-size: 0.78rem;
  }
}


.phantom-sale-banner {
  --phantom-sale-grad-from: #ff7a18;
  --phantom-sale-grad-to: #ffb145;
  --phantom-sale-shadow: rgba(123, 48, 0, 0.55);
  --phantom-sale-countdown-bg: rgba(0, 0, 0, 0.22);

  position: relative;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--phantom-sale-grad-from) 0%, var(--phantom-sale-grad-to) 100%);
  box-shadow: var(--phantom-shadow);
  padding: 2rem 2.5rem;
  min-height: 150px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.phantom-sale-info {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.phantom-sale-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
  color: var(--phantom-btn-primary-text);
  text-shadow: 0 2px 0 var(--phantom-sale-shadow), 0 4px 14px rgba(0, 0, 0, 0.25);
  line-height: 1.05;
}

.phantom-sale-description {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--phantom-btn-primary-text);
  margin: 0;
  line-height: 1.55;
  text-shadow: 0 1px 0 var(--phantom-sale-shadow);
  max-width: 520px;
}

.phantom-sale-image-wrapper {
  position: absolute;
  left: 50%;
  bottom: var(--phantom-sale-image-offset, -3.5rem);
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.phantom-sale-image {
  display: block;
  max-height: 280px;
  max-width: 360px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.phantom-sale-countdown {
  background: var(--phantom-sale-countdown-bg);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  flex-shrink: 0;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

.phantom-countdown-grid {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.phantom-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 44px;
}

.phantom-countdown-unit strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--phantom-btn-primary-text);
  text-shadow: 0 2px 0 var(--phantom-sale-shadow);
  line-height: 1;
}

.phantom-countdown-unit small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--phantom-text-primary);
  text-transform: lowercase;
}

.phantom-sale-banner--orange {
  --phantom-sale-grad-from: #ff7a18;
  --phantom-sale-grad-to: #ffb145;
  --phantom-sale-shadow: rgba(120, 50, 0, 0.55);
  --phantom-sale-countdown-bg: rgba(120, 50, 0, 0.35);
}

.phantom-sale-banner--blue {
  --phantom-sale-grad-from: #1c8df0;
  --phantom-sale-grad-to: #5fc3ff;
  --phantom-sale-shadow: rgba(8, 52, 108, 0.55);
  --phantom-sale-countdown-bg: rgba(8, 52, 108, 0.35);
}

.phantom-sale-banner--purple {
  --phantom-sale-grad-from: #7f3df0;
  --phantom-sale-grad-to: #c084fc;
  --phantom-sale-shadow: rgba(60, 18, 110, 0.6);
  --phantom-sale-countdown-bg: rgba(60, 18, 110, 0.35);
}

.phantom-sale-banner--green {
  --phantom-sale-grad-from: #16a34a;
  --phantom-sale-grad-to: #4ade80;
  --phantom-sale-shadow: rgba(8, 70, 30, 0.6);
  --phantom-sale-countdown-bg: rgba(8, 70, 30, 0.35);
}

.phantom-sale-banner--red {
  --phantom-sale-grad-from: #ef4444;
  --phantom-sale-grad-to: #fb7185;
  --phantom-sale-shadow: rgba(120, 14, 14, 0.6);
  --phantom-sale-countdown-bg: rgba(120, 14, 14, 0.35);
}

.phantom-sale-banner--pink {
  --phantom-sale-grad-from: #ec4899;
  --phantom-sale-grad-to: #f9a8d4;
  --phantom-sale-shadow: rgba(120, 18, 70, 0.6);
  --phantom-sale-countdown-bg: rgba(120, 18, 70, 0.35);
}

.phantom-sale-banner--teal {
  --phantom-sale-grad-from: #0d9488;
  --phantom-sale-grad-to: #5eead4;
  --phantom-sale-shadow: rgba(8, 70, 64, 0.6);
  --phantom-sale-countdown-bg: rgba(8, 70, 64, 0.35);
}

@media (max-width: 768px) {
  .phantom-sale-banner {
    flex-direction: column;
    padding: 1.5rem 1.25rem 2rem;
    gap: 1rem;
    text-align: center;
  }

  .phantom-sale-info { text-align: center; }

  .phantom-sale-title { font-size: 1.45rem; }

  .phantom-sale-description { max-width: none; }

  .phantom-sale-image-wrapper {
    position: static;
    transform: none;
    margin-bottom: -1.5rem;
    align-self: center;
  }

  .phantom-sale-image {
    max-height: 180px;
    max-width: 220px;
  }

  .phantom-sale-countdown { width: 100%; }

  .phantom-countdown-grid { justify-content: space-around; }
}

.phantom-gamemode-selector {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  background: var(--phantom-block-dark);
  padding: 0.6rem;
  border-radius: 12px;
  box-shadow: var(--phantom-shadow);
}

.phantom-gamemode-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.4rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--phantom-text-secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  min-width: 0;
}

.phantom-gamemode-btn:hover {
  background: var(--phantom-block-bg);
  color: var(--phantom-text-primary);
}

.phantom-gamemode-btn.is-active {
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
}

.phantom-gamemode-btn.is-active:hover {
  background: var(--phantom-secondary-hover);
}

.phantom-gamemode-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phantom-gamemode-icon--fallback {
  background: rgba(255, 255, 255, 0.08);
  color: var(--phantom-text-secondary);
  font-size: 0.95rem;
}

.phantom-gamemode-btn.is-active .phantom-gamemode-icon--fallback {
  background: rgba(255, 255, 255, 0.18);
  color: var(--phantom-btn-primary-text);
}

.phantom-gamemode-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.phantom-gamemode-grid:not(.is-active-gamemode) {
  display: none;
}

@media (max-width: 768px) {
  .phantom-gamemode-selector {
    flex-wrap: wrap;
  }

  .phantom-gamemode-btn {
    flex: 1 1 calc(50% - 0.25rem);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

.phantom-category-grid {
  margin-bottom: 1.5rem;
}

.phantom-category-desc {
  margin-top: 1.5rem;
}

.phantom-category-card {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}

.phantom-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.3);
}

.phantom-category-card--popular {
  border: 1px solid var(--phantom-secondary);
  position: relative;
}

.phantom-category-popular-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  z-index: 3;
  overflow: hidden;
}

.phantom-category-popular-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 35px;
  height: 100%;
  background: rgba(150, 200, 255, 0.25);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-category-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
}

.phantom-category-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0;
}

.phantom-category-image {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phantom-category-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.phantom-category-card:hover .phantom-category-image img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .phantom-category-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    min-height: 200px;
    gap: 0.75rem;
  }

  .phantom-category-info { align-items: center; order: 2; }
  .phantom-category-image { width: 120px; height: 120px; order: 1; }
  .col-6 { grid-column: span 12; }
}

.phantom-category-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.phantom-category-title-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.phantom-category-info-icon {
  background: none;
  border: none;
  color: var(--phantom-text-secondary);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  position: absolute;
  top: 0.1rem;
  right: -1.3rem;
}

.phantom-category-info-icon:hover {
  color: var(--phantom-text-primary);
}

.phantom-category-page-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--phantom-text-primary);
  margin: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.phantom-category-page-title:hover {
  color: var(--phantom-text-secondary);
}

.phantom-notice-section {
  margin-top: 1.5rem;
}

.phantom-notice-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  padding: 2.5rem 2.5rem;
  min-height: 200px;
  height: 100%;
}

.phantom-notice-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0 0 1rem;
}

.phantom-notice-text {
  font-size: 0.95rem;
  color: var(--phantom-text-secondary);
  line-height: 1.75;
  margin: 0;
}

.phantom-notice-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.phantom-announcement {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  min-height: 340px;
  margin-top: 2rem;
}

.phantom-announcement-image-wrapper {
  flex: 0 0 42%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
}

.phantom-announcement-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phantom-announcement-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.phantom-announcement-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--phantom-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phantom-announcement-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--phantom-text-primary);
  line-height: 1.2;
  text-transform: uppercase;
}

.phantom-announcement-text {
  font-size: 0.95rem;
  color: var(--phantom-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .phantom-announcement {
    flex-direction: column;
    min-height: auto;
    gap: 0;
  }

  .phantom-announcement-image-wrapper {
    flex: none;
    width: 100%;
    min-height: 180px;
  }

  .phantom-announcement-content {
    padding: 1.5rem;
    text-align: center;
    align-items: center;
  }

  .phantom-announcement-title { font-size: 1.5rem; }
}

.phantom-module-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: start;
}

.phantom-module-grid .phantom-module-serverstatus,
.phantom-module-grid .phantom-module-giftcard,
.phantom-module-grid .phantom-module-topdonator {
  display: none;
}


.phantom-checkout-modules > * {
  display: none;
}

.phantom-checkout-modules .phantom-module-giftcard,
.phantom-checkout-modules .phantom-module-topdonator {
  display: block;
}

.phantom-module-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  padding: 2.5rem 2.5rem;
  min-height: 220px;
  position: relative;
  height: 100%;
}

.phantom-module-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0 0 1.25rem;
  text-align: center;
}

.phantom-module-text {
  font-size: 0.95rem;
  color: var(--phantom-text-secondary);
  text-align: center;
  line-height: 1.75;
}

.phantom-goal-amount {
  text-align: right;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--phantom-text-secondary);
}

.phantom-progress-bar {
  width: 100%;
  height: 44px;
  background: var(--phantom-block-dark);
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.phantom-progress-fill {
  height: 100%;
  background: var(--phantom-accent);
  transition: width 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
}

.phantom-progress-label {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.phantom-goal-repeatable {
  text-align: center;
  color: var(--phantom-text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.phantom-goal-repeatable i {
  color: var(--phantom-accent);
}

.phantom-featured-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.phantom-featured-image {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phantom-featured-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.phantom-featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phantom-featured-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0;
}

.phantom-featured-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phantom-featured-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.phantom-featured-actions .phantom-btn {
  flex: 1;
  min-width: 40px;
}

@media (max-width: 768px) {
  .phantom-featured-block {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .phantom-featured-content { align-items: center; }
  .phantom-featured-price { justify-content: center; }
  .phantom-featured-actions { width: 100%; }
}


.phantom-topdonator-block {
  overflow: hidden;
  min-height: 220px;
}

.phantom-topdonator-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.phantom-topdonator-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-topdonator-amount {
  font-size: 0.95rem;
  color: var(--phantom-text-secondary);
}

.phantom-topdonator-skin {
  position: absolute;
  bottom: -50px;
  right: 20px;
  width: 110px;
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.phantom-topdonator-skin img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.phantom-topdonator-placeholder {
  width: 70px;
  height: 70px;
  background: var(--phantom-block-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phantom-topdonator-placeholder i {
  font-size: 2rem;
  color: var(--phantom-text-secondary);
  opacity: 0.5;
}

.phantom-payments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.phantom-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.phantom-payment-avatar {
  background: var(--phantom-block-light);
  border: none;
  border-radius: 8px;
  padding: 0.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.phantom-payment-avatar img {
  width: 120%;
  height: auto;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  image-rendering: pixelated;
}

.phantom-payment-placeholder {
  font-size: 2rem;
  color: var(--phantom-text-secondary);
  opacity: 0.5;
}

.phantom-payment-name {
  color: var(--phantom-text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60px;
}

@media (max-width: 768px) {
  .phantom-payments-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
  }

  .phantom-payment-avatar {
    width: 45px;
    height: 45px;
    padding: 0.3rem;
  }

  .phantom-payment-name { font-size: 0.72rem; max-width: 45px; }
}

.phantom-giftcard-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 768px) {
  .phantom-giftcard-form {
    flex-direction: column;
  }

  .phantom-giftcard-form .phantom-input,
  .phantom-giftcard-form .phantom-btn { width: 100%; }
}

.phantom-content-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  overflow: hidden;
}

.phantom-content-block-inner {
  padding: 2.5rem 2rem;
}

.phantom-page-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--phantom-text-primary);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.phantom-page-description {
  color: var(--phantom-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.phantom-page-header-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.phantom-divider {
  border: none;
  border-top: 1px solid var(--phantom-block-border);
  margin: 1.5rem 0;
}

.phantom-package-detail-header {
  text-align: left;
}

.phantom-package-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.phantom-package-detail-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phantom-package-detail-actions {
  display: flex;
  gap: 0.75rem;
}

.phantom-price {
  color: var(--phantom-text-primary);
  font-weight: 700;
}

.phantom-price--lg {
  font-size: 1.6rem;
}

.phantom-price-old {
  color: var(--phantom-negative);
  text-decoration: line-through;
  font-weight: 600;
}

.phantom-price-old.phantom-price--lg {
  font-size: 1.6rem;
}

.phantom-package-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.phantom-package-image-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(100, 180, 255, 0.15) 0%, rgba(60, 130, 220, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.phantom-package-image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .phantom-package-detail-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .phantom-package-detail-actions { width: 100%; }
  .phantom-package-detail-actions .phantom-btn { flex: 1; }
  .phantom-package-image-block { padding: 1rem; }
  .phantom-package-image-block::before { width: 180px; height: 120px; }
}

.phantom-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.phantom-modal.show {
  opacity: 1;
  visibility: visible;
}

.phantom-modal-content {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  max-width: 480px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.phantom-modal.show .phantom-modal-content {
  transform: scale(1);
}

.phantom-modal-header {
  padding: 1.5rem 2rem 0;
  text-align: center;
}

.phantom-modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0;
}

.phantom-modal-body {
  padding: 1.5rem 2rem 2rem;
}

.phantom-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.phantom-modal-actions .phantom-btn {
  flex: 1;
}

.phantom-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 8000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.phantom-cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.phantom-cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: var(--phantom-header-bg);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 8001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.phantom-cart-sidebar.open {
  transform: translateX(0);
}

.phantom-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phantom-cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-cart-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phantom-cart-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--phantom-text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s;
}

.phantom-cart-user:hover {
  color: var(--phantom-negative);
}

.phantom-cart-username {
  font-family: 'Poppins', sans-serif;
}

.phantom-cart-close {
  background: none;
  border: none;
  color: var(--phantom-text-secondary);
  font-size: 1.2rem;
  padding: 4px;
  cursor: pointer;
  transition: color 0.15s;
  text-decoration: none;
}

.phantom-cart-close:hover {
  color: var(--phantom-text-primary);
}

.phantom-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.phantom-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 200px;
  color: var(--phantom-text-secondary);
  font-size: 0.95rem;
}

.phantom-cart-empty i {
  font-size: 2rem;
  opacity: 0.3;
}

.phantom-cart-item {
  background: var(--phantom-block-bg);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}

.phantom-cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.phantom-cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--phantom-text-primary);
}

.phantom-cart-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--phantom-text-secondary);
  white-space: nowrap;
}

.phantom-cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.phantom-cart-item-btns {
  display: flex;
  gap: 0.5rem;
}

.phantom-cart-qty {
  display: flex;
  align-items: center;
}

.phantom-cart-qty-btn {
  background: var(--phantom-btn-surface);
  border: none;
  color: var(--phantom-text-primary);
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.phantom-cart-qty-btn:first-child {
  border-radius: 6px 0 0 6px;
}

.phantom-cart-qty-btn:last-child {
  border-radius: 0 6px 6px 0;
}

.phantom-cart-qty-btn:hover {
  background: var(--phantom-btn-surface-hover);
}

.phantom-cart-qty-input {
  width: 32px;
  height: 28px;
  text-align: center;
  background: var(--phantom-block-dark);
  border: none;
  color: var(--phantom-text-primary);
  font-weight: 600;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  -moz-appearance: textfield;
}

.phantom-cart-qty-input::-webkit-outer-spin-button,
.phantom-cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}


.phantom-cart-item--gift {
  position: relative;
  border: 2px solid var(--phantom-secondary);
  padding-top: 32px;
  overflow: hidden;
}

.phantom-cart-item--gift::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: var(--phantom-secondary);
  pointer-events: none;
}

.phantom-cart-item-gift-tag {
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--phantom-btn-primary-text);
  z-index: 1;
}

.phantom-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.phantom-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--phantom-text-primary);
}

.phantom-cart-total-price {
  font-size: 1.2rem;
  font-weight: 700;
}

.phantom-cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.phantom-cart-checkout-btn:hover {
  background: var(--phantom-secondary-hover);
}

.phantom-cart-checkout-btn::after,
.phantom-cart-checkout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.phantom-cart-checkout-btn::after {
  left: -50%;
  width: 35px;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-cart-checkout-btn::before {
  left: -50%;
  width: 20px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out 0.15s infinite;
}

.phantom-btn--checkout {
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
  position: relative;
  overflow: hidden;
}

.phantom-btn--checkout:hover {
  background: var(--phantom-secondary-hover);
}

.phantom-btn--checkout::after,
.phantom-btn--checkout::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.phantom-btn--checkout::after {
  left: -50%;
  width: 35px;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-btn--checkout::before {
  left: -50%;
  width: 20px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out 0.15s infinite;
}

.phantom-cart-topdonator {
  background: var(--phantom-block-bg);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.phantom-cart-topdonator-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--phantom-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.phantom-cart-topdonator-label i {
  margin-right: 4px;
}

.phantom-cart-topdonator-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phantom-cart-topdonator-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--phantom-text-primary);
}

.phantom-cart-topdonator-amount {
  font-size: 0.8rem;
  color: var(--phantom-text-secondary);
}

.phantom-cart-giftcard {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 14px;
}

.phantom-cart-giftcard-input {
  flex: 1;
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  color: var(--phantom-text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
}

.phantom-cart-giftcard-input::placeholder {
  color: var(--phantom-text-secondary);
  opacity: 0.5;
}

.phantom-cart-giftcard-input:focus {
  outline: none;
}

.phantom-gift-section {
  background: var(--phantom-block-dark);
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
  border: none;
}

.phantom-gift-toggle {
  background: transparent;
  border: none;
  color: var(--phantom-text-secondary);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.phantom-gift-toggle:hover {
  color: var(--phantom-accent);
}

.phantom-gift-form-wrapper {
  display: none;
  margin-top: 0.75rem;
}

.phantom-gift-form-wrapper.show {
  display: block;
}

.phantom-gift-input-row {
  display: flex;
  gap: 0.5rem;
}

.phantom-gift-input {
  flex: 1;
  background: var(--phantom-block-dark);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: var(--phantom-text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.phantom-gift-input::placeholder {
  color: var(--phantom-text-secondary);
  opacity: 0.6;
}

.phantom-gift-input:focus {
  outline: none;
}

.phantom-packages-section {
  margin-top: 1.5rem;
}

.phantom-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.phantom-package-card {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phantom-package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.3);
}

.phantom-package-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 0;
  gap: 0.5rem;
}

.phantom-package-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0;
}

.phantom-package-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--phantom-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.phantom-package-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 2.5rem;
  min-height: 240px;
}

.phantom-package-card-image img {
  max-width: 170px;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.phantom-package-card:hover .phantom-package-card-image img {
  transform: scale(1.05);
}

.phantom-package-card-actions {
  padding: 0 1.5rem 1.5rem;
}

.phantom-package-card-gift {
  padding: 0 1.5rem 1.5rem;
}

.phantom-package-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: none;
  border: none;
  padding: 0;
  text-align: inherit;
  font: inherit;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 991px) {
  .phantom-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .phantom-packages-grid {
    grid-template-columns: 1fr;
  }
}

.phantom-packages-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phantom-package-list-item {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  padding: 1.6rem 2rem;
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--phantom-shadow);
}

.phantom-package-list-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.phantom-package-list-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  min-width: 180px;
}

.phantom-package-list-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phantom-package-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--phantom-negative);
  font-weight: 600;
  font-size: 0.85rem;
}

.phantom-package-list-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .phantom-package-list-item {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

  .phantom-package-list-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .phantom-package-list-name { min-width: auto; }

  .phantom-package-list-actions {
    width: 100%;
  }

  .phantom-package-list-actions .phantom-btn { flex: 1; }
}

.phantom-checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phantom-checkout-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-checkout-total {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-checkout-labels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.phantom-checkout-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--phantom-text-secondary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.phantom-checkout-label--left {
  text-align: left;
}

.phantom-checkout-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  background: var(--phantom-block-dark);
  padding: 1.25rem;
  border-radius: 6px;
  align-items: center;
  margin-bottom: 0.5rem;
}

.phantom-checkout-row--gift {
  position: relative;
  border: 2px solid var(--phantom-secondary);
  padding-top: 2.4rem;
  overflow: hidden;
}

.phantom-checkout-row--gift::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.65rem;
  background: var(--phantom-secondary);
  pointer-events: none;
}

.phantom-checkout-row-gift-tag {
  position: absolute;
  top: 0.35rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--phantom-btn-primary-text);
  z-index: 1;
}

.phantom-checkout-pkg-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--phantom-text-primary);
}

.phantom-checkout-pkg-price {
  color: var(--phantom-text-primary);
  font-weight: 600;
  text-align: center;
}

.phantom-checkout-quantity {
  display: flex;
  justify-content: center;
}

.phantom-quantity-field {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--phantom-footer-bg);
  border-radius: 6px;
  padding: 4px;
}

.phantom-quantity-field .quantity {
  background: transparent;
  border: none;
  color: var(--phantom-text-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  width: 45px;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.phantom-quantity-field .quantity::-webkit-outer-spin-button,
.phantom-quantity-field .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.phantom-qty-btn {
  background: transparent;
  border: none;
  color: var(--phantom-text-secondary);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1;
}

.phantom-qty-btn:hover:not(:disabled) {
  color: var(--phantom-accent);
}

.phantom-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.phantom-checkout-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.phantom-checkout-footer {
  margin-top: 2rem;
}

.phantom-checkout-footer-btns {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.phantom-checkout-agreements {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.phantom-checkout-agreement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.phantom-checkout-agreement-item .phantom-checkout-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.phantom-checkout-checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin-top: 1px;
}

.phantom-checkout-checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--phantom-btn-primary-text);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.phantom-checkout-agreement-item .phantom-checkout-checkbox:checked ~ .phantom-checkout-checkmark {
  background: var(--phantom-secondary);
  border-color: var(--phantom-secondary);
}

.phantom-checkout-agreement-item .phantom-checkout-checkbox:checked ~ .phantom-checkout-checkmark::after {
  opacity: 1;
}

.phantom-checkout-agreement-item:hover .phantom-checkout-checkmark {
  border-color: var(--phantom-secondary);
}

.phantom-checkout-agreement-item .phantom-checkout-checkbox:focus-visible ~ .phantom-checkout-checkmark {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.phantom-checkout-agreement-text {
  font-size: 0.9rem;
  color: var(--phantom-text-secondary);
  line-height: 1.5;
}

.phantom-checkout-agreement-link {
  color: var(--phantom-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.phantom-checkout-agreement-link:hover {
  color: var(--phantom-secondary-hover);
  text-decoration: underline;
}

.phantom-checkout-agreement-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 0.85rem;
  font-weight: 600;
}

.phantom-checkout-agreement-error i {
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .phantom-checkout-labels { display: none; }

  .phantom-checkout-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }

  .phantom-checkout-row .col-3 { grid-column: span 12; }
  .phantom-checkout-actions { justify-content: center; }
  .phantom-checkout-pkg-price { text-align: center; }

  .phantom-checkout-footer-btns {
    flex-direction: column;
  }

  .phantom-checkout-footer-btns .phantom-btn { width: 100%; justify-content: center; }
}

.phantom-login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.phantom-login-header {
  text-align: center;
  max-width: 550px;
}

.phantom-platform-toggle {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 550px;
}

.phantom-platform-btn {
  flex: 1;
  background: var(--phantom-block-dark);
  border-radius: 8px;
  border: none;
  padding: 1.5rem;
  color: var(--phantom-text-secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.phantom-platform-btn.mode-active {
  background: var(--phantom-block-light);
  color: var(--phantom-text-primary);
}

.phantom-platform-btn:hover {
  background: var(--phantom-block-light);
  color: var(--phantom-text-primary);
}

.phantom-login-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 550px;
  align-items: center;
}

.phantom-login-redirect {
  text-align: center;
}

@media (max-width: 768px) {
  .phantom-platform-toggle { flex-direction: column; }
  .phantom-login-form { flex-direction: column; }
  .phantom-login-form .phantom-btn { width: 100%; justify-content: center; }
}

.phantom-input {
  background: var(--phantom-block-dark);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  color: var(--phantom-text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  transition: border-color 0.2s ease;
}

.phantom-input::placeholder {
  color: var(--phantom-text-secondary);
  opacity: 0.6;
}

.phantom-input:focus {
  outline: none;
  border-color: var(--phantom-accent);
}

.phantom-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phantom-form-label {
  color: var(--phantom-text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.phantom-input-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.phantom-input-group .phantom-input { flex: 1; }

.phantom-input-append {
  background: var(--phantom-block-dark);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  color: var(--phantom-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.phantom-options-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.phantom-options-header {
  text-align: center;
  margin-bottom: 1rem;
}

.phantom-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .phantom-input-group { flex-direction: column; }
  .phantom-input-group .phantom-input { width: 100%; }
  .phantom-form-actions { flex-direction: column; }
  .phantom-form-actions .phantom-btn { width: 100%; justify-content: center; }
}

.phantom-footer {
  width: 100%;
  margin-top: 6rem;
  font-family: 'Poppins', sans-serif;
}

.phantom-footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 40px);
}

.phantom-footer-bottom {
  background: var(--phantom-footer-bg);
  padding: 3rem 0;
}

.phantom-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 1.5rem;
}

.phantom-footer-col:nth-child(2) {
  padding-left: 0;
}

.phantom-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phantom-footer-heading {
  color: var(--phantom-text-primary);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.phantom-footer-text {
  color: var(--phantom-text-primary);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.phantom-footer-copyright {
  color: var(--phantom-text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0.75rem 0 0 0;
}

.phantom-footer-disclaimer {
  color: var(--phantom-text-primary);
  font-size: 0.78rem;
  margin: 0;
}

.phantom-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.phantom-footer-link {
  color: var(--phantom-text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.phantom-footer-link:hover {
  color: var(--phantom-accent);
}

.phantom-footer-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.phantom-footer-link:hover i {
  transform: translateX(3px);
}

.phantom-footer-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.phantom-footer-actions .phantom-footer-btn {
  flex: 1;
}

.phantom-footer-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  display: block;
  background: var(--phantom-btn-surface);
  color: var(--phantom-text-primary);
}

.phantom-footer-btn:hover {
  background: var(--phantom-btn-surface-hover);
}

.phantom-footer-btn--full {
  width: 100%;
}

@media (max-width: 768px) {
  .phantom-footer { margin-top: 3rem; }

  .phantom-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .phantom-footer-col {
    align-items: center;
  }

  .phantom-footer-col:nth-child(2) {
    padding-left: 0;
  }

  .phantom-footer-links {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.2rem;
  }

  .phantom-footer-link {
    white-space: nowrap;
  }

  .phantom-footer-actions {
    width: 100%;
    flex-direction: column;
  }

  .phantom-footer-actions .phantom-footer-btn {
    width: 100%;
  }

  .phantom-footer-btn--full {
    width: 100%;
  }
}

.category-page-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  padding: 2rem;
  text-align: center;
}

.category-page-header { margin-bottom: 1rem; }
.category-page-header h1 { color: var(--phantom-text-primary); margin: 0 0 0.5rem; }
.category-page-header p { color: var(--phantom-text-secondary); margin: 0; }
.category-page-description p { color: var(--phantom-text-secondary); }

.vote-button {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  height: 100%;
  min-height: 160px;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.vote-button:hover { transform: translateY(-2px); }

.vote-eclipse {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: var(--phantom-block-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.vote-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  z-index: 2;
  position: relative;
}

.vote-content h2 { color: var(--phantom-text-primary); margin: 0; }
.vote-content p { color: var(--phantom-text-secondary); margin: 0; opacity: 0.9; }

@media (max-width: 768px) {
  .vote-button {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    min-height: 180px;
  }

  .vote-eclipse { display: none; }
  .vote-content { align-items: center; }
}

.patron-card {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  height: 100%;
  min-height: 280px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.patron-card:hover {
  transform: translateY(-2px);
  border-color: var(--phantom-accent);
}

.patron-accent-block { display: none; }

.patron-eclipse {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 250px; height: 250px;
  background: var(--phantom-block-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.patron-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.patron-header { margin-top: 0.5rem; }
.patron-icon { font-size: 1.3rem; color: var(--phantom-accent); }

.patron-image {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.patron-image img {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.patron-card:hover .patron-image img { transform: scale(1.05); }

.patron-image-placeholder { font-size: 60px; color: var(--phantom-text-primary); opacity: 0.1; }

.patron-details { display: flex; flex-direction: column; gap: 0.3rem; align-items: center; }
.patron-player-name { color: var(--phantom-accent); margin: 0; }
.patron-subtitle { color: var(--phantom-text-secondary); margin: 0; font-size: 0.85rem; opacity: 0.8; }

.patron-tier-bar {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--phantom-text-primary);
  margin-top: 1rem;
}

.patron-tier-diamond { background: #20c0e6; }
.patron-tier-emerald { background: #20e650; }
.patron-tier-netherite { background: #e4274a; }

@media (max-width: 768px) {
  .patron-card { min-height: 240px; padding: 1.5rem; }
  .col-3 { grid-column: span 12; }
}

.faq-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  overflow: visible;
  margin-bottom: 2rem;
  width: 100%;
}

.faq-accent-block { display: none; }

.faq-content {
  overflow: hidden;
  border-radius: 8px;
  padding: 2.5rem 2rem 2rem;
}

.faq-icon-bg { display: none; }

.faq-header { text-align: center; margin-bottom: 1.5rem; }
.faq-title { color: var(--phantom-text-primary); margin: 0 0 0.75rem; }
.faq-description { color: var(--phantom-text-secondary); margin: 0 auto; max-width: 700px; }

.faq-container { display: flex; flex-direction: column; gap: 10px; width: 100%; }

.faq-item {
  background: var(--phantom-block-light);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover { background: var(--phantom-block-dark); }

.faq-text { font-weight: 600; font-size: 0.95rem; color: var(--phantom-text-primary); }
.faq-arrow { font-size: 0.85rem; color: var(--phantom-text-secondary); transition: transform 0.3s ease; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--phantom-block-dark);
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding: 1.2rem 1.3rem;
  margin: 0;
  color: var(--phantom-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 1000px; transition: max-height 0.4s cubic-bezier(1, 0, 1, 0); }
.faq-item.active .faq-arrow { transform: rotate(180deg); }

.rules-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  margin-bottom: 2rem;
  width: 100%;
}

.rules-accent-block { display: none; }

.rules-content {
  overflow: hidden;
  border-radius: 8px;
  padding: 2.5rem 2rem 2rem;
}

.rules-icon-bg { display: none; }

.rules-header { text-align: center; margin-bottom: 1.5rem; }
.rules-title { color: var(--phantom-text-primary); margin: 0 0 0.75rem; }
.rules-description { color: var(--phantom-text-secondary); margin: 0 auto; max-width: 700px; }

.rules-container { display: flex; flex-direction: column; gap: 10px; width: 100%; }

.rule-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--phantom-block-light);
  border: none;
  border-radius: 8px;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}

.rule-item:hover { border-color: var(--phantom-negative); }

.rule-number {
  background: var(--phantom-negative);
  color: var(--phantom-btn-primary-text);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.rule-content { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.rule-title { font-weight: 700; color: var(--phantom-text-primary); font-size: 0.95rem; }
.rule-desc { color: var(--phantom-text-secondary); font-size: 0.85rem; line-height: 1.6; }

.staff-tier-bar {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--phantom-text-primary);
  margin-top: 1rem;
}

.staff-tier-owner { background: #f08c00; }
.staff-tier-administrator { background: #e63946; }
.staff-tier-moderator { background: #4361ee; }
.staff-tier-helper { background: #2dc653; }
.staff-tier-media { background: #9b5de5; }

.staff-card {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
}

.staff-image {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.staff-image img { filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4)); }
.staff-image-placeholder { font-size: 60px; color: var(--phantom-text-primary); opacity: 0.1; }
.staff-details { display: flex; flex-direction: column; align-items: center; }
.staff-player-name { color: var(--phantom-text-primary); margin: 0; }

.ranktable-block {
  background: var(--phantom-block-bg);
  width: 100%;
  padding: 2rem;
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  overflow-x: auto;
  margin-top: 1rem;
}

.rank-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  background: transparent;
  border: none;
}

.rank-table thead th {
  background: transparent;
  padding: 25px 15px;
  border: none;
  vertical-align: bottom;
}

.rank-table tbody tr:nth-child(odd) td,
.rank-table tbody tr:nth-child(odd) th {
  background: var(--phantom-block-dark);
}

.rank-table tbody tr:nth-child(odd) th:first-child,
.rank-table tbody tr:nth-child(odd) td:first-child {
  border-radius: 6px 0 0 6px;
}

.rank-table tbody tr:nth-child(odd) th:last-child,
.rank-table tbody tr:nth-child(odd) td:last-child {
  border-radius: 0 6px 6px 0;
}

.rank-table tbody tr:nth-child(even) td,
.rank-table tbody tr:nth-child(even) th { background: transparent; }

.rank-table tbody td,
.rank-table tbody th { border: none; padding: 16px; text-align: center; vertical-align: middle; }

.rank-table .feature-description {
  text-align: left;
  color: var(--phantom-text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 220px;
}

.rank-table .feature-question,
.phantom-rank-features .feature-question {
  margin-left: 8px;
  color: var(--phantom-text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.rank-table .feature-question:hover,
.phantom-rank-features .feature-question:hover {
  color: var(--phantom-secondary);
}
.rank-table .feature-yes { color: var(--phantom-positive); font-size: 24px; }
.rank-table .feature-no { color: var(--phantom-negative); font-size: 24px; }
.rank-table .feature-text { font-weight: 700; font-size: 0.85rem; color: var(--phantom-text-primary); }

.package-img-src {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.rank-table thead th:hover .package-img-src { transform: scale(1.1) rotate(3deg); }
.rank-table .package-new-price { color: var(--phantom-accent); font-weight: 800; font-size: 1rem; }

.rank-table-header-cell { width: 220px; padding: 12px !important; vertical-align: top; }

.rank-table-features-label {
  background: var(--phantom-accent);
  color: var(--phantom-btn-primary-text);
  padding: 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  position: absolute;
  top: 12px; left: 0; right: 12px; bottom: 30px;
}

.rank-table-features-label i { font-size: 3.5rem; }

.rank-header-content .text-title { margin-bottom: 12px !important; font-size: 1.1rem !important; }
.rank-header-content .package-price-row { margin-bottom: 16px; align-items: center; justify-content: center; display: flex !important; }
.rank-header-content .package-new-price,
.rank-header-content .package-price { font-size: 0.95rem !important; }
.rank-header-content .package-actions { display: flex; justify-content: center; gap: 6px; }
.rank-header-content .package-btn-info,
.rank-header-content .package-btn-cart,
.rank-header-content .package-btn-remove { padding: 8px 12px !important; }

.mobile-only { display: none !important; margin-top: 1rem; }

@media (max-width: 991px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .rank-table thead th { min-width: 180px; }
}

.gc-container { display: flex; flex-direction: column; gap: 16px; margin-top: 1rem; }

.gc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gc-amount-btn {
  background: var(--phantom-block-bg);
  border-radius: 8px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  box-shadow: var(--phantom-shadow);
}

.gc-amount-btn:hover { transform: translateY(-2px); }

.gc-value-sm { font-size: 1.8rem; font-weight: 800; color: var(--phantom-text-primary); }
.gc-currency-sm { font-size: 0.9rem; color: var(--phantom-text-secondary); font-weight: 600; }

.gc-row-premium { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.gc-card-premium {
  background: var(--phantom-block-bg);
  border-radius: 8px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  box-shadow: var(--phantom-shadow);
}

.gc-card-premium:hover { transform: translateY(-2px); }

.gc-value-premium { font-size: 2.5rem; font-weight: 900; color: var(--phantom-text-primary); }
.gc-currency-premium { font-size: 1.2rem; color: var(--phantom-text-secondary); }

@media (max-width: 768px) {
  .gc-row,
  .gc-row-premium { grid-template-columns: 1fr; }
}

.package-upsell-block {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  padding: 1.5rem;
  overflow: hidden;
  transition: transform 0.2s ease;
  height: 100%;
}

.package-img-block { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }

.package-img-block img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.package-name { color: var(--phantom-text-primary); font-weight: 700; margin-bottom: 0.5rem; }

.package-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--phantom-negative);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.package-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.package-price { color: var(--phantom-accent); font-size: 1.3rem; font-weight: 700; }
.package-price-old { color: var(--phantom-negative); font-size: 1rem; font-weight: 600; text-decoration: line-through; }

.upsell-package-price-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.upsell-package-price { color: var(--phantom-accent); font-weight: 700; font-size: 1.1rem; }

.package-grid-actions { display: flex; justify-content: center; width: 100%; }

.package-button-group { display: flex; gap: 0.5rem; width: 100%; max-width: 280px; }

.package-btn-info,
.package-btn-cart {
  flex: 1;
  background: var(--phantom-block-light);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--phantom-text-primary);
  font-weight: 600;
}

.package-btn-info:hover,
.package-btn-cart:hover { background: var(--phantom-block-bg); transform: translateY(-1px); }

.package-btn-info { background: var(--phantom-accent); color: var(--phantom-btn-primary-text); border-color: var(--phantom-accent); }
.package-btn-info:hover { background: var(--phantom-accent-hover); }

.package-btn-cart[disabled],
.package-btn-info[disabled] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.coin-slider-wrap { width: 100%; margin-top: 16px; margin-bottom: 4px; }

.coin-slider-labels { display: flex; justify-content: space-between; margin-bottom: 8px; }

.coin-slider-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--phantom-text-secondary);
  transition: color 0.2s ease;
  flex: 1;
  text-align: center;
}

.coin-slider-label:first-child { text-align: left; }
.coin-slider-label:last-child { text-align: right; }
.coin-slider-label.active { color: var(--phantom-accent); }

.coin-slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--phantom-block-border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.coin-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--phantom-accent);
  cursor: pointer;
  border: 2px solid var(--phantom-block-dark);
}

.coin-slider-input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--phantom-accent);
  cursor: pointer;
  border: 2px solid var(--phantom-block-dark);
}

.coin-stages { width: 100%; margin-top: 12px; }
.coin-stage { display: block; }
.coin-stage.d-none { display: none !important; }
.coin-stage.active { display: block !important; }
.coin-stage .primary-button { width: 100%; justify-content: center; }
.coin-stage .package-card-price-row { margin-bottom: 12px; }

.phantom-content-block-inner a:not(.phantom-btn) {
  color: var(--phantom-accent);
  text-decoration: none;
}

.phantom-content-block-inner a:not(.phantom-btn):hover {
  opacity: 0.8;
}

.phantom-content-block-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .col-6,
  .col-4 {
    grid-column: span 12;
  }

  .phantom-content-block-inner {
    padding: 1.5rem;
  }
}

@media (max-width: 991px) {
  .col-3 {
    grid-column: span 6;
  }
}

@media (max-width: 576px) {
  .col-3 {
    grid-column: span 12;
  }
}

.phantom-desktop-only { display: block; }
.phantom-mobile-only { display: none; }

@media (max-width: 768px) {
  .phantom-desktop-only { display: none; }
  .phantom-mobile-only { display: block; }
}

.phantom-rank-headers {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: stretch;
}

.phantom-rank-info-card {
  background: var(--phantom-block-bg);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  min-width: 240px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.phantom-rank-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0 0 0.75rem;
}

.phantom-rank-info-desc {
  font-size: 0.78rem;
  color: var(--phantom-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.phantom-rank-pkg-card {
  flex: 1;
  background: var(--phantom-block-bg);
  border-radius: 8px;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  font-family: 'Poppins', sans-serif;
}

.phantom-rank-countdown {
  font-size: 0.7rem;
  color: var(--phantom-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.phantom-rank-pkg-img {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phantom-rank-pkg-img-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.phantom-rank-pkg-img-btn:hover {
  transform: scale(1.05);
}

.phantom-rank-pkg-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.phantom-rank-pkg-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-rank-pkg-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.phantom-rank-price-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--phantom-accent);
}

.phantom-rank-pkg-interval {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--phantom-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phantom-rank-pkg-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.phantom-rank-pkg-card--popular {
  background: linear-gradient(to bottom, var(--phantom-secondary) 0%, var(--phantom-secondary) 33%, var(--phantom-block-bg) 33%);
  border: 2px solid var(--phantom-secondary);
  position: relative;
  padding-top: 2rem;
  overflow: hidden;
}

.phantom-rank-pkg-card--popular::before,
.phantom-rank-pkg-card--popular::after {
  content: '';
  position: absolute;
  top: 0;
  height: 33%;
  pointer-events: none;
}

.phantom-rank-pkg-card--popular::after {
  left: -50%;
  width: 35px;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-rank-pkg-card--popular::before {
  left: -50%;
  width: 20px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out 0.15s infinite;
}

@keyframes phantomShine {
  0% { left: -50%; }
  50% { left: 120%; }
  100% { left: 120%; }
}


.phantom-rank-pkg-card--popular .phantom-rank-price-value {
  color: var(--phantom-secondary);
}

.phantom-rank-popular-tag {
  position: absolute;
  top: 0.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--phantom-btn-primary-text);
}

.phantom-rank-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.phantom-rank-feature-row {
  display: flex;
  gap: 0.5rem;
}

.phantom-rank-feature-row > .phantom-rank-feature-label {
  min-width: 240px;
  max-width: 240px;
  background: var(--phantom-block-bg);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
}

.phantom-rank-feature-row > .phantom-rank-feature-cell {
  flex: 1;
  background: var(--phantom-block-bg);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phantom-rank-feature-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  white-space: nowrap;
}

.phantom-rank-feature-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--phantom-text-primary);
}

.phantom-rank-yes {
  color: var(--phantom-accent);
  font-size: 1.2rem;
}

.phantom-rank-no {
  color: var(--phantom-text-secondary);
  opacity: 0.2;
  font-size: 1.2rem;
}

.phantom-patron-tier-bar {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--phantom-btn-primary-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  background: var(--tier-color, var(--phantom-block-bg));
}

.phantom-patron-tier--diamond { --tier-color: #38c9e8; }
.phantom-patron-tier--emerald { --tier-color: #50c878; }
.phantom-patron-tier--netherite { --tier-color: #e4274a; }

.phantom-patron-card {
  background: var(--phantom-block-bg);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

.phantom-patron-image {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.phantom-patron-image img {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.phantom-patron-placeholder {
  font-size: 50px;
  color: var(--phantom-text-primary);
  opacity: 0.1;
}

.phantom-patron-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--phantom-text-primary);
}

.phantom-vote-btn {
  background: var(--phantom-block-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  margin-top: 1rem;
}

.phantom-vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.3);
}

.phantom-vote-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-vote-btn i {
  color: var(--phantom-text-secondary);
  font-size: 0.9rem;
}

.phantom-faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.phantom-rules-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.phantom-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--phantom-block-light);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.phantom-rule-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--phantom-accent);
  min-width: 2rem;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.15rem;
}

.phantom-rule-content {
  flex: 1;
}

.phantom-rule-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin-bottom: 0.25rem;
}

.phantom-rule-desc {
  font-size: 0.85rem;
  color: var(--phantom-text-secondary);
  line-height: 1.6;
}

.phantom-gc-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.phantom-gc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.phantom-gc-row--premium {
  grid-template-columns: repeat(2, 1fr);
}

.phantom-gc-btn,
.phantom-gc-card-premium {
  --gc-bg: var(--phantom-secondary);
  --gc-shadow: #1f57c9;
  position: relative;
  overflow: hidden;
  background: var(--gc-bg);
  border-radius: 10px;
  border-bottom: 6px solid var(--gc-shadow);
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.phantom-gc-btn:hover,
.phantom-gc-card-premium:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.phantom-gc-btn::before,
.phantom-gc-btn::after,
.phantom-gc-card-premium::before,
.phantom-gc-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.phantom-gc-btn::after,
.phantom-gc-card-premium::after {
  left: -50%;
  width: 70px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-gc-btn::before,
.phantom-gc-card-premium::before {
  left: -50%;
  width: 40px;
  background: rgba(255, 255, 255, 0.06);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out 0.15s infinite;
}

.phantom-gc-btn {
  padding: 5rem 1.5rem;
  gap: 0.35rem;
}

.phantom-gc-card-premium {
  padding: 7rem 2rem;
}

.phantom-gc-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--phantom-btn-primary-text);
  letter-spacing: 0.01em;
}

.phantom-gc-currency {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--phantom-btn-primary-text);
  opacity: 0.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phantom-gc-premium-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--phantom-btn-primary-text);
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  letter-spacing: 0.01em;
}

.phantom-gc-premium-value .phantom-gc-currency {
  font-size: 1.05rem;
}

.phantom-gc-row .phantom-gc-btn:nth-child(1) {
  --gc-bg: #3299CD;
  --gc-shadow: #287AA4;
}

.phantom-gc-row .phantom-gc-btn:nth-child(2) {
  --gc-bg: #F10E42;
  --gc-shadow: #C00B35;
}

.phantom-gc-row .phantom-gc-btn:nth-child(3) {
  --gc-bg: #EF5E10;
  --gc-shadow: #BF4B0D;
}

.phantom-gc-row--premium .phantom-gc-card-premium:nth-child(1) {
  --gc-bg: #44BB61;
  --gc-shadow: #36964E;
}

.phantom-gc-row--premium .phantom-gc-card-premium:nth-child(2) {
  --gc-bg: #9400D3;
  --gc-shadow: #7600A9;
}

@media (max-width: 768px) {
  .phantom-gc-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .phantom-gc-row--premium {
    grid-template-columns: 1fr;
  }

  .phantom-gc-btn { padding: 3rem 1rem; }
  .phantom-gc-card-premium { padding: 4rem 1.5rem; }
  .phantom-gc-value { font-size: 1.5rem; }
  .phantom-gc-premium-value { font-size: 1.95rem; }
}

.phantom-staff-tier-bar {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--phantom-btn-primary-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  background: var(--tier-color, var(--phantom-block-bg));
}

.phantom-staff-tier--owner { --tier-color: #f08c00; }
.phantom-staff-tier--admin { --tier-color: #e63946; }
.phantom-staff-tier--mod { --tier-color: #4361ee; }
.phantom-staff-tier--helper { --tier-color: #2dc653; }
.phantom-staff-tier--media { --tier-color: #9b5de5; }

.phantom-staff-tier-bar::before,
.phantom-staff-tier-bar::after,
.phantom-patron-tier-bar::before,
.phantom-patron-tier-bar::after,
.phantom-rank-gamemode-bar::before,
.phantom-rank-gamemode-bar::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.phantom-staff-tier-bar::after,
.phantom-patron-tier-bar::after,
.phantom-rank-gamemode-bar::after {
  left: -50%;
  width: 35px;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-staff-tier-bar::before,
.phantom-patron-tier-bar::before,
.phantom-rank-gamemode-bar::before {
  left: -50%;
  width: 20px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out 0.15s infinite;
}

.phantom-rank-gamemode-bar {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--phantom-btn-primary-text);
  margin: 0.5rem 0;
  font-family: 'Poppins', sans-serif;
  background: var(--tier-color, var(--phantom-block-bg));
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phantom-rank-gamemode--survival { --tier-color: #2dc653; }
.phantom-rank-gamemode--lifesteal { --tier-color: #e63946; }
.phantom-rank-gamemode--creative { --tier-color: #4361ee; }
.phantom-rank-gamemode--skyblock { --tier-color: #f08c00; }
.phantom-rank-gamemode--prison { --tier-color: #9b5de5; }

.phantom-staff-card {
  background: var(--phantom-block-bg);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

.phantom-staff-image {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.phantom-staff-image img {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.phantom-staff-placeholder {
  font-size: 50px;
  color: var(--phantom-text-primary);
  opacity: 0.1;
}

.phantom-staff-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--phantom-text-primary);
}

.phantom-package-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 20px;
}

.phantom-package-modal.show {
  opacity: 1;
  visibility: visible;
}

.phantom-package-modal-content {
  background: var(--phantom-block-bg);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  transform: scale(0.94);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.phantom-package-modal.show .phantom-package-modal-content {
  transform: scale(1);
}

.phantom-package-modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--phantom-negative);
  color: var(--phantom-btn-primary-text);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 0;
  font-size: 0.9rem;
  z-index: 2;
}

.phantom-package-modal-close-btn:hover {
  background: var(--phantom-negative-hover);
}

.phantom-package-modal-close-btn i {
  color: inherit;
}

.phantom-package-modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 3rem 1rem;
}

.phantom-package-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.phantom-package-modal-body {
  padding: 0 1.75rem 1.75rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.phantom-package-modal-description {
  color: var(--phantom-text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.phantom-package-modal-description p,
.phantom-package-modal-description h1,
.phantom-package-modal-description h2,
.phantom-package-modal-description h3,
.phantom-package-modal-description h4,
.phantom-package-modal-description h5,
.phantom-package-modal-description h6,
.phantom-package-modal-description ul,
.phantom-package-modal-description ol,
.phantom-package-modal-description blockquote {
  color: var(--phantom-text-primary);
  margin: 0 0 0.75rem 0;
}

.phantom-package-modal-description h1,
.phantom-package-modal-description h2,
.phantom-package-modal-description h3,
.phantom-package-modal-description h4,
.phantom-package-modal-description h5,
.phantom-package-modal-description h6 {
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.phantom-package-modal-description a {
  color: var(--phantom-secondary);
  text-decoration: underline;
}

.phantom-package-modal-description img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.phantom-package-modal-description ul,
.phantom-package-modal-description ol {
  padding-left: 1.5rem;
}

.phantom-package-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
  margin-top: auto;
}

.phantom-package-modal-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.phantom-package-modal-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-package-modal-original-price {
  font-size: 0.95rem;
  color: var(--phantom-text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
}

.phantom-package-modal-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.phantom-package-modal-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
  color: var(--phantom-btn-primary-text);
}

.phantom-package-modal-btn-cart,
.phantom-package-modal-btn-subscribe {
  background: var(--phantom-secondary);
  color: var(--phantom-btn-primary-text);
}

.phantom-package-modal-btn-cart:hover,
.phantom-package-modal-btn-subscribe:hover {
  background: var(--phantom-secondary-hover);
}

.phantom-package-modal-btn-gift {
  background: var(--phantom-accent);
  color: var(--phantom-btn-primary-text);
}

.phantom-package-modal-btn-gift:hover {
  background: var(--phantom-accent-hover);
}

.phantom-package-modal-btn-remove {
  background: var(--phantom-negative);
  color: var(--phantom-btn-primary-text);
}

.phantom-package-modal-btn-remove:hover {
  background: var(--phantom-negative-hover);
}


@media (max-width: 768px) {
  .phantom-package-modal {
    padding: 12px;
  }

  .phantom-package-modal-content {
    max-height: 92vh;
  }

  .phantom-package-modal-header {
    padding: 1.25rem 2.5rem 0.75rem;
  }

  .phantom-package-modal-title {
    font-size: 1.2rem;
  }

  .phantom-package-modal-body {
    padding: 0 1.25rem 1.25rem;
  }

  .phantom-package-modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .phantom-package-modal-actions {
    justify-content: flex-end;
  }
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background-color: var(--phantom-block-dark, #1E1E1E);
  color: var(--phantom-text-primary, #FFFFFF);
  border: 1px solid #2B2B2B;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: normal;
  max-width: 260px;
  width: max-content;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

[data-tooltip][disabled] {
  cursor: not-allowed;
}

.phantom-upsell-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.phantom-upsell-row {
  background: var(--phantom-block-bg);
  border-radius: 12px;
  box-shadow: var(--phantom-shadow);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 2.75rem;
  min-height: 240px;
  align-items: center;
}

.phantom-upsell-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.phantom-upsell-product-image {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.phantom-upsell-product-image:hover {
  transform: scale(1.06);
}

.phantom-upsell-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.phantom-upsell-product-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
}

.phantom-upsell-product-countdown {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--phantom-accent);
  text-transform: uppercase;
}

.phantom-upsell-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.phantom-upsell-cube {
  position: relative;
  background: var(--phantom-block-dark);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.phantom-upsell-cube:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.phantom-upsell-cube--popular {
  background: linear-gradient(to bottom, var(--phantom-secondary) 0%, var(--phantom-secondary) 1.85rem, var(--phantom-block-dark) 1.85rem);
  border: 2px solid var(--phantom-secondary);
  margin-top: -1.85rem;
  padding-top: calc(1.25rem + 1.85rem);
  overflow: hidden;
}

.phantom-upsell-cube--popular::before,
.phantom-upsell-cube--popular::after {
  content: '';
  position: absolute;
  top: 0;
  height: 1.85rem;
  pointer-events: none;
}

.phantom-upsell-cube--popular::after {
  left: -50%;
  width: 35px;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out infinite;
}

.phantom-upsell-cube--popular::before {
  left: -50%;
  width: 20px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  animation: phantomShine 3s ease-in-out 0.15s infinite;
}

.phantom-upsell-cube--popular .phantom-upsell-cube-price-value {
  color: var(--phantom-secondary);
}

.phantom-upsell-popular-tag {
  position: absolute;
  top: 0.4rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--phantom-btn-primary-text);
  z-index: 1;
}

.phantom-upsell-cube-amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--phantom-text-primary);
  line-height: 1;
}

.phantom-upsell-cube-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.phantom-upsell-cube-price-value {
  color: var(--phantom-text-secondary);
}

.phantom-upsell-cube-old-price {
  color: var(--phantom-text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .phantom-upsell-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    min-height: 0;
  }

  .phantom-upsell-product {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
  }

  .phantom-upsell-product-image {
    width: 130px;
    height: 130px;
  }

  .phantom-upsell-options {
    grid-template-columns: 1fr;
  }

  .phantom-upsell-cube {
    min-height: 180px;
    padding: 1.6rem 1.5rem;
    gap: 0.85rem;
  }

  .phantom-upsell-cube--popular {
    margin-top: 0;
    padding-top: calc(1.6rem + 1.85rem);
  }
}

.phantom-coin-section {
  margin-bottom: 1.5rem;
}

.phantom-coin-card {
  background: var(--phantom-block-bg);
  border: none;
  border-radius: 8px;
  box-shadow: var(--phantom-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phantom-coin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.3);
}

.phantom-coin-card-image {
  background: none;
  border: none;
  padding: 2rem 1.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.phantom-coin-card-image img {
  max-width: 170px;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.phantom-coin-card:hover .phantom-coin-card-image img {
  transform: scale(1.05);
}

.phantom-coin-card-body {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.phantom-coin-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--phantom-text-primary);
  margin: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.phantom-coin-card-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--phantom-accent);
  text-transform: uppercase;
  margin-top: -0.75rem;
}

.phantom-coin-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 0.25rem;
}

.phantom-coin-slider-labels {
  position: relative;
  height: 22px;
}

.phantom-coin-slider-label {
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--phantom-text-secondary);
  transition: color 0.2s ease;
}

.phantom-coin-slider-label.is-active {
  color: var(--phantom-secondary);
}

.phantom-coin-slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--phantom-block-dark);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.phantom-coin-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--phantom-secondary);
  border: 2px solid var(--phantom-block-bg);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.phantom-coin-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.phantom-coin-slider-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--phantom-secondary);
  border: 2px solid var(--phantom-block-bg);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.phantom-coin-slider-input::-moz-range-thumb:hover {
  transform: scale(1.18);
}

.phantom-coin-stages {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.phantom-coin-stage {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  text-align: center;
}

.phantom-coin-stage.is-active {
  display: flex;
}

.phantom-coin-stage-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
}

.phantom-coin-stage-price-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--phantom-text-primary);
}

.phantom-coin-stage-old-price {
  font-size: 0.9rem;
  color: var(--phantom-text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

/* Taller Mineshore hero header */
.phantom-header {
    padding: 3.5rem 0 !important;
}

.phantom-header-inner {
    min-height: 320px !important;
}

/* =========================================
   RECENT PAYMENTS — SALE BANNER STYLE
   ========================================= */

.phantom-module-block:has(.phantom-payments-grid) {
    background: linear-gradient(
        135deg,
        #1c8df0 0%,
        #5fc3ff 100%
    );
}

.phantom-module-block:has(.phantom-payments-grid) .phantom-module-title {
    color: #fff;
}

.phantom-module-block:has(.phantom-payments-grid) .phantom-payment-name {
    color: rgba(255, 255, 255, 0.9);
    

/* =========================================
   SUBCATEGORY NAVIGATION
   ========================================= */

.phantom-subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.phantom-subcategory-list-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;

    min-height: 92px;
    padding: 1.4rem 1.6rem;

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.025) 0%,
            rgba(255, 255, 255, 0.008) 100%
        ),
        var(--phantom-block-bg);

    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 10px;

    color: inherit;
    text-decoration: none;

    box-shadow: var(--phantom-shadow);

    overflow: hidden;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* Very subtle blue glow */
.phantom-subcategory-list-item::before {
    content: '';
    position: absolute;
    inset: 0;

    background: linear-gradient(
        110deg,
        rgba(28, 141, 240, 0.09) 0%,
        rgba(95, 195, 255, 0.025) 45%,
        transparent 75%
    );

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.2s ease;
}


.phantom-subcategory-list-item:hover {
    transform: translateY(-2px);

    border-color: rgba(71, 151, 255, 0.45);

    box-shadow:
        0 7px 24px rgba(0, 0, 0, 0.27),
        0 0 0 1px rgba(71, 151, 255, 0.025);
}


.phantom-subcategory-list-item:hover::before {
    opacity: 1;
}


/* Text */

.phantom-subcategory-content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}


.phantom-subcategory-name {
    color: var(--phantom-text-primary);

    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;

    line-height: 1.25;
}


.phantom-subcategory-description {
    color: var(--phantom-text-secondary);

    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;

    opacity: 0.72;

    transition:
        opacity 0.2s ease,
        color 0.2s ease;
}


.phantom-subcategory-list-item:hover
.phantom-subcategory-description {
    opacity: 0.95;
}


/* Arrow */

.phantom-subcategory-arrow {
    position: relative;
    z-index: 1;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.055);

    border-radius: 9px;

    color: var(--phantom-text-secondary);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}


.phantom-subcategory-list-item:hover
.phantom-subcategory-arrow {
    transform: translateX(3px);

    background: var(--phantom-secondary);

    color: #fff;

    box-shadow: 0 4px 14px rgba(28, 141, 240, 0.22);
}


/* Mobile */

@media (max-width: 768px) {

    .phantom-subcategory-list {
        gap: 0.65rem;
    }

    .phantom-subcategory-list-item {
        min-height: 82px;
        padding: 1.1rem 1.2rem;
    }

    .phantom-subcategory-name {
        font-size: 0.98rem;
    }

    .phantom-subcategory-description {
        font-size: 0.75rem;
    }

    .phantom-subcategory-arrow {
        width: 38px;
        height: 38px;
    }
}

/* =========================================
   SUBCATEGORY NAVIGATION
   Keeps original Phantom list structure
   ========================================= */

.phantom-subcategory-nav {
    min-height: 92px;
    padding: 1.35rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.025) 0%,
            rgba(255, 255, 255, 0.008) 100%
        ),
        var(--phantom-block-bg);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.phantom-subcategory-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 141, 240, 0.5);

    background:
        linear-gradient(
            110deg,
            rgba(28, 141, 240, 0.08) 0%,
            rgba(95, 195, 255, 0.02) 70%
        ),
        var(--phantom-block-bg);

    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.26);
}

.phantom-subcategory-nav-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.phantom-subcategory-nav .phantom-package-list-name {
    min-width: 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.phantom-subcategory-nav-description {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--phantom-text-secondary);
    opacity: 0.72;
}

.phantom-subcategory-nav .phantom-package-list-actions .phantom-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 9px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.phantom-subcategory-nav:hover
.phantom-package-list-actions .phantom-btn {
    background: var(--phantom-secondary);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .phantom-subcategory-nav {
        min-height: 82px;
        padding: 1rem 1.2rem;
    }

    .phantom-subcategory-nav-info {
        align-items: flex-start;
    }

    .phantom-subcategory-nav-description {
        font-size: 0.74rem;
    }
}
}

/* =========================================
   SUBCATEGORY LIST — VISUAL REFRESH
   ========================================= */

.phantom-packages-list {
    gap: 0.9rem;
}

.phantom-subcategory-nav {
    position: relative;
    min-height: 82px;
    padding: 1.15rem 1.5rem 1.15rem 1.8rem;

    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 10px;

    background: var(--phantom-block-bg);

    overflow: hidden;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* alternate rows */
.phantom-subcategory-nav:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}


/* left accent */
.phantom-subcategory-nav::before {
    content: '';
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    border-radius: 0 3px 3px 0;

    background: linear-gradient(
        180deg,
        #5fc3ff,
        #1c8df0
    );

    opacity: 0.55;

    transition:
        opacity 0.2s ease,
        height 0.2s ease;
}


/* hover */
.phantom-subcategory-nav:hover {
    transform: translateX(4px);

    border-color: rgba(28, 141, 240, 0.35);

    background:
        linear-gradient(
            100deg,
            rgba(28, 141, 240, 0.08) 0%,
            rgba(28, 141, 240, 0.02) 35%,
            rgba(255, 255, 255, 0.015) 100%
        ),
        var(--phantom-block-bg);

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.22);
}

.phantom-subcategory-nav:hover::before {
    opacity: 1;
}


/* text */
.phantom-subcategory-nav-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.phantom-subcategory-nav .phantom-package-list-name {
    min-width: 0;

    font-size: 1.08rem;
    font-weight: 700;

    color: var(--phantom-text-primary);
}

.phantom-subcategory-nav-description {
    font-size: 0.78rem;
    font-weight: 500;

    color: var(--phantom-text-secondary);

    opacity: 0.65;
}


/* arrow button */
.phantom-subcategory-nav .phantom-package-list-actions .phantom-btn {
    width: 40px;
    height: 40px;

    padding: 0;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.055);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.phantom-subcategory-nav:hover
.phantom-package-list-actions .phantom-btn {
    background: var(--phantom-secondary);
    transform: translateX(3px);
}


/* slightly tighter overall */
.phantom-subcategory-nav .phantom-package-list-info {
    gap: 0.25rem;
}


/* mobile */
@media (max-width: 768px) {

    .phantom-packages-list {
        gap: 0.65rem;
    }

    .phantom-subcategory-nav {
        min-height: 76px;

        padding:
            1rem
            1rem
            1rem
            1.4rem;
    }

    .phantom-subcategory-nav:hover {
        transform: none;
    }

    .phantom-subcategory-nav-description {
        font-size: 0.72rem;
    }
}

/* =========================================
   PACKAGE LIST — MATCH SUBCATEGORY STYLE
   ========================================= */

.phantom-packages-section .phantom-package-list-item {
    position: relative;
    min-height: 82px;
    padding: 1.15rem 1.5rem 1.15rem 1.8rem;

    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 10px;

    background: var(--phantom-block-bg);

    overflow: hidden;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* Alternate package rows */
.phantom-packages-section .phantom-package-list-item:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}


/* Blue accent line */
.phantom-packages-section .phantom-package-list-item::before {
    content: '';
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    border-radius: 0 3px 3px 0;

    background: linear-gradient(
        180deg,
        #5fc3ff,
        #1c8df0
    );

    opacity: 0.45;

    transition: opacity 0.2s ease;
}


/* Hover */
.phantom-packages-section .phantom-package-list-item:hover {
    transform: translateX(4px);

    border-color: rgba(28, 141, 240, 0.35);

    background:
        linear-gradient(
            100deg,
            rgba(28, 141, 240, 0.08) 0%,
            rgba(28, 141, 240, 0.02) 35%,
            rgba(255, 255, 255, 0.015) 100%
        ),
        var(--phantom-block-bg);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.phantom-packages-section .phantom-package-list-item:hover::before {
    opacity: 1;
}


/* Package name */
.phantom-packages-section .phantom-package-list-name {
    font-size: 1.05rem;
    font-weight: 700;
    min-width: 190px;
}


/* Price */
.phantom-packages-section .phantom-package-list-price {
    font-size: 0.95rem;
}


/* Buttons */
.phantom-packages-section .phantom-package-list-actions {
    gap: 0.5rem;
}

.phantom-packages-section .phantom-package-list-actions .phantom-btn {
    width: 40px;
    height: 40px;

    padding: 0;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.055);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.phantom-packages-section .phantom-package-list-item:hover
.phantom-package-list-actions .phantom-btn--light {
    background: var(--phantom-secondary);
}


/* Slightly separate name and price */
.phantom-packages-section .phantom-package-list-info {
    gap: 2rem;
}


/* Mobile */
@media (max-width: 768px) {

    .phantom-packages-section .phantom-package-list-item {
        min-height: 76px;
        padding: 1rem 1rem 1rem 1.4rem;
    }

    .phantom-packages-section .phantom-package-list-item:hover {
        transform: none;
    }

    .phantom-packages-section .phantom-package-list-info {
        gap: 0.7rem;
    }

    .phantom-packages-section .phantom-package-list-name {
        
        
        min-width: 0;
    }
}

.phantom-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.phantom-logo-link .phantom-logo {
    transition: transform 0.2s ease;
}

.phantom-logo-link:hover .phantom-logo {
    transform: scale(1.02);
}

/* =========================================
   CATEGORY CARDS — HOVER GLARE
   ========================================= */

.phantom-category-card {
    position: relative;
    overflow: hidden;
}

/* Moving glare */
.phantom-category-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -35%;
    width: 18%;
    height: 200%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0.12),
        transparent
    );

    transform: skewX(-18deg);
    pointer-events: none;
    opacity: 0;
    z-index: 5;
}

/* =========================================
   CATEGORY CARDS — HOVER INTERVAL GLARE
   ========================================= */

.phantom-category-card {
    position: relative;
    overflow: hidden;
}

.phantom-category-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -35%;
    width: 18%;
    height: 200%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0.12),
        transparent
    );

    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

/* Only animate the card currently being hovered */
.phantom-category-card:hover::after {
    animation: phantom-category-glare 3.5s ease-in-out infinite;
}

@keyframes phantom-category-glare {
    0% {
        left: -35%;
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    20% {
        left: 120%;
        opacity: 1;
    }

    21% {
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

/* =========================================
   MINESHORE HOMEPAGE MODE SHOWCASE
   ========================================= */

.mineshore-mode-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    grid-template-rows:
        205px
        205px;

    gap: 1rem;

    margin-bottom: 1.5rem;
}


/* =========================================
   CARD
   ========================================= */

.mineshore-mode-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-width: 0;

    padding: 2rem 2.3rem;

    background:
        linear-gradient(
            110deg,
            rgba(59, 130, 246, 0.07) 0%,
            rgba(59, 130, 246, 0.015) 55%,
            transparent 100%
        ),
        var(--phantom-block-bg);

    border: 1px solid rgba(255, 255, 255, 0.045);

    border-radius: 10px;

    box-shadow: var(--phantom-shadow);

    color: inherit;
    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}


/* Global / first category */
.mineshore-mode-card--featured {
    grid-column: 1;
    grid-row: 1 / 3;

    min-height: 426px;
}


/* Survival / second category */
.mineshore-mode-card--top {
    grid-column: 2;
    grid-row: 1;
}


/* Fuse / third category */
.mineshore-mode-card--bottom {
    grid-column: 2;
    grid-row: 2;
}


/* Any future categories */
.mineshore-mode-card--extra {
    min-height: 205px;
}


/* =========================================
   HOVER
   ========================================= */

.mineshore-mode-card:hover {
    transform: translateY(-3px);

    border-color: rgba(59, 130, 246, 0.72);

    background:
        linear-gradient(
            110deg,
            rgba(59, 130, 246, 0.13) 0%,
            rgba(95, 195, 255, 0.035) 55%,
            transparent 100%
        ),
        var(--phantom-block-bg);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.3),
        0 0 18px rgba(59, 130, 246, 0.06);
}


/* =========================================
   TEXT
   ========================================= */

.mineshore-mode-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    gap: 0.3rem;

    min-width: 0;
}


.mineshore-mode-title {
    margin: 0;

    color: var(--phantom-text-primary);

    font-family: 'Poppins', sans-serif;

    font-size: 1.65rem;
    font-weight: 800;

    line-height: 1.1;

    text-transform: uppercase;

    text-shadow:
        0 3px 8px rgba(0, 0, 0, 0.22);
}


.mineshore-mode-subtitle {
    color: var(--phantom-text-secondary);

    font-family: 'Poppins', sans-serif;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.04em;

    text-transform: uppercase;

    opacity: 0.8;
}


/* Larger text on featured Global card */

.mineshore-mode-card--featured
.mineshore-mode-title {
    font-size: 2rem;
}

.mineshore-mode-card--featured
.mineshore-mode-subtitle {
    font-size: 0.88rem;
}


/* =========================================
   ARTWORK
   ========================================= */

.mineshore-mode-image {
    position: relative;
    z-index: 2;

    width: 150px;
    height: 150px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


.mineshore-mode-card--featured
.mineshore-mode-image {
    width: 260px;
    height: 260px;
}


.mineshore-mode-image img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 9px 14px
            rgba(0, 0, 0, 0.26)
        );

    transition:
        transform 0.28s ease,
        filter 0.28s ease;
}


.mineshore-mode-card:hover
.mineshore-mode-image img {
    transform: scale(1.06);

    filter:
        drop-shadow(
            0 11px 18px
            rgba(0, 0, 0, 0.32)
        );
}


/* =========================================
   POPULAR BADGE
   ========================================= */

.mineshore-mode-popular {
    position: absolute;

    top: 0.75rem;
    left: 0.75rem;

    z-index: 6;

    padding: 0.23rem 0.65rem;

    background: var(--phantom-secondary);

    border-radius: 4px;

    color: #fff;

    font-family: 'Poppins', sans-serif;

    font-size: 0.65rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    overflow: hidden;
}


/* Little shine on popular badge */

.mineshore-mode-popular::after {
    content: "";

    position: absolute;

    top: 0;
    left: -60%;

    width: 32px;
    height: 100%;

    background:
        rgba(255, 255, 255, 0.24);

    transform: skewX(-20deg);

    animation:
        phantomShine
        3s
        ease-in-out
        infinite;

    pointer-events: none;
}


/* =========================================
   CARD GLARE
   Only repeats while hovered
   ========================================= */

.mineshore-mode-card::after {
    content: "";

    position: absolute;

    top: -60%;
    left: -35%;

    width: 17%;
    height: 220%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.08),
            transparent
        );

    transform: skewX(-18deg);

    opacity: 0;

    pointer-events: none;

    z-index: 5;
}


.mineshore-mode-card:hover::after {
    animation:
        mineshoreModeGlare
        3.5s
        ease-in-out
        infinite;
}


@keyframes mineshoreModeGlare {

    0% {
        left: -35%;
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    20% {
        left: 120%;
        opacity: 1;
    }

    21% {
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}


/* =========================================
   SUBTLE INNER LIGHT
   ========================================= */

.mineshore-mode-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(59, 130, 246, 0.07),
            transparent 45%
        );

    pointer-events: none;

    z-index: 1;

    opacity: 0.75;

    transition: opacity 0.2s ease;
}


.mineshore-mode-card:hover::before {
    opacity: 1;
}


/* =========================================
   FOURTH+ CATEGORIES
   ========================================= */

.mineshore-mode-card--extra:nth-child(even) {
    grid-column: 1;
}

.mineshore-mode-card--extra:nth-child(odd) {
    grid-column: 2;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .mineshore-mode-grid {
        grid-template-rows:
            180px
            180px;
    }

    .mineshore-mode-card--featured {
        min-height: 376px;
    }

    .mineshore-mode-card {
        padding: 1.6rem;
    }

    .mineshore-mode-card--featured
    .mineshore-mode-image {
        width: 210px;
        height: 210px;
    }

    .mineshore-mode-image {
        width: 125px;
        height: 125px;
    }

    .mineshore-mode-title {
        font-size: 1.35rem;
    }

    .mineshore-mode-card--featured
    .mineshore-mode-title {
        font-size: 1.65rem;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .mineshore-mode-grid {
        display: flex;

        flex-direction: column;

        gap: 0.8rem;
    }

    .mineshore-mode-card,
    .mineshore-mode-card--featured,
    .mineshore-mode-card--top,
    .mineshore-mode-card--bottom,
    .mineshore-mode-card--extra {
        min-height: 165px;

        padding: 1.3rem 1.35rem;
    }

    .mineshore-mode-card--featured
    .mineshore-mode-image,
    .mineshore-mode-image {
        width: 110px;
        height: 110px;
    }

    .mineshore-mode-title,
    .mineshore-mode-card--featured
    .mineshore-mode-title {
        font-size: 1.2rem;
    }

    .mineshore-mode-subtitle,
    .mineshore-mode-card--featured
    .mineshore-mode-subtitle {
        font-size: 0.7rem;
    }

    .mineshore-mode-card:hover {
        transform: none;
    }
}

/* =========================================================
   COMMUNITY GOAL
   ========================================================= */

.phantom-community-goal {
    padding: 2.5rem;
}

/* Title */
.phantom-community-goal .phantom-module-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Amount + percentage row */
.phantom-goal-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    margin-bottom: 0.65rem;

    font-size: 0.95rem;
    font-weight: 700;
    color: var(--phantom-text-secondary);
}

/* Reset old amount styling */
.phantom-community-goal .phantom-goal-amount {
    margin: 0;
    text-align: left;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.phantom-goal-percentage {
    margin-left: auto;
    color: var(--phantom-text-primary);
}

/* Progress bar background */
.phantom-community-goal .phantom-progress-bar {
    position: relative;

    width: 100%;
    height: 46px;

    background: #1d1d1d;
    border-radius: 10px;

    overflow: hidden;
}

/* BLUE progress */
.phantom-community-goal .phantom-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;

    min-width: 0;

    background: linear-gradient(
        90deg,
        #258cf4 0%,
        #3b82f6 50%,
        #55b9f3 100%
    );

    border-radius: 10px;

    transition: width 0.6s ease;
}

/* Repeatable text */
.phantom-community-goal .phantom-goal-repeatable {
    margin-top: 1rem;
    text-align: center;
}

/* =========================================
   HOMEPAGE COMMUNITY GOAL POSITION
   ========================================= */

#mineshore-community-goal-slot {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#mineshore-community-goal-slot > .col-12 {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    grid-column: 1 / -1;
}

#mineshore-community-goal-slot .phantom-community-goal {
    width: 100%;
    min-height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 2.5rem;

    border-radius: 10px;
    background: var(--phantom-block-bg);
    box-shadow: var(--phantom-shadow);
}

#mineshore-community-goal-slot .phantom-module-title {
    margin-bottom: 1.5rem;
}

/* Package modal links - Mineshore blue */
.phantom-package-modal-description a {
    color: var(--phantom-secondary) !important;
}

.phantom-package-modal-description a:hover {
    color: var(--phantom-secondary-hover) !important;
}

/* =========================================
   CHECKOUT TERMS LINK — FORCE MINESHORE BLUE
   ========================================= */

.phantom-checkout-agreement-link,
.phantom-checkout-agreement-text a {
    color: var(--phantom-secondary) !important;
    text-decoration: none;
}

.phantom-checkout-agreement-link:hover,
.phantom-checkout-agreement-text a:hover {
    color: var(--phantom-secondary-hover) !important;
    text-decoration: underline;
}

/* =========================================
   TEBEX CHECKOUT OVERLAY — FORCE BLUE
   ========================================= */

/* Continue to Payment */
#open-checkout-modal,
.checkout-button,
.btn-success,
.btn-primary,
button[type="submit"] {
    background: var(--phantom-secondary) !important;
    border-color: var(--phantom-secondary) !important;
    color: #fff !important;
}

#open-checkout-modal:hover,
.checkout-button:hover,
.btn-success:hover,
.btn-primary:hover,
button[type="submit"]:hover {
    background: var(--phantom-secondary-hover) !important;
    border-color: var(--phantom-secondary-hover) !important;
}

/* "You might like" / highlighted checkout text */
.checkout-modal a,
.checkout-modal .active,
.checkout-modal .highlight,
.checkout-modal .text-primary {
    color: var(--phantom-secondary) !important;
}


/* =========================================
   NAV — LOGGED IN MINECRAFT USER
   ========================================= */

.phantom-nav-player {
    height: 50px;

    display: flex;
    align-items: center;
    gap: 0.65rem;

    padding: 0 1rem 0 0.55rem;

    background: var(--phantom-btn-surface);
    border-radius: 8px;

    color: var(--phantom-text-primary);

    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.phantom-nav-player-head {
    width: 36px;
    height: 36px;

    display: block;

    border-radius: 6px;

    image-rendering: pixelated;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.25);
}

.phantom-nav-player-name {
    max-width: 150px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* Mobile */
@media (max-width: 768px) {

    .phantom-nav-player {
        width: 38px;
        height: 38px;

        padding: 0;

        justify-content: center;
    }

    .phantom-nav-player-head {
        width: 30px;
        height: 30px;
    }

    .phantom-nav-player-name {
        display: none;
    }
}

/* =========================================
   FOOTER — MINESHORE BLUE LINKS
   ========================================= */

.phantom-footer-link:hover,
.phantom-footer-link:focus {
    color: #3b82f6 !important;
}

.phantom-footer-link:hover i,
.phantom-footer-link:focus i {
    color: #3b82f6 !important;
}

/* =========================================
   FEATURED PACKAGES — MINESHORE BLUE
   ========================================= */

.phantom-featured-package-module .phantom-btn--accent {
    background: linear-gradient(
        135deg,
        #1c8df0 0%,
        #5fc3ff 100%
    ) !important;

    border-color: transparent !important;
    color: #fff !important;
}

.phantom-featured-package-module .phantom-btn--accent:hover {
    background: linear-gradient(
        135deg,
        #258ff0 0%,
        #70caff 100%
    ) !important;

    border-color: transparent !important;
    color: #fff !important;
}

/* =========================================
   TEXT BOX — LEARN MORE BUTTON
   ========================================= */

.phantom-notice-block--with-action {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.phantom-notice-content {
    flex: 1;
}

.phantom-notice-learn-more {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;

    background: linear-gradient(
        135deg,
        #1c8df0 0%,
        #5fc3ff 100%
    ) !important;

    border: none;
    border-radius: 8px;

    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        filter 0.2s ease,
        transform 0.2s ease;
}

.phantom-notice-learn-more:hover,
.phantom-notice-learn-more:focus {
    background: linear-gradient(
        135deg,
        #258ff0 0%,
        #70caff 100%
    ) !important;

    color: #ffffff !important;
    text-decoration: none !important;

    transform: translateY(-1px);
}

.phantom-notice-learn-more:active {
    transform: translateY(0);
}

