/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* MEGA DISCOUNT CTA ANIMATIONS */
@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(12deg); }
  100% { transform: translateX(200%) skewX(12deg); }
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 
                0 0 40px rgba(34, 197, 94, 0.3), 
                0 0 60px rgba(34, 197, 94, 0.1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 
                0 0 60px rgba(34, 197, 94, 0.5), 
                0 0 90px rgba(34, 197, 94, 0.3);
  }
}

@keyframes pulse-text {
  0%, 100% { 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(34, 197, 94, 0.6),
                 0 0 30px rgba(34, 197, 94, 0.4);
  }
  50% { 
    text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                 0 0 30px rgba(34, 197, 94, 0.8),
                 0 0 40px rgba(34, 197, 94, 0.6);
  }
}

@keyframes pulse-border {
  0%, 100% { 
    border-color: rgba(147, 51, 234, 0.8);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
  }
  50% { 
    border-color: rgba(147, 51, 234, 1);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.8);
  }
}

.animate-shimmer {
  animation: shimmer 2s infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-pulse-text {
  animation: pulse-text 1.5s ease-in-out infinite;
}

.animate-pulse-border {
  animation: pulse-border 1.5s ease-in-out infinite;
}

.mega-discount-banner {
  background: linear-gradient(45deg, #059669, #10b981, #34d399, #10b981, #059669);
  background-size: 300% 300%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.mega-cta-button {
  background: linear-gradient(45deg, #7c3aed, #a855f7, #c084fc, #a855f7, #7c3aed);
  background-size: 300% 300%;
  animation: gradient-shift 2s ease infinite;
}

.mega-cta-button:hover {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.5);
}

/* DISCORD BUTTONS */
.discord-cta-btn {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 50%, #3c45a5 100%) !important;
  color: #f5f5dc !important;
  border: 2px solid #5865f2 !important;
  border-radius: 0 !important;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(88, 101, 242, 0.25),
    inset 2px 2px 4px rgba(255, 255, 255, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.5) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  overflow: hidden !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
  /* Grunge texture */
  background-image: 
    linear-gradient(45deg, transparent 25%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 50%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(88, 101, 242, 0.2) 2px, transparent 2px),
    linear-gradient(135deg, #5865f2 0%, #4752c4 50%, #3c45a5 100%) !important;
  background-size: 16px 16px, 40px 40px, 100% 100% !important;
}

.discord-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(114, 137, 218, 0.4), transparent);
  transition: left 0.6s ease;
}

.discord-cta-btn:hover {
  background: linear-gradient(135deg, #7289da 0%, #5865f2 50%, #4752c4 100%) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(88, 101, 242, 0.35),
    inset 3px 3px 6px rgba(255, 255, 255, 0.2),
    inset -3px -3px 6px rgba(0, 0, 0, 0.6) !important;
  border-color: #7289da !important;
}

.discord-cta-btn:hover::before {
  left: 100%;
}

.discord-cta-btn:active {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(88, 101, 242, 0.25),
    inset 1px 1px 3px rgba(255, 255, 255, 0.1),
    inset -1px -1px 3px rgba(0, 0, 0, 0.4) !important;
}

.discord-text-link {
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  font-weight: 500;
}

.discord-text-link:hover {
  text-shadow: 0 0 12px rgba(196, 181, 253, 0.8), 0 0 24px rgba(167, 139, 250, 0.6);
  transform: translateY(-2px);
}

a.discord-btn-hero,
.discord-btn-hero,
a.discord-btn-hero.px-10,
.discord-btn-hero.px-10,
a.discord-btn-hero.px-10.py-4,
.discord-btn-hero.px-10.py-4 {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 50%, #3c45a5 100%) !important;
  border: 2px solid rgba(88, 101, 242, 0.8) !important;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(88, 101, 242, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
  text-decoration: none !important;
  display: inline-flex !important;
  color: white !important;
  padding: 1rem 2.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  align-items: center !important;
  gap: 0.75rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.discord-btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.discord-btn-hero:hover {
  background: linear-gradient(135deg, #6b75f5 0%, #5865f2 50%, #4752c4 100%) !important;
  border-color: rgba(114, 137, 218, 1) !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(88, 101, 242, 0.4),
    0 0 30px rgba(88, 101, 242, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.discord-btn-hero:hover::before {
  left: 100%;
}

.discord-btn-hero:active {
  transform: translateY(-2px) scale(1.05) !important;
}

.discord-icon-container {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  border: 2px solid #5865f2;
  border-radius: 0;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(88, 101, 242, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  /* Grunge texture */
  background-image: 
    linear-gradient(45deg, transparent 25%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 50%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(88, 101, 242, 0.2) 2px, transparent 2px),
    linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  background-size: 16px 16px, 40px 40px, 100% 100%;
}

.discord-cta-panel {
  border: 2px solid #5865f2;
  border-radius: 0;
  background: linear-gradient(135deg, 
    rgba(25, 20, 20, 0.85) 0%, 
    rgba(30, 25, 35, 0.85) 50%, 
    rgba(25, 20, 20, 0.85) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(88, 101, 242, 0.3),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  /* Grunge texture */
  background-image: 
    linear-gradient(45deg, transparent 25%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 50%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(88, 101, 242, 0.15) 2px, transparent 2px);
  background-size: 16px 16px, 40px 40px;
}

.discord-cta-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.2), transparent);
  transition: left 0.6s ease;
}

.discord-cta-panel:hover {
  border-color: #7289da;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(88, 101, 242, 0.5),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.discord-cta-panel:hover::before {
  left: 100%;
}

/* VIDEO GRID */
.video-grid {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.video-grid-item {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.video-grid-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.video-square,
div.video-square,
.video-grid-item .video-square {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  border: 2px solid rgba(17, 157, 180, 0.78) !important;
  border-color: rgba(17, 157, 180, 0.78) !important;
  background: #0a0a0a !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(17, 157, 180, 0.24),
    inset 0 0 30px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
}

.video-square video,
.video-square video.w-full,
.video-square video.h-full,
.video-grid-item .video-square video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border: none !important;
  /* GPU acceleration for smoother playback */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Optimize compositing */
  isolation: isolate;
}

.video-title-container {
  text-align: center;
  width: 100%;
  padding: 0 8px;
  transition: all 0.3s ease;
}

.video-grid-item:hover .video-square {
  border-color: rgba(223, 100, 5, 0.86) !important;
  border-width: 2px !important;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.8),
    0 0 12px rgba(17, 157, 180, 0.28),
    0 0 18px rgba(223, 100, 5, 0.2),
    inset 0 0 30px rgba(17, 157, 180, 0.08);
}

.video-grid-item:hover .video-title {
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.9),
    0 0 8px rgba(17, 157, 180, 0.36),
    0 0 12px rgba(223, 100, 5, 0.22);
  transform: scale(1.05);
}

.video-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.9),
    0 0 8px rgba(17, 157, 180, 0.3);
  text-align: center;
  font-family: 'Aboreto', serif;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
}

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
}

.lightbox-overlay.hidden {
  display: none;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.lightbox-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Aboreto', serif;
  letter-spacing: 0.05em;
}

.lightbox-video {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Mobile touch indicator */
@media (max-width: 768px) {
  .video-grid-overlay {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
  }
  
  .lightbox-title {
    font-size: 1.2rem;
    margin-top: 50px;
  }
}

/* CART QUANTITY CONTROLS */
.quantity-controls {
  transition: all 0.3s ease;
}

.quantity-controls input[type="number"] {
  /* Hide spinner buttons in WebKit browsers */
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.quantity-controls input[type="number"]::-webkit-outer-spin-button,
.quantity-controls input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Enhanced cart button styling */
.quantity-controls .nav-link-enhanced {
  position: relative;
  min-width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make quantity input match the theme */
.quantity-controls .gaming-input {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(156, 163, 175, 0.3);
  border-radius: 0;
  height: 48px;
}

.quantity-controls .gaming-input:focus {
  border-color: var(--gaming-red);
  box-shadow: 
    0 0 0 1px var(--gaming-red),
    var(--gaming-glow);
}

/* Admin Users table: stacked cards on mobile */
@media (max-width: 767px) {
  .admin-users-table thead {
    display: none;
  }
  .admin-users-table tbody tr {
    display: block;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.75rem;
    background: rgba(31, 41, 55, 0.4);
    transition: background-color 0.2s, border-color 0.2s;
    border-top: none;
    border-bottom: none;
  }
  .admin-users-table tbody tr:hover {
    background: rgba(55, 65, 81, 0.4);
  }
  .admin-users-table tbody tr.border-red-500 {
    border-left-width: 4px;
    border-left-color: rgb(239, 68, 68);
  }
  .admin-users-table tbody td {
    display: block;
    padding: 0.375rem 0;
    border: none;
    white-space: normal;
  }
  .admin-users-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(156, 163, 175);
    display: block;
    margin-bottom: 0.125rem;
  }
  .admin-users-table tbody td[class*="whitespace-nowrap"] {
    white-space: normal;
  }
  .admin-users-table tbody td .truncate {
    max-width: none;
  }
}

/* CHECKOUT FLOAT BUTTON */
.checkout-float-btn {
  position: relative;
  background: linear-gradient(135deg, #dc2626, #ef4444, #dc2626);
  background-size: 200% 200%;
  animation: checkout-pulse 2s ease-in-out infinite;
}

.checkout-float-btn:hover {
  animation: checkout-float 0.6s ease-in-out infinite alternate;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.checkout-glow {
  display: inline-block;
  animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes checkout-pulse {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes checkout-float {
  0% {
    transform: translateY(0px) scale(1.05);
  }
  100% {
    transform: translateY(-2px) scale(1.08);
  }
}

@keyframes subtle-glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 15px rgba(220, 38, 38, 0.3);
  }
}

/* ASCENDENCY REVAMP */
:root {
  --asc-blue: #119DB4;
  --asc-orange: #DF6405;
  --asc-blue-rgb: 17, 157, 180;
  --asc-orange-rgb: 223, 100, 5;
  --asc-obsidian: #030606;
  --asc-void: #070909;
  --asc-stone: #111817;
  --asc-stone-2: #1a1d1a;
  --asc-panel: rgba(9, 15, 15, 0.88);
  --asc-panel-strong: rgba(7, 12, 12, 0.95);
  --asc-line: rgba(17, 157, 180, 0.35);
  --asc-line-strong: rgba(223, 100, 5, 0.55);
  --asc-gold: #d8ad62;
  --asc-muted: #92a5a6;
  --asc-glow-blue: 0 0 22px rgba(var(--asc-blue-rgb), 0.38);
  --asc-glow-orange: 0 0 22px rgba(var(--asc-orange-rgb), 0.36);
  --asc-panel-shadow:
    0 18px 46px rgba(0, 0, 0, 0.58),
    0 0 28px rgba(var(--asc-blue-rgb), 0.15),
    inset 0 0 34px rgba(0, 0, 0, 0.72);

  --gaming-red: var(--asc-blue);
  --gaming-red-bright: var(--asc-blue);
  --gaming-red-accent: var(--asc-orange);
  --gaming-red-light: #5ee0ef;
  --gaming-gradient: linear-gradient(135deg, #07282d 0%, var(--asc-blue) 55%, var(--asc-orange) 100%);
  --gaming-glow: var(--asc-glow-blue);
  --grunge-red-dark: #061112;
  --grunge-red: #0a3339;
  --grunge-red-medium: #0f6f7d;
  --grunge-red-light: #4cc9d8;
  --grunge-red-bright: var(--asc-blue);
  --grunge-red-accent: var(--asc-orange);
  --grunge-red-hover: #38d5e9;
  --grunge-orange: var(--asc-orange);
  --grunge-gradient: linear-gradient(135deg, #071111 0%, #0b3c43 48%, #9e4305 100%);
  --rust-gradient: linear-gradient(135deg, #0d3f47 0%, var(--asc-blue) 45%, var(--asc-orange) 100%);
  --stone-gradient: linear-gradient(135deg, #090d0d 0%, #141918 55%, #222017 100%);
  --grunge-glow: var(--asc-glow-blue);
  --grunge-glow-strong: 0 0 34px rgba(var(--asc-blue-rgb), 0.58), 0 0 18px rgba(var(--asc-orange-rgb), 0.28);
  --rust-glow: var(--asc-glow-orange);
  --stone-shadow: 0 12px 30px rgba(0, 0, 0, 0.62);
  --textured-text: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 12px rgba(var(--asc-blue-rgb), 0.28);
  --deep-textured: 0 3px 7px rgba(0, 0, 0, 0.95), 0 0 20px rgba(var(--asc-orange-rgb), 0.32), 0 0 30px rgba(var(--asc-blue-rgb), 0.2);
}

html {
  background: var(--asc-obsidian);
  max-width: 100%;
  overflow-x: clip;
}

body {
  color: #edf7f8 !important;
  background-color: var(--asc-obsidian) !important;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(var(--asc-blue-rgb), 0.16), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(var(--asc-orange-rgb), 0.12), transparent 28rem),
    radial-gradient(circle at 52% 72%, rgba(var(--asc-blue-rgb), 0.08), transparent 36rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.88)),
    var(--asc-glyph-texture, none) !important;
  background-size: auto, auto, auto, auto, 540px 540px !important;
  background-attachment: fixed !important;
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(var(--asc-blue-rgb), 0.06) 35.25% 35.7%, transparent 36%),
    linear-gradient(245deg, transparent 0 42%, rgba(var(--asc-orange-rgb), 0.05) 42.2% 42.6%, transparent 43%),
    radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(0, 0, 0, 0.62) 100%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

body::after {
  background:
    radial-gradient(circle, rgba(var(--asc-blue-rgb), 0.55) 0 1px, transparent 2px) 8% 18% / 180px 180px,
    radial-gradient(circle, rgba(var(--asc-orange-rgb), 0.45) 0 1px, transparent 2px) 84% 30% / 220px 220px,
    radial-gradient(circle, rgba(216, 173, 98, 0.35) 0 1px, transparent 2px) 40% 82% / 260px 260px;
  opacity: 0.28;
  animation: asc-node-drift 18s ease-in-out infinite alternate;
}

body > *:not(.fixed) {
  position: relative;
  z-index: auto;
}

body > main,
body > footer,
body > .home-revamp {
  z-index: 1;
}

body > nav.gaming-nav {
  z-index: 50 !important;
}

.asc-nav-desktop,
.launch-event-popover {
  display: none;
}

.asc-nav-mobile-toggle {
  display: block;
}

.asc-nav-mobile-menu {
  display: block;
}

.asc-nav-mobile-menu.hidden {
  display: none !important;
}

@media (min-width: 1280px) {
  .asc-nav-desktop {
    display: flex;
  }

  .asc-nav-mobile-toggle,
  .asc-nav-mobile-menu {
    display: none !important;
  }

  .launch-event-popover {
    display: block;
  }
}

#vote-toast-container {
  position: fixed !important;
  max-width: calc(100vw - 2rem);
}

#vote-toast-container > * {
  max-width: 100%;
}

@keyframes asc-node-drift {
  from { transform: translate3d(0, 0, 0); opacity: 0.2; }
  to { transform: translate3d(0, -18px, 0); opacity: 0.36; }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .treasure-container,
  .home-rune-node,
  .hero-reel-video {
    animation: none !important;
  }
}

section.bg-gradient-to-br,
section.bg-gradient-to-b,
.bg-gradient-to-br.from-gray-900,
.bg-gradient-to-b.from-black.to-gray-900,
.bg-gradient-to-b.from-gray-900.to-black,
.bg-gray-900,
.bg-gray-800,
.bg-gray-700,
.bg-gray-600 {
  background-color: transparent !important;
  background-image:
    radial-gradient(circle at 12% 0%, rgba(var(--asc-blue-rgb), 0.11), transparent 24rem),
    radial-gradient(circle at 90% 15%, rgba(var(--asc-orange-rgb), 0.09), transparent 22rem),
    linear-gradient(180deg, rgba(4, 7, 7, 0.94), rgba(6, 9, 9, 0.86)) !important;
}

section.bg-gradient-to-br {
  border-bottom: 1px solid rgba(var(--asc-blue-rgb), 0.18);
  box-shadow: inset 0 -1px 0 rgba(var(--asc-orange-rgb), 0.13);
}

.text-yellow-400,
.text-amber-400,
.hover\:text-yellow-300:hover,
.hover\:text-amber-400:hover {
  color: #f2a34a !important;
}

.text-blue-500,
.text-cyan-400,
.text-red-primary,
.text-glow,
.text-grunge-glow {
  color: var(--asc-blue) !important;
}

.text-purple-500 {
  color: #65d8e5 !important;
}

.gaming-card .text-red-500,
.gaming-panel .text-red-500,
.gaming-panel-secondary .text-red-500 {
  color: #f2a34a !important;
}

.gaming-card .text-green-500,
.gaming-panel .text-green-500,
.gaming-panel-secondary .text-green-500 {
  color: #65d8e5 !important;
}

.border-gray-600,
.border-gray-700,
.border-gray-800 {
  border-color: rgba(var(--asc-blue-rgb), 0.24) !important;
}

.gaming-card,
.gaming-panel,
.gaming-panel-secondary,
.discord-cta-panel,
.admin-data-shell,
.relative.bg-gray-800.rounded-2xl,
.bg-gray-800.rounded-2xl {
  background:
    linear-gradient(135deg, rgba(8, 13, 13, 0.94), rgba(17, 22, 20, 0.88)),
    var(--asc-glyph-texture, none) center / 520px 520px !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.42) !important;
  border-radius: 8px !important;
  box-shadow: var(--asc-panel-shadow) !important;
  color: #edf7f8;
  position: relative;
}

.gaming-card::before,
.gaming-panel::before,
.gaming-panel-secondary::before,
.discord-cta-panel::before,
.admin-data-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(var(--asc-blue-rgb), 0.35), transparent 22%, transparent 72%, rgba(var(--asc-orange-rgb), 0.3)),
    linear-gradient(90deg, transparent, rgba(216, 173, 98, 0.12), transparent);
  opacity: 0.75;
  mix-blend-mode: screen;
}

.gaming-card:hover,
.gaming-panel.hover-enabled:hover,
.gaming-panel.clickable:hover,
.gaming-panel-secondary.hover-enabled:hover,
.gaming-panel-secondary.clickable:hover,
a.gaming-panel:hover,
a.gaming-card:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.74) !important;
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.62),
    0 0 34px rgba(var(--asc-blue-rgb), 0.22),
    0 0 26px rgba(var(--asc-orange-rgb), 0.22),
    inset 0 0 34px rgba(0, 0, 0, 0.66) !important;
}

.gaming-card:is(a, button),
button.gaming-card,
a.gaming-card,
.gaming-btn-primary,
.discord-cta-btn,
.discord-btn-hero,
.mega-cta-button {
  background:
    linear-gradient(135deg, rgba(7, 35, 40, 0.96), rgba(17, 157, 180, 0.88) 52%, rgba(223, 100, 5, 0.9)),
    var(--asc-glyph-texture, none) center / 360px 360px !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.72) !important;
  border-radius: 8px !important;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.58),
    0 0 16px rgba(var(--asc-blue-rgb), 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.82) !important;
}

.gaming-card:is(a, button):hover,
button.gaming-card:hover,
a.gaming-card:hover,
.gaming-btn-primary:hover,
.discord-cta-btn:hover,
.discord-btn-hero:hover,
.mega-cta-button:hover {
  background:
    linear-gradient(135deg, rgba(7, 45, 52, 0.98), rgba(17, 157, 180, 0.94) 40%, rgba(223, 100, 5, 0.98)),
    var(--asc-glyph-texture, none) center / 360px 360px !important;
  border-color: rgba(var(--asc-orange-rgb), 0.82) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.64),
    0 0 24px rgba(var(--asc-blue-rgb), 0.34),
    0 0 18px rgba(var(--asc-orange-rgb), 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-2px);
}

.gaming-input,
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  background:
    linear-gradient(135deg, rgba(4, 10, 10, 0.92), rgba(12, 20, 19, 0.88)),
    var(--asc-glyph-texture, none) center / 460px 460px !important;
  border-color: rgba(var(--asc-blue-rgb), 0.4) !important;
  border-radius: 8px !important;
  color: #f4fbfb !important;
}

.gaming-input:focus,
input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: rgba(var(--asc-orange-rgb), 0.74) !important;
  box-shadow:
    0 0 0 1px rgba(var(--asc-orange-rgb), 0.32),
    0 0 20px rgba(var(--asc-blue-rgb), 0.18) !important;
}

.gaming-nav,
.gaming-nav-home {
  background:
    linear-gradient(180deg, rgba(3, 8, 8, 0.96), rgba(5, 9, 9, 0.88)),
    var(--asc-glyph-texture, none) center / 480px 480px !important;
  border-bottom: 1px solid rgba(var(--asc-blue-rgb), 0.32) !important;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(var(--asc-blue-rgb), 0.14) !important;
}

.nav-brand {
  color: #f3d79c !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(var(--asc-blue-rgb), 0.34);
}

.nav-brand-logo {
  filter:
    drop-shadow(0 0 12px rgba(var(--asc-blue-rgb), 0.35))
    drop-shadow(0 0 10px rgba(var(--asc-orange-rgb), 0.2));
}

.nav-link-enhanced {
  color: #d8e5e5 !important;
  border-radius: 8px !important;
}

.nav-link-enhanced::before {
  background: linear-gradient(90deg, transparent, rgba(var(--asc-blue-rgb), 0.18), rgba(var(--asc-orange-rgb), 0.12), transparent) !important;
}

.nav-link-enhanced::after {
  background: linear-gradient(45deg, transparent, rgba(var(--asc-blue-rgb), 0.8), rgba(var(--asc-orange-rgb), 0.7), transparent) border-box !important;
}

.nav-link-enhanced:hover,
.nav-active {
  color: #ffffff !important;
  text-shadow:
    0 0 10px rgba(var(--asc-blue-rgb), 0.72),
    0 0 18px rgba(var(--asc-orange-rgb), 0.28) !important;
}

.nav-active {
  background: rgba(var(--asc-blue-rgb), 0.14) !important;
  box-shadow:
    0 0 0 1px rgba(var(--asc-blue-rgb), 0.24),
    inset 0 0 18px rgba(var(--asc-blue-rgb), 0.12) !important;
}

.admin-nav-link {
  background:
    linear-gradient(135deg, rgba(6, 17, 18, 0.9), rgba(13, 21, 20, 0.82)),
    var(--asc-glyph-texture, none) center / 420px 420px !important;
  border-color: rgba(var(--asc-blue-rgb), 0.32) !important;
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

.admin-nav-link:hover,
.admin-nav-link.bg-gray-600 {
  border-color: rgba(var(--asc-orange-rgb), 0.66) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 22px rgba(var(--asc-blue-rgb), 0.18),
    inset 0 0 18px rgba(var(--asc-blue-rgb), 0.12) !important;
}

footer {
  background:
    linear-gradient(180deg, rgba(3, 6, 6, 0.86), rgba(3, 5, 5, 0.96)),
    var(--asc-glyph-texture, none) center / 520px 520px !important;
  border-color: rgba(var(--asc-blue-rgb), 0.24) !important;
}

.admin-users-table,
.admin-data-table,
.gaming-panel table,
.gaming-card table {
  border-collapse: separate;
  border-spacing: 0;
}

.admin-users-table thead,
.admin-data-table thead,
.gaming-panel table thead,
.gaming-card table thead {
  background: linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.16), rgba(var(--asc-orange-rgb), 0.08)) !important;
}

.admin-users-table th,
.admin-data-table th,
.gaming-panel table th,
.gaming-card table th {
  color: #cfe9eb !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(var(--asc-blue-rgb), 0.3) !important;
}

.admin-users-table th a,
.admin-data-table th a,
.gaming-panel table th a,
.gaming-card table th a {
  color: #cfe9eb !important;
}

.admin-users-table th a:hover,
.admin-data-table th a:hover,
.gaming-panel table th a:hover,
.gaming-card table th a:hover,
.gaming-panel a,
.gaming-card a {
  color: #f2a34a !important;
}

.admin-users-table tbody,
.admin-data-table tbody,
.gaming-panel table tbody,
.gaming-card table tbody {
  background: rgba(2, 8, 8, 0.26);
}

.admin-users-table tbody tr,
.admin-data-table tbody tr,
.gaming-panel table tbody tr,
.gaming-card table tbody tr {
  border-color: rgba(var(--asc-blue-rgb), 0.18) !important;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.admin-users-table tbody tr:hover,
.admin-data-table tbody tr:hover,
.gaming-panel table tbody tr:hover,
.gaming-card table tbody tr:hover {
  background: linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.13), rgba(var(--asc-orange-rgb), 0.06)) !important;
  box-shadow: inset 3px 0 0 rgba(var(--asc-orange-rgb), 0.68);
}

.admin-users-table td,
.admin-data-table td,
.gaming-panel table td,
.gaming-card table td {
  border-color: rgba(var(--asc-blue-rgb), 0.16) !important;
}

.profile-tab {
  border-radius: 8px 8px 0 0;
}

.profile-tab.active {
  color: var(--asc-blue) !important;
  border-bottom-color: var(--asc-orange) !important;
  background: linear-gradient(180deg, rgba(var(--asc-blue-rgb), 0.12), rgba(var(--asc-blue-rgb), 0.03));
  text-shadow: 0 0 14px rgba(var(--asc-blue-rgb), 0.52) !important;
}

.home-revamp {
  background: transparent;
}

.home-hero-section {
  padding: clamp(0.75rem, 2.5vw, 2rem) 0 1.5rem;
}

.hero-stage {
  position: relative;
  min-height: clamp(260px, 31vw, 360px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-video-reel {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.58;
  box-shadow:
    inset 0 0 140px rgba(0, 0, 0, 0.78),
    0 0 54px rgba(var(--asc-blue-rgb), 0.18);
  transition: opacity 0.35s ease, filter 0.35s ease;
  z-index: -2;
}

.hero-stage:has(.treasure-container:hover) .hero-video-reel,
.hero-stage:has(.gaming-btn-primary:hover) .hero-video-reel {
  opacity: 0.42;
  filter: saturate(0.9) brightness(0.82);
}

.hero-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-video-fade 12s linear infinite;
}

.hero-reel-video:nth-child(2) {
  animation-delay: 4s;
}

.hero-reel-video:nth-child(3) {
  animation-delay: 8s;
}

@keyframes hero-video-fade {
  0%, 100% { opacity: 0; }
  5%, 31% { opacity: 1; }
  36% { opacity: 0; }
}

.hero-video-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78) 72%),
    linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.18), transparent 30%, transparent 70%, rgba(var(--asc-orange-rgb), 0.16));
}

.asc-logo-wrap img {
  max-height: min(280px, 36vh) !important;
  filter:
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.82))
    drop-shadow(0 0 16px rgba(var(--asc-blue-rgb), 0.3));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.asc-logo-wrap:hover img {
  filter:
    drop-shadow(0 12px 20px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 28px rgba(var(--asc-blue-rgb), 0.48))
    drop-shadow(0 0 18px rgba(var(--asc-orange-rgb), 0.34));
  transform: translateY(-2px) scale(1.01);
}

.ascendency-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.home-rune-node {
  position: absolute;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border: 1px solid rgba(var(--asc-blue-rgb), 0.7);
  background: rgba(var(--asc-blue-rgb), 0.18);
  box-shadow: 0 0 16px rgba(var(--asc-blue-rgb), 0.55);
  animation: home-node-float 8s ease-in-out infinite alternate;
}

.home-rune-node:nth-child(2n) {
  border-color: rgba(var(--asc-orange-rgb), 0.72);
  background: rgba(var(--asc-orange-rgb), 0.16);
  box-shadow: 0 0 16px rgba(var(--asc-orange-rgb), 0.48);
  animation-duration: 11s;
}

.home-rune-node:nth-child(1) { top: 18%; left: 9%; }
.home-rune-node:nth-child(2) { top: 30%; right: 12%; }
.home-rune-node:nth-child(3) { top: 62%; left: 16%; }
.home-rune-node:nth-child(4) { top: 70%; right: 20%; }
.home-rune-node:nth-child(5) { top: 14%; left: 68%; }
.home-rune-node:nth-child(6) { top: 82%; left: 48%; }

@keyframes home-node-float {
  from { transform: translate3d(0, 0, 0) rotate(45deg) scale(0.84); opacity: 0.42; }
  to { transform: translate3d(0, -26px, 0) rotate(45deg) scale(1.12); opacity: 0.82; }
}

.video-square {
  border-color: rgba(var(--asc-blue-rgb), 0.66) !important;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(var(--asc-blue-rgb), 0.28) !important;
}

.video-grid-item:hover .video-square {
  border-color: rgba(var(--asc-orange-rgb), 0.78) !important;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.72),
    0 0 32px rgba(var(--asc-blue-rgb), 0.32),
    0 0 26px rgba(var(--asc-orange-rgb), 0.32) !important;
}

@media (max-width: 767px) {
  .hero-stage {
    min-height: 320px;
  }

  .hero-video-reel {
    inset: 0 -1rem;
    border-radius: 0;
  }

  .admin-users-table tbody tr {
    border-color: rgba(var(--asc-blue-rgb), 0.3) !important;
    background:
      linear-gradient(135deg, rgba(6, 12, 12, 0.92), rgba(13, 18, 17, 0.88)),
      var(--asc-glyph-texture, none) center / 420px 420px !important;
    border-radius: 8px;
  }
}

/* ASCENDENCY REVAMP: carved second pass */
:root {
  --asc-scroll: 0px;
  --asc-cut-card: polygon(0 13px, 13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px));
  --asc-cut-button: polygon(0 9px, 9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px));
  --asc-cut-input: polygon(0 7px, 7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px));
}

.ascendency-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.88;
  mix-blend-mode: screen;
  contain: layout paint;
}

.asc-web {
  position: absolute;
  inset: -18%;
  background:
    linear-gradient(60deg, transparent 49.35%, rgba(var(--asc-blue-rgb), 0.28) 49.65% 50.2%, transparent 50.5%),
    linear-gradient(120deg, transparent 49.35%, rgba(var(--asc-orange-rgb), 0.18) 49.65% 50.2%, transparent 50.5%),
    radial-gradient(circle at 50% 50%, rgba(var(--asc-blue-rgb), 0.22) 0 1px, transparent 2px);
  background-size: 148px 148px, 148px 148px, 148px 148px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 0 18%, rgba(0, 0, 0, 0.72) 38%, transparent 72%);
  opacity: 0.32;
  transform: translate3d(0, calc(var(--asc-scroll) * -0.025), 0);
  animation: asc-web-breathe 8s ease-in-out infinite alternate;
}

.asc-web-front {
  inset: -24%;
  background-size: 112px 112px, 112px 112px, 112px 112px;
  mask-image: radial-gradient(ellipse at 54% 48%, black 0 12%, rgba(0, 0, 0, 0.62) 32%, transparent 66%);
  opacity: 0.22;
  transform: translate3d(0, calc(var(--asc-scroll) * -0.055), 0) rotate(0.001deg);
  animation-duration: 11s;
}

@keyframes asc-web-breathe {
  from { filter: drop-shadow(0 0 10px rgba(var(--asc-blue-rgb), 0.18)); opacity: 0.2; }
  to { filter: drop-shadow(0 0 22px rgba(var(--asc-orange-rgb), 0.16)); opacity: 0.38; }
}

.asc-mote,
.home-rune-node {
  width: 11px;
  height: 11px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  border-radius: 0 !important;
}

.asc-mote {
  position: absolute;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.78);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), rgba(var(--asc-blue-rgb), 0.36) 38%, rgba(3, 8, 8, 0.08) 72%);
  box-shadow:
    0 0 14px rgba(var(--asc-blue-rgb), 0.62),
    0 0 26px rgba(var(--asc-blue-rgb), 0.24);
  opacity: 0.68;
  transform: translate3d(0, calc(var(--asc-scroll) * -0.04), 0) rotate(45deg);
  animation: asc-mote-drift 9s ease-in-out infinite alternate;
}

.asc-mote:nth-of-type(2n) {
  border-color: rgba(var(--asc-orange-rgb), 0.78);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 226, 178, 0.84), rgba(var(--asc-orange-rgb), 0.38) 40%, rgba(3, 8, 8, 0.08) 72%);
  box-shadow:
    0 0 14px rgba(var(--asc-orange-rgb), 0.58),
    0 0 28px rgba(var(--asc-orange-rgb), 0.22);
}

.asc-mote-1 { top: 9%; left: 6%; animation-delay: -1s; }
.asc-mote-2 { top: 17%; left: 24%; animation-delay: -5s; }
.asc-mote-3 { top: 11%; right: 18%; animation-delay: -2s; }
.asc-mote-4 { top: 28%; right: 7%; animation-delay: -7s; }
.asc-mote-5 { top: 39%; left: 10%; animation-delay: -4s; }
.asc-mote-6 { top: 51%; right: 13%; animation-delay: -8s; }
.asc-mote-7 { top: 61%; left: 22%; animation-delay: -6s; }
.asc-mote-8 { top: 70%; right: 28%; animation-delay: -3s; }
.asc-mote-9 { top: 82%; left: 12%; animation-delay: -9s; }
.asc-mote-10 { top: 85%; right: 9%; animation-delay: -1.5s; }
.asc-mote-11 { top: 24%; left: 55%; animation-delay: -7.5s; }
.asc-mote-12 { top: 76%; left: 47%; animation-delay: -2.5s; }
.asc-mote-13 { top: 44%; left: 78%; animation-delay: -4.5s; }
.asc-mote-14 { top: 6%; left: 78%; animation-delay: -6.5s; }
.asc-mote-15 { top: 34%; left: 35%; animation-delay: -8.5s; }
.asc-mote-16 { top: 57%; left: 63%; animation-delay: -3.5s; }
.asc-mote-17 { top: 91%; left: 69%; animation-delay: -5.5s; }
.asc-mote-18 { top: 68%; left: 4%; animation-delay: -0.5s; }

@keyframes asc-mote-drift {
  from {
    opacity: 0.26;
    transform: translate3d(-8px, calc(var(--asc-scroll) * -0.035), 0) rotate(45deg) scale(0.68);
  }
  to {
    opacity: 0.82;
    transform: translate3d(10px, calc(-30px + (var(--asc-scroll) * -0.07)), 0) rotate(45deg) scale(1.15);
  }
}

.asc-floating-glyph {
  position: absolute;
  color: rgba(203, 240, 244, 0.74);
  font-family: 'Aboreto', serif;
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 700;
  text-shadow:
    0 0 14px rgba(var(--asc-blue-rgb), 0.62),
    0 0 22px rgba(var(--asc-orange-rgb), 0.16);
  opacity: 0.28;
  transform: translate3d(0, calc(var(--asc-scroll) * -0.032), 0);
  animation: asc-glyph-float 12s ease-in-out infinite alternate;
}

.asc-floating-glyph::before {
  content: attr(data-glyph);
}

.asc-floating-glyph-1 { top: 16%; left: 14%; animation-delay: -2s; }
.asc-floating-glyph-2 { top: 31%; right: 19%; animation-delay: -6s; }
.asc-floating-glyph-3 { top: 48%; left: 5%; animation-delay: -9s; }
.asc-floating-glyph-4 { top: 63%; right: 6%; animation-delay: -4s; }
.asc-floating-glyph-5 { top: 79%; left: 33%; animation-delay: -7s; }
.asc-floating-glyph-6 { top: 8%; right: 36%; animation-delay: -1s; }
.asc-floating-glyph-7 { top: 88%; right: 31%; animation-delay: -10s; }
.asc-floating-glyph-8 { top: 40%; left: 69%; animation-delay: -5s; }

@keyframes asc-glyph-float {
  from {
    opacity: 0.12;
    transform: translate3d(0, calc(var(--asc-scroll) * -0.03), 0) rotate(-8deg) scale(0.85);
  }
  to {
    opacity: 0.44;
    transform: translate3d(0, calc(-42px + (var(--asc-scroll) * -0.06)), 0) rotate(8deg) scale(1.08);
  }
}

.gaming-card,
.gaming-panel,
.gaming-panel-secondary,
.discord-cta-panel,
.admin-data-shell,
.relative.bg-gray-800.rounded-2xl,
.bg-gray-800.rounded-2xl {
  border-radius: 0 !important;
  clip-path: var(--asc-cut-card);
  background:
    linear-gradient(135deg, rgba(7, 12, 12, 0.96), rgba(21, 25, 22, 0.9) 58%, rgba(22, 15, 10, 0.92)),
    radial-gradient(circle at 12% 14%, rgba(var(--asc-blue-rgb), 0.13), transparent 19rem),
    radial-gradient(circle at 94% 92%, rgba(var(--asc-orange-rgb), 0.13), transparent 16rem),
    var(--asc-glyph-texture, none) center / 430px 430px !important;
}

.gaming-card::after,
.gaming-panel::after,
.gaming-panel-secondary::after,
.discord-cta-panel::after,
.admin-data-shell::after {
  content: "";
  position: absolute;
  inset: 4px;
  pointer-events: none;
  clip-path: var(--asc-cut-card);
  border: 1px solid rgba(216, 173, 98, 0.18);
  background:
    linear-gradient(135deg, rgba(var(--asc-orange-rgb), 0.34), transparent 10% 87%, rgba(var(--asc-blue-rgb), 0.34)),
    linear-gradient(45deg, transparent 0 47%, rgba(var(--asc-blue-rgb), 0.07) 48% 49%, transparent 50% 100%);
  opacity: 0.72;
  mix-blend-mode: screen;
}

.gaming-card:is(a, button),
button.gaming-card,
a.gaming-card,
.gaming-btn-primary,
.discord-cta-btn,
.discord-btn-hero,
.mega-cta-button,
.checkout-float-btn,
.gaming-nav a[class*="rounded"],
.gaming-nav button[class*="rounded"],
.lightbox-close,
.profile-tab {
  border-radius: 0 !important;
  clip-path: var(--asc-cut-button);
}

.gaming-card:is(a, button),
button.gaming-card,
a.gaming-card,
.gaming-btn-primary,
.discord-cta-btn,
.discord-btn-hero,
.mega-cta-button,
.checkout-float-btn {
  background:
    linear-gradient(135deg, rgba(5, 26, 29, 0.98), rgba(17, 157, 180, 0.82) 46%, rgba(223, 100, 5, 0.92)),
    linear-gradient(45deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 39% 41%, transparent 42% 100%),
    var(--asc-glyph-texture, none) center / 320px 320px !important;
  border-width: 1px !important;
  border-color: rgba(var(--asc-blue-rgb), 0.86) !important;
  position: relative;
  isolation: isolate;
}

.gaming-card:is(a, button)::after,
button.gaming-card::after,
a.gaming-card::after,
.gaming-btn-primary::after,
.discord-cta-btn::after,
.discord-btn-hero::after,
.mega-cta-button::after,
.checkout-float-btn::after {
  content: "";
  position: absolute;
  inset: 4px;
  pointer-events: none;
  clip-path: var(--asc-cut-button);
  border: 1px solid rgba(255, 222, 164, 0.2);
  background:
    linear-gradient(90deg, transparent, rgba(var(--asc-blue-rgb), 0.18), transparent),
    radial-gradient(circle at 14% 50%, rgba(var(--asc-orange-rgb), 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 50%, rgba(var(--asc-blue-rgb), 0.34) 0 2px, transparent 3px);
  opacity: 0.86;
  mix-blend-mode: screen;
  z-index: -1;
}

.gaming-card:is(a, button):hover,
button.gaming-card:hover,
a.gaming-card:hover,
.gaming-btn-primary:hover,
.discord-cta-btn:hover,
.discord-btn-hero:hover,
.mega-cta-button:hover,
.checkout-float-btn:hover {
  background:
    linear-gradient(135deg, rgba(6, 40, 45, 0.98), rgba(17, 157, 180, 0.94) 38%, rgba(223, 100, 5, 1)),
    linear-gradient(45deg, transparent 0 34%, rgba(255, 244, 216, 0.16) 35% 38%, transparent 39% 100%),
    var(--asc-glyph-texture, none) center / 320px 320px !important;
}

.gaming-input,
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  border-radius: 0 !important;
  clip-path: var(--asc-cut-input);
}

.rounded-lg:not(.rounded-full),
.rounded-xl:not(.rounded-full),
.rounded-2xl:not(.rounded-full),
.rounded:not(.rounded-full) {
  border-radius: 0 !important;
}

.gaming-nav .rounded-lg:not(.rounded-full),
.gaming-nav .rounded:not(.rounded-full),
.home-revamp .rounded-lg:not(.rounded-full),
.home-revamp .rounded:not(.rounded-full),
.admin-data-shell .rounded-lg:not(.rounded-full),
.gaming-card .rounded-lg:not(.rounded-full),
.gaming-panel .rounded-lg:not(.rounded-full),
.gaming-panel-secondary .rounded-lg:not(.rounded-full) {
  clip-path: var(--asc-cut-button);
}

.hero-video-reel[hidden],
.hero-video-reel--disabled {
  display: none !important;
}

.hero-stage {
  min-height: clamp(300px, 35vw, 420px);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-stage::before {
  width: min(620px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 45deg, transparent 0 11%, rgba(var(--asc-blue-rgb), 0.38) 12% 14%, transparent 15% 23%, rgba(var(--asc-orange-rgb), 0.34) 24% 26%, transparent 27% 100%),
    radial-gradient(circle, transparent 0 50%, rgba(var(--asc-blue-rgb), 0.22) 51% 52%, transparent 53% 61%, rgba(var(--asc-orange-rgb), 0.18) 62% 63%, transparent 64% 100%);
  filter: drop-shadow(0 0 28px rgba(var(--asc-blue-rgb), 0.24));
  opacity: 0.72;
  animation: asc-hero-ring 26s linear infinite;
}

.hero-stage::after {
  inset: 5% 2%;
  background:
    linear-gradient(60deg, transparent 49%, rgba(var(--asc-blue-rgb), 0.22) 49.5% 50%, transparent 50.5%),
    linear-gradient(120deg, transparent 49%, rgba(var(--asc-orange-rgb), 0.16) 49.5% 50%, transparent 50.5%);
  background-size: 92px 92px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0 34%, transparent 72%);
  opacity: 0.5;
  transform: translate3d(0, calc(var(--asc-scroll) * -0.035), 0);
}

@keyframes asc-hero-ring {
  from { transform: rotate(0deg) scale(0.98); }
  to { transform: rotate(360deg) scale(0.98); }
}

.home-rune-node {
  width: 13px;
  height: 13px;
  opacity: 0.82;
  box-shadow:
    0 0 18px rgba(var(--asc-blue-rgb), 0.68),
    0 0 34px rgba(var(--asc-blue-rgb), 0.24);
}

.home-rune-node:nth-child(7) { top: 44%; left: 7%; animation-duration: 10s; animation-delay: -3s; }
.home-rune-node:nth-child(8) { top: 43%; right: 7%; animation-duration: 12s; animation-delay: -6s; }
.home-rune-node:nth-child(9) { top: 54%; left: 35%; animation-duration: 9s; animation-delay: -2s; }
.home-rune-node:nth-child(10) { top: 56%; right: 34%; animation-duration: 13s; animation-delay: -8s; }
.home-rune-node:nth-child(11) { top: 25%; left: 42%; animation-duration: 11s; animation-delay: -5s; }
.home-rune-node:nth-child(12) { top: 78%; right: 46%; animation-duration: 14s; animation-delay: -9s; }

.launch-banner {
  position: relative;
}

.launch-banner::before,
.launch-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(26vw, 340px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--asc-blue-rgb), 0.7), rgba(var(--asc-orange-rgb), 0.5), transparent);
  box-shadow: 0 0 16px rgba(var(--asc-blue-rgb), 0.42);
}

.launch-banner::before {
  left: 2rem;
}

.launch-banner::after {
  right: 2rem;
  transform: scaleX(-1);
}

@media (max-width: 767px) {
  .ascendency-atmosphere {
    opacity: 0.72;
  }

  .asc-floating-glyph {
    font-size: 0.95rem;
  }

  .launch-banner::before,
  .launch-banner::after {
    display: none;
  }

  .admin-users-table tbody tr {
    border-radius: 0 !important;
    clip-path: var(--asc-cut-card);
  }
}

@media (prefers-reduced-motion: reduce) {
  .asc-web,
  .asc-mote,
  .asc-floating-glyph,
  .hero-stage::before,
  .home-rune-node {
    animation: none !important;
  }
}

/* Viewport-bound rune particle physics */
.ascendency-atmosphere {
  overflow: visible;
}

.asc-mote {
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  width: clamp(10px, 1.1vw, 16px);
  height: clamp(10px, 1.1vw, 16px);
  overflow: visible;
  clip-path: none;
  transform-origin: center;
  animation: none !important;
  will-change: transform, opacity;
}

.asc-mote::before,
.asc-mote::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid currentColor;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), currentColor 22%, rgba(3, 8, 8, 0.12) 64%);
  box-shadow:
    0 0 12px currentColor,
    0 0 28px rgba(var(--asc-blue-rgb), 0.24);
}

.asc-mote::after {
  inset: 4px;
  background: rgba(255, 255, 255, 0.64);
  border: 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.52);
}

.asc-mote:nth-of-type(2n)::before {
  box-shadow:
    0 0 12px currentColor,
    0 0 28px rgba(var(--asc-orange-rgb), 0.28);
}

@media (max-width: 767px) {
  .asc-mote {
    width: 9px;
    height: 9px;
  }

  .asc-mote::after {
    inset: 3px;
  }
}

/* Layered carved buttons inspired by in-game stone UI depth */
.gaming-card:is(a, button),
button.gaming-card,
a.gaming-card,
.gaming-btn-primary,
.discord-cta-btn,
.discord-btn-hero,
.mega-cta-button,
.checkout-float-btn,
.gaming-nav a[href$="/cart"],
.gaming-nav button:not(#mobileMenuButton),
.profile-tab {
  touch-action: manipulation;
  background: transparent !important;
  border-color: transparent !important;
  border-style: solid !important;
  border-width: 3px 10px !important;
  box-shadow: none !important;
  clip-path: none;
  overflow: visible !important;
  position: relative;
  isolation: isolate;
}

.gaming-card:is(a, button)::before,
button.gaming-card::before,
a.gaming-card::before,
.gaming-btn-primary::before,
.discord-cta-btn::before,
.discord-btn-hero::before,
.mega-cta-button::before,
.checkout-float-btn::before,
.gaming-nav a[href$="/cart"]::before,
.gaming-nav button:not(#mobileMenuButton)::before,
.profile-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: var(--asc-cut-button);
  background-color: #0b2427;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 190, 0.18), transparent 34%),
    radial-gradient(circle at 15% 85%, rgba(var(--asc-blue-rgb), 0.22), transparent 32%),
    linear-gradient(to bottom, rgba(57, 190, 205, 0.78), rgba(12, 68, 75, 0.92) 14%, rgba(8, 21, 22, 0.96) 50%, rgba(79, 40, 13, 0.98) 51%, rgba(223, 100, 5, 0.78) 88%, rgba(89, 37, 8, 0.98)),
    var(--asc-glyph-texture, none);
  background-size: auto, auto, auto, 260px 260px;
  box-shadow:
    inset 0 2px 0 rgba(255, 242, 212, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.62),
    inset 8px 0 18px rgba(0, 0, 0, 0.25),
    inset -8px 0 18px rgba(0, 0, 0, 0.32);
  transition: filter 0.2s ease, transform 0.24s ease;
}

.gaming-card:is(a, button)::after,
button.gaming-card::after,
a.gaming-card::after,
.gaming-btn-primary::after,
.discord-cta-btn::after,
.discord-btn-hero::after,
.mega-cta-button::after,
.checkout-float-btn::after,
.gaming-nav a[href$="/cart"]::after,
.gaming-nav button:not(#mobileMenuButton)::after,
.profile-tab::after {
  content: "";
  position: absolute;
  inset: -3px -10px;
  z-index: -2;
  clip-path: polygon(0 13px, 13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px));
  border: 1px solid rgba(255, 232, 184, 0.32);
  background-image:
    linear-gradient(to bottom, #d6b77d 0 14%, #6f5840 14% 50%, #26160d 50% 52%, #a85419 52% 87%, #2e1a10 87% 100%),
    linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.22), transparent 24% 76%, rgba(var(--asc-orange-rgb), 0.22)),
    var(--asc-glyph-texture, none);
  background-size: auto, auto, 210px 210px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.62),
    0 0 22px rgba(var(--asc-blue-rgb), 0.24),
    0 0 14px rgba(var(--asc-orange-rgb), 0.18),
    inset 0 1px 0 rgba(255, 241, 212, 0.38),
    inset 0 -2px 0 rgba(0, 0, 0, 0.72);
  transition: filter 0.2s ease, box-shadow 0.24s ease;
}

.gaming-card:is(a, button):hover::before,
button.gaming-card:hover::before,
a.gaming-card:hover::before,
.gaming-btn-primary:hover::before,
.discord-cta-btn:hover::before,
.discord-btn-hero:hover::before,
.mega-cta-button:hover::before,
.checkout-float-btn:hover::before,
.gaming-nav a[href$="/cart"]:hover::before,
.gaming-nav button:not(#mobileMenuButton):hover::before,
.profile-tab:hover::before {
  filter: brightness(1.18) saturate(1.1);
}

.gaming-card:is(a, button):hover::after,
button.gaming-card:hover::after,
a.gaming-card:hover::after,
.gaming-btn-primary:hover::after,
.discord-cta-btn:hover::after,
.discord-btn-hero:hover::after,
.mega-cta-button:hover::after,
.checkout-float-btn:hover::after,
.gaming-nav a[href$="/cart"]:hover::after,
.gaming-nav button:not(#mobileMenuButton):hover::after,
.profile-tab:hover::after {
  box-shadow:
    0 13px 30px rgba(0, 0, 0, 0.68),
    0 0 30px rgba(var(--asc-blue-rgb), 0.34),
    0 0 22px rgba(var(--asc-orange-rgb), 0.28),
    inset 0 1px 0 rgba(255, 241, 212, 0.42),
    inset 0 -2px 0 rgba(0, 0, 0, 0.72);
}

.gaming-card:is(a, button):active,
button.gaming-card:active,
a.gaming-card:active,
.gaming-btn-primary:active,
.discord-cta-btn:active,
.discord-btn-hero:active,
.mega-cta-button:active,
.checkout-float-btn:active,
.gaming-nav a[href$="/cart"]:active,
.gaming-nav button:not(#mobileMenuButton):active,
.profile-tab:active {
  transform: translateY(1px) scale(0.97) !important;
}

.gaming-nav .gaming-btn-primary,
.gaming-nav a[href$="/cart"],
.gaming-nav button:not(#mobileMenuButton) {
  border-width: 2px 8px !important;
  min-width: max-content;
  white-space: nowrap;
}

.gaming-nav .gaming-btn-primary::after,
.gaming-nav a[href$="/cart"]::after,
.gaming-nav button:not(#mobileMenuButton)::after {
  inset: -2px -8px;
}

/* ASCENDENCY CALMDOWN: clean UI, subtle texture */
body::after {
  animation: none !important;
  opacity: 0.14;
}

.ascendency-atmosphere {
  opacity: 0.36;
  overflow: hidden;
  mix-blend-mode: screen;
}

.asc-web {
  animation: none !important;
  opacity: 0.12;
  transform: none !important;
  background-size: 180px 180px, 180px 180px, 180px 180px;
  mask-image: radial-gradient(ellipse at 50% 34%, rgba(0, 0, 0, 0.8) 0 18%, transparent 70%);
}

.asc-web-front {
  display: none;
}

.asc-mote {
  position: absolute;
  width: 7px;
  height: 7px;
  will-change: auto;
  color: rgba(var(--asc-blue-rgb), 0.72);
  opacity: 0.22;
  transform: rotate(45deg) !important;
}

.asc-mote::before {
  box-shadow: 0 0 10px currentColor;
  background: rgba(var(--asc-blue-rgb), 0.18);
}

.asc-mote::after {
  display: none;
}

.asc-mote:nth-of-type(2n) {
  color: rgba(var(--asc-orange-rgb), 0.6);
}

.asc-floating-glyph {
  animation: none !important;
  opacity: 0.1;
  transform: none !important;
}

.hero-stage::before,
.hero-stage::after {
  display: none !important;
}

.home-rune-node {
  width: 8px;
  height: 8px;
  opacity: 0.34;
  animation: none !important;
  box-shadow: 0 0 12px rgba(var(--asc-blue-rgb), 0.34);
}

.home-rune-node:nth-child(2n) {
  box-shadow: 0 0 12px rgba(var(--asc-orange-rgb), 0.3);
}

.gaming-card:is(a, button),
button.gaming-card,
a.gaming-card,
.gaming-btn-primary,
.discord-cta-btn,
.discord-btn-hero,
.mega-cta-button,
.checkout-float-btn,
.gaming-nav a[href$="/cart"],
.gaming-nav button:not(#mobileMenuButton),
.profile-tab {
  background:
    linear-gradient(180deg, rgba(18, 53, 57, 0.96), rgba(8, 23, 25, 0.98) 58%, rgba(28, 18, 12, 0.98)),
    radial-gradient(circle at 18% 15%, rgba(var(--asc-blue-rgb), 0.18), transparent 42%),
    linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.1), transparent 36%, rgba(var(--asc-orange-rgb), 0.11)),
    var(--asc-glyph-texture, none) center / 310px 310px !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.58) !important;
  border-radius: 6px !important;
  border-width: 1px !important;
  clip-path: none !important;
  overflow: hidden !important;
  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.44),
    0 0 14px rgba(var(--asc-blue-rgb), 0.16),
    inset 0 1px 0 rgba(255, 238, 198, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.52) !important;
  transform: none !important;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    transform 0.18s ease !important;
}

.gaming-card:is(a, button)::before,
button.gaming-card::before,
a.gaming-card::before,
.gaming-btn-primary::before,
.discord-cta-btn::before,
.discord-btn-hero::before,
.mega-cta-button::before,
.checkout-float-btn::before,
.gaming-nav a[href$="/cart"]::before,
.gaming-nav button:not(#mobileMenuButton)::before,
.profile-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: none !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 74%, rgba(var(--asc-orange-rgb), 0.12)),
    var(--asc-glyph-texture, none) center / 260px 260px;
  opacity: 0.42;
  box-shadow: none !important;
  filter: none !important;
}

.gaming-card:is(a, button)::after,
button.gaming-card::after,
a.gaming-card::after,
.gaming-btn-primary::after,
.discord-cta-btn::after,
.discord-btn-hero::after,
.mega-cta-button::after,
.checkout-float-btn::after,
.gaming-nav a[href$="/cart"]::after,
.gaming-nav button:not(#mobileMenuButton)::after,
.profile-tab::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  clip-path: none !important;
  border: 1px solid rgba(255, 232, 184, 0.08);
  border-radius: 4px;
  background: none !important;
  box-shadow: none !important;
  opacity: 1;
}

.gaming-card:is(a, button):hover,
button.gaming-card:hover,
a.gaming-card:hover,
.gaming-btn-primary:hover,
.discord-cta-btn:hover,
.discord-btn-hero:hover,
.mega-cta-button:hover,
.checkout-float-btn:hover,
.gaming-nav a[href$="/cart"]:hover,
.gaming-nav button:not(#mobileMenuButton):hover,
.profile-tab:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.7) !important;
  filter: brightness(1.08);
  box-shadow:
    0 9px 22px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(var(--asc-blue-rgb), 0.2),
    0 0 12px rgba(var(--asc-orange-rgb), 0.14),
    inset 0 1px 0 rgba(255, 238, 198, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-1px) !important;
}

.gaming-card:is(a, button):hover::before,
button.gaming-card:hover::before,
a.gaming-card:hover::before,
.gaming-btn-primary:hover::before,
.discord-cta-btn:hover::before,
.discord-btn-hero:hover::before,
.mega-cta-button:hover::before,
.checkout-float-btn:hover::before,
.gaming-nav a[href$="/cart"]:hover::before,
.gaming-nav button:not(#mobileMenuButton):hover::before,
.profile-tab:hover::before {
  filter: none !important;
}

.gaming-card:is(a, button):active,
button.gaming-card:active,
a.gaming-card:active,
.gaming-btn-primary:active,
.discord-cta-btn:active,
.discord-btn-hero:active,
.mega-cta-button:active,
.checkout-float-btn:active,
.gaming-nav a[href$="/cart"]:active,
.gaming-nav button:not(#mobileMenuButton):active,
.profile-tab:active {
  transform: translateY(0) scale(0.99) !important;
}

.gaming-nav .gaming-btn-primary,
.gaming-nav a[href$="/cart"],
.gaming-nav button:not(#mobileMenuButton) {
  border-width: 1px !important;
}

/* Final theme sweep: calmer hero video and commerce consistency */
.home-hero-section {
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(var(--asc-blue-rgb), 0.18);
}

.home-hero-section .hero-video-reel:not([hidden]) {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0 !important;
  overflow: hidden;
  opacity: 1;
  box-shadow: none !important;
  filter: none !important;
}

.home-hero-section .hero-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8 !important;
  animation: none !important;
  filter: saturate(1.05) contrast(0.98) brightness(0.92);
}

.hero-video-soften {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5) 72%),
    linear-gradient(90deg, rgba(3, 6, 6, 0.44), rgba(3, 6, 6, 0.08) 45%, rgba(3, 6, 6, 0.42)),
    linear-gradient(180deg, rgba(3, 6, 6, 0.06), rgba(3, 6, 6, 0.62));
}

.hero-stage {
  min-height: clamp(250px, 32vw, 370px);
}

.asc-logo-wrap img {
  max-height: min(320px, 42vh) !important;
}

body:not(.controller-treeeyesonly) [class*="text-red-"],
body:not(.controller-treeeyesonly) [class*="hover:text-red-"],
body:not(.controller-treeeyesonly) .text-red-primary,
body:not(.controller-treeeyesonly) .text-red-accent,
body:not(.controller-treeeyesonly) .text-red-hover {
  color: #f2a34a !important;
}

body:not(.controller-treeeyesonly) [class*="text-purple-"],
body:not(.controller-treeeyesonly) [class*="text-violet-"],
body:not(.controller-treeeyesonly) [class*="text-pink-"],
body:not(.controller-treeeyesonly) [class*="hover:text-purple-"],
body:not(.controller-treeeyesonly) [class*="hover:text-violet-"],
body:not(.controller-treeeyesonly) [class*="hover:text-pink-"] {
  color: #74ddea !important;
}

body:not(.controller-treeeyesonly) [class*="text-green-"],
body:not(.controller-treeeyesonly) [class*="text-emerald-"],
body:not(.controller-treeeyesonly) [class*="hover:text-green-"],
body:not(.controller-treeeyesonly) [class*="hover:text-emerald-"] {
  color: #67dbe8 !important;
}

body:not(.controller-treeeyesonly) [class*="bg-red-"],
body:not(.controller-treeeyesonly) [class*="from-red-"],
body:not(.controller-treeeyesonly) [class*="to-red-"] {
  background-color: rgba(var(--asc-orange-rgb), 0.18) !important;
  background-image:
    linear-gradient(135deg, rgba(73, 33, 8, 0.62), rgba(14, 25, 24, 0.74)),
    var(--asc-glyph-texture, none) !important;
  background-size: auto, 360px 360px !important;
}

body:not(.controller-treeeyesonly) [class*="bg-purple-"],
body:not(.controller-treeeyesonly) [class*="bg-violet-"],
body:not(.controller-treeeyesonly) [class*="bg-pink-"],
body:not(.controller-treeeyesonly) [class*="from-purple-"],
body:not(.controller-treeeyesonly) [class*="to-purple-"],
body:not(.controller-treeeyesonly) [class*="from-violet-"],
body:not(.controller-treeeyesonly) [class*="to-violet-"] {
  background-color: rgba(var(--asc-blue-rgb), 0.16) !important;
  background-image:
    linear-gradient(135deg, rgba(9, 52, 59, 0.64), rgba(16, 22, 21, 0.74)),
    var(--asc-glyph-texture, none) !important;
  background-size: auto, 360px 360px !important;
}

body:not(.controller-treeeyesonly) [class*="bg-green-"],
body:not(.controller-treeeyesonly) [class*="bg-emerald-"],
body:not(.controller-treeeyesonly) [class*="from-green-"],
body:not(.controller-treeeyesonly) [class*="to-green-"],
body:not(.controller-treeeyesonly) [class*="from-emerald-"],
body:not(.controller-treeeyesonly) [class*="to-emerald-"] {
  background-color: rgba(var(--asc-blue-rgb), 0.14) !important;
  background-image:
    linear-gradient(135deg, rgba(8, 56, 63, 0.55), rgba(9, 18, 18, 0.74)),
    var(--asc-glyph-texture, none) !important;
  background-size: auto, 360px 360px !important;
}

body:not(.controller-treeeyesonly) [class*="border-red-"],
body:not(.controller-treeeyesonly) [class*="border-purple-"],
body:not(.controller-treeeyesonly) [class*="border-violet-"],
body:not(.controller-treeeyesonly) [class*="border-pink-"],
body:not(.controller-treeeyesonly) [class*="border-green-"],
body:not(.controller-treeeyesonly) [class*="border-emerald-"] {
  border-color: rgba(var(--asc-blue-rgb), 0.36) !important;
}

body.controller-store section,
body.controller-cart section,
body.controller-orders section {
  background-color: transparent !important;
  background-image:
    radial-gradient(circle at 16% 4%, rgba(var(--asc-blue-rgb), 0.12), transparent 26rem),
    radial-gradient(circle at 84% 12%, rgba(var(--asc-orange-rgb), 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(3, 7, 7, 0.92), rgba(4, 8, 8, 0.78)) !important;
}

body.controller-store [class*="bg-slate-"],
body.controller-store [class*="bg-gray-"],
body.controller-cart [class*="bg-slate-"],
body.controller-cart [class*="bg-gray-"],
body.controller-orders [class*="bg-slate-"],
body.controller-orders [class*="bg-gray-"] {
  background-color: rgba(8, 14, 14, 0.84) !important;
  background-image:
    linear-gradient(135deg, rgba(7, 13, 13, 0.94), rgba(17, 22, 20, 0.84)),
    var(--asc-glyph-texture, none) !important;
  background-size: auto, 430px 430px !important;
}

body.controller-store [class*="border-slate-"],
body.controller-cart [class*="border-slate-"],
body.controller-orders [class*="border-slate-"] {
  border-color: rgba(var(--asc-blue-rgb), 0.3) !important;
}

body.controller-store [class*="rounded"][class*="border"],
body.controller-cart [class*="rounded"][class*="border"],
body.controller-orders [class*="rounded"][class*="border"],
body.controller-store .store-product-image,
body.controller-cart [data-cart-item-row] {
  background:
    linear-gradient(135deg, rgba(8, 14, 14, 0.92), rgba(18, 23, 21, 0.84)),
    var(--asc-glyph-texture, none) center / 420px 420px !important;
  border-color: rgba(var(--asc-blue-rgb), 0.34) !important;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.46),
    inset 0 0 24px rgba(0, 0, 0, 0.44) !important;
}

.bg-gradient-red-button,
.gaming-button-primary,
.gaming-button-secondary,
body.controller-store button,
body.controller-store a[class*="font-bold"][class*="rounded"],
body.controller-cart button,
body.controller-cart a[class*="font-bold"][class*="rounded"],
body.controller-orders button,
body.controller-orders input[type="submit"],
body.controller-orders a[class*="font-bold"][class*="rounded"] {
  background:
    linear-gradient(180deg, rgba(19, 67, 73, 0.96), rgba(8, 24, 26, 0.98) 58%, rgba(35, 22, 12, 0.98)),
    var(--asc-glyph-texture, none) center / 300px 300px !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.56) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 238, 198, 0.12) !important;
  transform: none !important;
}

.bg-gradient-red-button:hover,
.gaming-button-primary:hover,
.gaming-button-secondary:hover,
body.controller-store button:hover,
body.controller-store a[class*="font-bold"][class*="rounded"]:hover,
body.controller-cart button:hover,
body.controller-cart a[class*="font-bold"][class*="rounded"]:hover,
body.controller-orders button:hover,
body.controller-orders input[type="submit"]:hover,
body.controller-orders a[class*="font-bold"][class*="rounded"]:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.68) !important;
  filter: brightness(1.08);
}

body.controller-cart [data-stripe-checkout-target="button"] {
  background:
    linear-gradient(180deg, rgba(25, 68, 76, 0.98), rgba(9, 30, 35, 0.98)),
    var(--asc-glyph-texture, none) center / 300px 300px !important;
}

body.controller-store .ribbon span {
  background-color: var(--asc-orange) !important;
}

@media (max-width: 767px) {
  .home-hero-section {
    min-height: calc(100vh - 4rem);
    padding-top: 1rem;
  }

  .home-hero-section .hero-reel-video {
    opacity: 0.68 !important;
  }
}

/* Final button + landing hero pass: square, consistent, brighter */
.home-hero-section {
  min-height: calc(100vh - 4rem) !important;
  padding: 0 0 clamp(1.5rem, 4vw, 3rem) !important;
  align-items: center;
}

.home-hero-section .hero-reel-video {
  opacity: 0.9 !important;
  filter: saturate(1.12) contrast(1.02) brightness(1.18) !important;
}

.hero-video-soften {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26) 74%),
    linear-gradient(90deg, rgba(3, 6, 6, 0.2), rgba(3, 6, 6, 0.02) 45%, rgba(3, 6, 6, 0.18)),
    linear-gradient(180deg, rgba(3, 6, 6, 0.02), rgba(3, 6, 6, 0.34)) !important;
}

.hero-stage {
  min-height: clamp(270px, 34vw, 390px);
  padding-top: clamp(2rem, 6vw, 4.5rem);
}

:where(
  a.gaming-btn-primary,
  button.gaming-btn-primary,
  .discord-cta-btn,
  .discord-btn-hero,
  .mega-cta-button,
  .checkout-float-btn,
  .gaming-button-primary,
  .gaming-button-secondary,
  .bg-gradient-red-button,
  button.gaming-card,
  a.gaming-card,
  .gaming-card:is(a, button),
  body.controller-store button,
  body.controller-store a[class*="font-bold"][class*="rounded"],
  body.controller-cart button,
  body.controller-cart a[class*="font-bold"][class*="rounded"],
  body.controller-orders button,
  body.controller-orders input[type="submit"],
  body.controller-orders a[class*="font-bold"][class*="rounded"],
  .gaming-nav a[href$="/cart"],
  .gaming-nav .gaming-btn-primary,
  .gaming-nav button:not(#mobileMenuButton)
) {
  background:
    linear-gradient(180deg, rgba(24, 88, 96, 0.94), rgba(7, 30, 34, 0.98) 55%, rgba(25, 17, 12, 0.98)),
    radial-gradient(circle at 15% 18%, rgba(var(--asc-blue-rgb), 0.24), transparent 42%),
    linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.16), transparent 42%, rgba(var(--asc-orange-rgb), 0.18)),
    var(--asc-glyph-texture, none) center / 300px 300px !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.72) !important;
  border-radius: 0 !important;
  clip-path: none !important;
  color: #ffffff !important;
  position: relative;
  isolation: isolate;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.46),
    0 0 16px rgba(var(--asc-blue-rgb), 0.18),
    inset 0 1px 0 rgba(255, 238, 198, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5) !important;
  transform: none !important;
  overflow: hidden !important;
}

:where(
  a.gaming-btn-primary,
  button.gaming-btn-primary,
  .discord-cta-btn,
  .discord-btn-hero,
  .mega-cta-button,
  .checkout-float-btn,
  .gaming-button-primary,
  .gaming-button-secondary,
  .bg-gradient-red-button,
  button.gaming-card,
  a.gaming-card,
  .gaming-card:is(a, button),
  body.controller-store button,
  body.controller-store a[class*="font-bold"][class*="rounded"],
  body.controller-cart button,
  body.controller-cart a[class*="font-bold"][class*="rounded"],
  body.controller-orders button,
  body.controller-orders input[type="submit"],
  body.controller-orders a[class*="font-bold"][class*="rounded"],
  .gaming-nav a[href$="/cart"],
  .gaming-nav .gaming-btn-primary,
  .gaming-nav button:not(#mobileMenuButton)
)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(var(--asc-orange-rgb), 0.12)),
    var(--asc-glyph-texture, none) center / 240px 240px !important;
  border-radius: 0 !important;
  clip-path: none !important;
  opacity: 0.48;
  box-shadow: none !important;
  filter: none !important;
}

:where(
  a.gaming-btn-primary,
  button.gaming-btn-primary,
  .discord-cta-btn,
  .discord-btn-hero,
  .mega-cta-button,
  .checkout-float-btn,
  .gaming-button-primary,
  .gaming-button-secondary,
  .bg-gradient-red-button,
  button.gaming-card,
  a.gaming-card,
  .gaming-card:is(a, button),
  body.controller-store button,
  body.controller-store a[class*="font-bold"][class*="rounded"],
  body.controller-cart button,
  body.controller-cart a[class*="font-bold"][class*="rounded"],
  body.controller-orders button,
  body.controller-orders input[type="submit"],
  body.controller-orders a[class*="font-bold"][class*="rounded"],
  .gaming-nav a[href$="/cart"],
  .gaming-nav .gaming-btn-primary,
  .gaming-nav button:not(#mobileMenuButton)
)::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border: 1px solid rgba(255, 232, 184, 0.08);
  border-radius: 0 !important;
  clip-path: none !important;
  background: none !important;
  box-shadow: none !important;
}

:where(
  a.gaming-btn-primary,
  button.gaming-btn-primary,
  .discord-cta-btn,
  .discord-btn-hero,
  .mega-cta-button,
  .checkout-float-btn,
  .gaming-button-primary,
  .gaming-button-secondary,
  .bg-gradient-red-button,
  button.gaming-card,
  a.gaming-card,
  .gaming-card:is(a, button),
  body.controller-store button,
  body.controller-store a[class*="font-bold"][class*="rounded"],
  body.controller-cart button,
  body.controller-cart a[class*="font-bold"][class*="rounded"],
  body.controller-orders button,
  body.controller-orders input[type="submit"],
  body.controller-orders a[class*="font-bold"][class*="rounded"],
  .gaming-nav a[href$="/cart"],
  .gaming-nav .gaming-btn-primary,
  .gaming-nav button:not(#mobileMenuButton)
):hover {
  border-color: rgba(var(--asc-orange-rgb), 0.74) !important;
  filter: brightness(1.08);
  transform: translateY(-1px) !important;
}

:where(a[class*="rounded"], button[class*="rounded"], input[type="submit"]):not(.rounded-full):not(#mobileMenuButton) {
  border-radius: 0 !important;
  clip-path: none !important;
}

@media (max-width: 767px) {
  .home-hero-section .hero-reel-video {
    opacity: 0.84 !important;
  }
}

/* Square button system: one shape and one fill across the site */
body a.gaming-btn-primary,
body button.gaming-btn-primary,
body .discord-cta-btn,
body .discord-btn-hero,
body .mega-cta-button,
body .checkout-float-btn,
body .gaming-button-primary,
body .gaming-button-secondary,
body .bg-gradient-red-button,
body button.gaming-card,
body a.gaming-card,
body .gaming-card:is(a, button),
body.controller-store button,
body.controller-store a[class*="font-bold"][class*="rounded"],
body.controller-cart button,
body.controller-cart a[class*="font-bold"][class*="rounded"],
body.controller-orders button,
body.controller-orders input[type="submit"],
body.controller-orders a[class*="font-bold"][class*="rounded"],
body .gaming-nav a[href$="/cart"],
body .gaming-nav .gaming-btn-primary,
body .gaming-nav button:not(#mobileMenuButton) {
  background:
    linear-gradient(135deg, rgba(5, 28, 32, 0.98), rgba(17, 157, 180, 0.9) 52%, rgba(223, 100, 5, 0.9)),
    var(--asc-glyph-texture, none) center / 320px 320px !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.72) !important;
  border-radius: 0 !important;
  clip-path: none !important;
  color: #ffffff !important;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.48),
    0 0 18px rgba(var(--asc-blue-rgb), 0.18),
    inset 0 1px 0 rgba(255, 238, 198, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.52) !important;
  transform: none !important;
  overflow: hidden !important;
  position: relative;
  isolation: isolate;
}

body a.gaming-btn-primary::before,
body button.gaming-btn-primary::before,
body .discord-cta-btn::before,
body .discord-btn-hero::before,
body .mega-cta-button::before,
body .checkout-float-btn::before,
body .gaming-button-primary::before,
body .gaming-button-secondary::before,
body .bg-gradient-red-button::before,
body button.gaming-card::before,
body a.gaming-card::before,
body .gaming-card:is(a, button)::before,
body.controller-store button::before,
body.controller-store a[class*="font-bold"][class*="rounded"]::before,
body.controller-cart button::before,
body.controller-cart a[class*="font-bold"][class*="rounded"]::before,
body.controller-orders button::before,
body.controller-orders a[class*="font-bold"][class*="rounded"]::before,
body .gaming-nav a[href$="/cart"]::before,
body .gaming-nav .gaming-btn-primary::before,
body .gaming-nav button:not(#mobileMenuButton)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%, rgba(var(--asc-orange-rgb), 0.12)),
    var(--asc-glyph-texture, none) center / 240px 240px !important;
  border-radius: 0 !important;
  clip-path: none !important;
  opacity: 0.46;
  box-shadow: none !important;
  filter: none !important;
}

body a.gaming-btn-primary::after,
body button.gaming-btn-primary::after,
body .discord-cta-btn::after,
body .discord-btn-hero::after,
body .mega-cta-button::after,
body .checkout-float-btn::after,
body .gaming-button-primary::after,
body .gaming-button-secondary::after,
body .bg-gradient-red-button::after,
body button.gaming-card::after,
body a.gaming-card::after,
body .gaming-card:is(a, button)::after,
body.controller-store button::after,
body.controller-store a[class*="font-bold"][class*="rounded"]::after,
body.controller-cart button::after,
body.controller-cart a[class*="font-bold"][class*="rounded"]::after,
body.controller-orders button::after,
body.controller-orders a[class*="font-bold"][class*="rounded"]::after,
body .gaming-nav a[href$="/cart"]::after,
body .gaming-nav .gaming-btn-primary::after,
body .gaming-nav button:not(#mobileMenuButton)::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border: 1px solid rgba(255, 232, 184, 0.08);
  border-radius: 0 !important;
  clip-path: none !important;
  background: none !important;
  box-shadow: none !important;
}

body a.gaming-btn-primary:hover,
body button.gaming-btn-primary:hover,
body .discord-cta-btn:hover,
body .discord-btn-hero:hover,
body .mega-cta-button:hover,
body .checkout-float-btn:hover,
body .gaming-button-primary:hover,
body .gaming-button-secondary:hover,
body .bg-gradient-red-button:hover,
body button.gaming-card:hover,
body a.gaming-card:hover,
body .gaming-card:is(a, button):hover,
body.controller-store button:hover,
body.controller-store a[class*="font-bold"][class*="rounded"]:hover,
body.controller-cart button:hover,
body.controller-cart a[class*="font-bold"][class*="rounded"]:hover,
body.controller-orders button:hover,
body.controller-orders input[type="submit"]:hover,
body.controller-orders a[class*="font-bold"][class*="rounded"]:hover,
body .gaming-nav a[href$="/cart"]:hover,
body .gaming-nav .gaming-btn-primary:hover,
body .gaming-nav button:not(#mobileMenuButton):hover {
  border-color: rgba(var(--asc-orange-rgb), 0.78) !important;
  filter: brightness(1.08);
  transform: translateY(-1px) !important;
}

/* Homepage tree video: untinted square source */
.home-hero-section .hero-video-reel:not([hidden]) {
  opacity: 1 !important;
}

.home-hero-section .hero-reel-video {
  opacity: 1 !important;
  filter: none !important;
  object-fit: cover;
}

.hero-video-reel::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.hero-video-soften {
  display: none !important;
  background: none !important;
}

.asc-logo-wrap img {
  filter:
    drop-shadow(0 6px 10px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 4px rgba(var(--asc-blue-rgb), 0.08)) !important;
}

.asc-logo-wrap:hover img {
  filter:
    drop-shadow(0 7px 12px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 6px rgba(var(--asc-blue-rgb), 0.12)) !important;
  transform: translateY(-1px) scale(1.005) !important;
}

.asc-hero-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(640px, 92vw);
  margin-inline: auto;
}

.asc-path-logo {
  display: block;
  width: min(27rem, 72vw);
  height: auto;
  margin: clamp(-1.2rem, -1.8vw, -0.55rem) auto clamp(0.8rem, 2vw, 1.25rem);
  filter:
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 6px rgba(var(--asc-orange-rgb), 0.1));
}

@media (max-width: 767px) {
  .home-hero-section .hero-video-reel:not([hidden]) {
    inset: 0 0 auto;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .home-hero-section .hero-reel-video {
    height: 100% !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* Amascut home/news overhaul */
body .asc-site-nav {
  top: 14px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  padding: 0 18px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  filter: none !important;
  pointer-events: none;
}

body .asc-site-nav.gaming-nav {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  filter: none !important;
}

body .asc-nav-inner {
  width: min(1440px, calc(100vw - 28px));
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(3, 5, 5, 0.82), rgba(5, 8, 8, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.54),
    0 0 32px rgba(var(--asc-blue-rgb), 0.16),
    inset 0 -1px 0 rgba(var(--asc-orange-rgb), 0.18);
  pointer-events: auto;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  overflow: visible;
}

body .asc-nav-brand,
body .asc-nav-links,
body .asc-nav-actions,
body .asc-nav-link,
body .asc-nav-cart,
body .asc-nav-login,
body .asc-nav-play,
body .asc-nav-user__button,
body .asc-mobile-menu a {
  letter-spacing: 0;
}

body .asc-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #fff !important;
  font-family: "Aboreto", serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 0 16px rgba(var(--asc-blue-rgb), 0.36);
}

body .asc-nav-brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(var(--asc-blue-rgb), 0.34));
}

body .asc-nav-links,
body .asc-nav-actions {
  display: flex;
  align-items: center;
}

body .asc-nav-links {
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

body .asc-nav-actions {
  justify-content: flex-end;
  gap: 10px;
  overflow: visible;
}

body .asc-nav-link,
body .asc-nav-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 11px;
  color: rgba(245, 250, 250, 0.86) !important;
  font-family: "Aboreto", serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  clip-path: none !important;
  overflow: visible !important;
}

body .asc-nav-link::before,
body .asc-nav-login::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--asc-blue-rgb), 0.76), rgba(var(--asc-orange-rgb), 0.62), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body .asc-nav-link:hover,
body .asc-nav-link.is-active,
body .asc-nav-login:hover {
  color: #fff !important;
  text-shadow: 0 0 12px rgba(var(--asc-blue-rgb), 0.62);
}

body .asc-nav-link:hover::before,
body .asc-nav-link.is-active::before,
body .asc-nav-login:hover::before {
  opacity: 1;
  transform: translateY(0);
}

body .asc-nav-cart,
body .asc-nav-play,
body .asc-nav-user__button,
body .asc-nav-toggle,
body .asc-primary-button,
body .asc-secondary-button,
body .asc-icon-button,
body .asc-watch-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #fff !important;
  text-decoration: none;
  border-radius: 0 !important;
  clip-path: none !important;
  transform: none !important;
  white-space: nowrap;
}

body .asc-nav-cart,
body .asc-nav-user__button,
body .asc-icon-button,
body .asc-watch-arrow {
  background: rgba(8, 14, 14, 0.72) !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.32) !important;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.38) !important;
}

body .asc-nav-cart {
  width: 46px;
  position: relative;
  overflow: visible;
}

body .asc-nav-cart span {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  background: var(--asc-orange);
  border: 1px solid rgba(255, 255, 255, 0.32);
  z-index: 2;
}

body .asc-nav-play,
body .asc-primary-button {
  gap: 9px;
  padding: 0 20px;
  background:
    linear-gradient(180deg, rgba(168, 139, 82, 0.96), rgba(114, 94, 55, 0.96)),
    var(--asc-glyph-texture, none) center / 280px 280px !important;
  border: 1px solid rgba(255, 235, 185, 0.34) !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  font-family: "Aboreto", serif;
  font-weight: 800;
}

.asc-play-favicon {
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  object-fit: contain;
  vertical-align: -0.2em;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.24));
}

body .asc-primary-button .asc-play-favicon {
  width: 1.55rem;
  height: 1.55rem;
}

body .asc-mobile-play .asc-play-favicon,
.gaming-button-primary .asc-play-favicon {
  width: 1.25rem;
  height: 1.25rem;
}

.gaming-button-primary .asc-play-favicon {
  margin-right: 0.5rem;
}

.asc-feature-cta-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.45rem;
}

.asc-feature-cta-icon[hidden] {
  display: none;
}

.asc-feature-cta-icon .asc-play-favicon {
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: -0.15em;
}

body .asc-secondary-button {
  gap: 9px;
  padding: 0 18px;
  background: rgba(8, 16, 16, 0.74) !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.48) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34) !important;
  font-family: "Aboreto", serif;
  font-weight: 800;
}

body .asc-nav-play:hover,
body .asc-primary-button:hover,
body .asc-secondary-button:hover,
body .asc-nav-cart:hover,
body .asc-nav-user__button:hover,
body .asc-icon-button:hover,
body .asc-watch-arrow:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.78) !important;
  filter: brightness(1.08);
}

body .asc-nav-user {
  position: relative;
}

body .asc-nav-user__button {
  gap: 8px;
  max-width: 180px;
  padding: 0 10px 0 8px;
  font-family: "Aboreto", serif;
  font-size: 0.82rem;
  font-weight: 800;
}

body .asc-nav-user__avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--asc-blue-rgb), 0.8), rgba(var(--asc-orange-rgb), 0.72));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

body .asc-nav-user__name {
  overflow: hidden;
  text-overflow: ellipsis;
}

body .asc-nav-user__chevron {
  transform: rotate(90deg);
  opacity: 0.7;
}

body .asc-nav-user__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(4, 8, 8, 0.98), rgba(8, 14, 14, 0.96)),
    var(--asc-glyph-texture, none) center / 420px 420px;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.62);
}

body .asc-nav-user__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

body .asc-nav-user__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  color: rgba(245, 250, 250, 0.88);
  text-decoration: none;
}

body .asc-nav-user__menu a:hover {
  color: #fff;
  background: rgba(var(--asc-blue-rgb), 0.14);
}

body .asc-nav-toggle {
  display: none;
  width: 44px;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  background: rgba(8, 14, 14, 0.74) !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.4) !important;
}

body .asc-nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
}

body .asc-mobile-menu {
  width: min(720px, calc(100vw - 28px));
  margin: 8px auto 0;
  padding: 14px;
  display: grid;
  gap: 6px;
  background:
    linear-gradient(180deg, rgba(3, 6, 6, 0.98), rgba(8, 13, 13, 0.95)),
    var(--asc-glyph-texture, none) center / 440px 440px;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.38);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.56);
  pointer-events: auto;
}

body .asc-mobile-menu[hidden],
body .asc-nav-user__menu[hidden] {
  display: none !important;
}

body .asc-mobile-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(245, 250, 250, 0.88);
  font-family: "Aboreto", serif;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

body .asc-mobile-menu a:hover,
body .asc-mobile-menu a.is-active {
  color: #fff;
  border-color: rgba(var(--asc-blue-rgb), 0.34);
  background: rgba(var(--asc-blue-rgb), 0.12);
}

body .asc-mobile-menu__account {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body .asc-mobile-play {
  justify-content: center;
  background: rgba(168, 139, 82, 0.22) !important;
  border-color: rgba(255, 235, 185, 0.34) !important;
}

.asc-home-shell,
.asc-page-shell {
  position: relative;
  z-index: 1;
  overflow: clip;
  color: #fff;
}

.asc-home-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #030606;
}

.asc-home-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(1.05) brightness(0.68);
}

.asc-home-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(var(--asc-blue-rgb), 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72) 52%, #030606 100%);
}

.asc-home-hero {
  min-height: 100vh !important;
  padding: 118px 18px 82px !important;
  display: grid !important;
  align-items: center !important;
  border-bottom: 0 !important;
}

.asc-hero-content {
  width: min(1180px, 100%);
  margin: -22px auto 0;
  position: relative;
  z-index: 2;
}

.asc-home-hero .hero-video-reel:not([hidden]) {
  inset: 0 !important;
  height: 100% !important;
  aspect-ratio: auto !important;
}

.asc-home-hero .hero-reel-video {
  opacity: 0.64 !important;
  filter: saturate(1.08) brightness(0.72) contrast(1.02) !important;
}

.asc-home-hero .hero-video-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.68) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

body.controller-home .hero-announcement,
body.controller-home .launch-text-animated {
  display: none !important;
}

.asc-web-beta-announcement {
  display: inline-block;
  margin: 0 0 0.65rem;
  text-align: center;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(0.95rem, 1.9vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-decoration: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72), 0 0 18px rgba(var(--asc-blue-rgb), 0.26);
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.asc-web-beta-announcement:hover {
  color: #f4d285;
  transform: translateY(-1px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72), 0 0 18px rgba(var(--asc-orange-rgb), 0.26);
}

.asc-home-hero .hero-stage {
  min-height: clamp(280px, 34vw, 450px);
  padding: 0;
}

.asc-home-hero .hero-stage::before,
.asc-home-hero .hero-stage::after {
  opacity: 0.26;
}

.asc-home-hero .asc-logo-wrap img {
  width: min(650px, 92vw);
  max-height: min(380px, 42vh) !important;
}

.asc-home-hero .asc-path-logo {
  width: min(29rem, 72vw);
}

.asc-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.asc-primary-button,
.asc-secondary-button {
  min-height: 50px;
  padding: 0 24px;
  font-size: 0.98rem;
}

.asc-section-title {
  width: min(1500px, calc(100vw - 42px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 22px;
}

.asc-section-title span,
.asc-section-title--left span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), rgba(var(--asc-blue-rgb), 0.34), transparent);
}

.asc-section-title h2,
.asc-section-title--left p,
.asc-news-hero h1,
.asc-news-article__header h1 {
  font-family: "Aboreto", serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 22px rgba(var(--asc-blue-rgb), 0.3);
}

.asc-section-title h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1;
}

.asc-section-title--left {
  width: min(1500px, calc(100vw - 42px));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.asc-section-title--left p {
  font-size: clamp(1rem, 2vw, 1.6rem);
}

.asc-kicker {
  margin: 0;
  font-family: "Aboreto", serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #d8ad62;
}

.asc-kicker-link {
  display: inline-flex;
  text-decoration: none;
}

.asc-feature-section,
.asc-news-section,
.asc-watch-section,
.asc-media-section,
.asc-community-section,
.asc-news-index,
.asc-related-news {
  position: relative;
  z-index: 1;
  padding: clamp(58px, 8vw, 112px) 18px;
}

.asc-feature-carousel {
  width: min(1500px, calc(100vw - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.asc-feature-media {
  position: relative;
  min-height: clamp(320px, 42vw, 650px);
  background: rgba(3, 6, 6, 0.82);
  clip-path: polygon(1% 2%, 7% 0, 18% 1%, 28% 0, 44% 1.4%, 58% 0, 74% 1%, 88% 0, 99% 2%, 100% 12%, 99% 24%, 100% 42%, 99% 58%, 100% 76%, 98.5% 98%, 84% 100%, 69% 98.5%, 55% 100%, 38% 99%, 24% 100%, 9% 98%, 0 100%, 1% 78%, 0 63%, 1% 45%, 0 28%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.68),
    0 0 34px rgba(var(--asc-blue-rgb), 0.2);
  overflow: hidden;
}

.asc-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 22% 78%, rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 18% 12%, rgba(var(--asc-orange-rgb), 0.16), transparent 18rem);
}

.asc-feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.45s ease, transform 0.65s ease;
}

.asc-feature-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.asc-feature-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.asc-feature-copy h2 {
  margin: 0;
  font-family: "Aboreto", serif;
  font-size: clamp(2.8rem, 4.1vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 24px rgba(var(--asc-blue-rgb), 0.32);
}

.asc-feature-copy > p:not(.asc-kicker) {
  margin: 0;
  max-width: 46rem;
  color: rgba(222, 230, 230, 0.76);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.8;
  font-weight: 650;
}

.asc-feature-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.asc-text-link,
.asc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Aboreto", serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}

.asc-text-link::before,
.asc-read-more::before {
  content: "";
  width: clamp(72px, 9vw, 150px);
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.8), rgba(255, 255, 255, 0.32), transparent);
}

.asc-carousel-controls {
  display: flex;
  gap: 12px;
}

.asc-icon-button {
  width: 48px;
  height: 48px;
}

.asc-feature-tabs {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.asc-feature-tab {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Aboreto", serif;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  background: rgba(5, 9, 9, 0.58);
  border: 1px solid rgba(var(--asc-blue-rgb), 0.2);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.asc-feature-tab span {
  color: #d8ad62;
}

.asc-feature-tab:hover,
.asc-feature-tab.is-active {
  color: #fff;
  border-color: rgba(var(--asc-orange-rgb), 0.54);
  background: rgba(var(--asc-blue-rgb), 0.13);
}

.asc-news-grid {
  width: min(1500px, calc(100vw - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.asc-news-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: #fff;
  text-decoration: none;
  background: #020303;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.34);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.58),
    0 0 18px rgba(var(--asc-blue-rgb), 0.1),
    inset 0 0 0 1px rgba(var(--asc-blue-rgb), 0.08);
  overflow: hidden;
}

.asc-news-card__category {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: 0.72rem;
  font-weight: 900;
  background: rgba(3, 7, 7, 0.74);
  border: 1px solid rgba(var(--asc-blue-rgb), 0.32);
}

.asc-news-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
}

.asc-news-card__media img,
.asc-news-card__media video,
.asc-media-tile img,
.asc-watch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asc-news-card__media img,
.asc-news-card__media video {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.asc-news-card__body {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  align-content: start;
  gap: 14px;
}

.asc-news-card time,
.asc-news-article__header time {
  color: #df6405;
  font-family: "Aboreto", serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.asc-news-card h2,
.asc-news-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.asc-news-card p {
  margin: 0;
  color: rgba(220, 229, 229, 0.72);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 650;
}

.asc-news-card:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.62);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.62),
    0 0 22px rgba(var(--asc-blue-rgb), 0.14),
    0 0 20px rgba(var(--asc-orange-rgb), 0.16),
    inset 0 0 0 1px rgba(var(--asc-orange-rgb), 0.1);
}

.asc-news-card:hover .asc-news-card__media img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.asc-section-footer {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.asc-watch-section {
  overflow: hidden;
}

.asc-watch-carousel {
  width: min(980px, calc(100vw - 42px));
  min-height: clamp(250px, 30vw, 430px);
  margin: 0 auto;
  position: relative;
  display: grid;
  place-items: center;
}

.asc-watch-track {
  position: relative;
  width: 100%;
  height: clamp(220px, 25vw, 360px);
}

.asc-watch-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 52vw);
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #030606;
  border: 1px solid rgba(216, 173, 98, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
  transform: translate(calc(-50% + (var(--watch-offset) * 18vw)), -50%) scale(0.82);
  transition: transform 0.34s ease, opacity 0.34s ease, filter 0.34s ease, border-color 0.34s ease;
  opacity: 0.42;
  filter: saturate(0.82) brightness(0.72);
}

.asc-watch-card.is-active {
  opacity: 1;
  filter: none;
  border-color: rgba(216, 173, 98, 0.82);
  transform: translate(calc(-50% + (var(--watch-offset) * 18vw)), -50%) scale(1);
}

.asc-watch-card:not(.is-active) {
  width: min(320px, 34vw);
}

.asc-watch-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.72));
}

.asc-watch-card__play {
  position: absolute;
  inset: 0;
  width: 74px;
  height: 60px;
  margin: auto;
  display: grid;
  place-items: center;
  background: #d50916;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.asc-watch-card__play-icon {
  width: 28px;
  height: 28px;
  margin-left: 3px;
  color: #fff;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.44));
}

.asc-watch-card__copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  text-align: left;
}

.asc-watch-card__copy span {
  color: #d8ad62;
  font-family: "Aboreto", serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.asc-watch-card__copy strong {
  font-family: "Aboreto", serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.asc-watch-arrow {
  position: absolute;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50% !important;
}

.asc-watch-arrow--prev {
  left: clamp(4px, 3vw, 38px);
}

.asc-watch-arrow--next {
  right: clamp(4px, 3vw, 38px);
}

.asc-media-grid {
  width: min(1640px, calc(100vw - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.asc-media-tile {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #030606;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.16);
}

.asc-media-tile img {
  filter: brightness(0.72) saturate(0.94);
  transition: transform 0.34s ease, filter 0.34s ease;
}

.asc-media-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(0.9rem, 1.4vw, 1.18rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.asc-media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.asc-media-tile:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.64);
  z-index: 2;
}

.asc-media-tile:hover img {
  filter: brightness(1.04) saturate(1.04);
  transform: scale(1.035);
}

.asc-media-tile:hover::after,
.asc-media-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

.asc-community-section {
  padding-bottom: clamp(76px, 10vw, 140px);
}

.asc-community-inner {
  width: min(1200px, calc(100vw - 42px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(3, 7, 7, 0.84), rgba(10, 16, 15, 0.76)),
    var(--asc-glyph-texture, none) center / 480px 480px;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.28);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.5);
}

.asc-community-logo {
  width: clamp(118px, 13vw, 178px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 16px rgba(var(--asc-blue-rgb), 0.22));
}

.asc-community-inner h2 {
  margin: 6px 0 8px;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.asc-community-inner p:not(.asc-kicker) {
  margin: 0;
  color: rgba(222, 230, 230, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
}

.asc-page-shell {
  min-height: 100vh;
  padding-top: 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--asc-blue-rgb), 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(3, 6, 6, 0.8), rgba(3, 6, 6, 0.96)),
    var(--asc-glyph-texture, none) center / 520px 520px;
}

.asc-news-hero,
.asc-news-article__header {
  width: min(1120px, calc(100vw - 42px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) 0 clamp(30px, 5vw, 58px);
  text-align: center;
}

.asc-news-hero h1,
.asc-news-article__header h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.04;
}

.asc-news-hero p:not(.asc-kicker),
.asc-news-article__content p {
  margin: 0 auto;
  color: rgba(222, 230, 230, 0.76);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.85;
  font-weight: 650;
}

.asc-news-article {
  width: min(1180px, calc(100vw - 42px));
  margin: 0 auto;
}

.asc-news-article__hero {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.28);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.62);
}

.asc-news-article__hero img,
.asc-news-article__hero video {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.asc-news-article__content {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 78px) 0;
  display: grid;
  gap: 20px;
  color: rgba(222, 230, 230, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.78;
}

.asc-news-article__content p {
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: inherit;
  line-height: inherit;
  font-weight: 560;
}

.asc-news-article__content h1,
.asc-news-article__content h2,
.asc-news-article__content h3,
.asc-news-article__content h4,
.asc-news-article__content h5,
.asc-news-article__content h6 {
  margin: 18px 0 0;
  color: #fff;
  font-family: "Ysabeau Office", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
  text-shadow: 0 0 14px rgba(var(--asc-blue-rgb), 0.18);
}

.asc-news-article__content h1 {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
}

.asc-news-article__content h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.asc-news-article__content h3 {
  font-size: clamp(1.32rem, 1.8vw, 1.65rem);
}

.asc-news-article__content h4 {
  font-size: clamp(1.12rem, 1.35vw, 1.3rem);
}

.asc-news-article__content h5,
.asc-news-article__content h6 {
  font-size: 1rem;
}

.asc-news-article__content ul,
.asc-news-article__content ol {
  margin: 0 auto;
  width: min(760px, 100%);
  padding-left: 1.55rem;
  color: rgba(222, 230, 230, 0.76);
  font-size: inherit;
  line-height: inherit;
  font-weight: 560;
  list-style-position: outside;
}

.asc-news-article__content ul {
  list-style: disc;
}

.asc-news-article__content ol {
  list-style: decimal;
}

.asc-news-article__content li::marker {
  color: #d8ad62;
}

.asc-news-article__content li + li {
  margin-top: 0.45rem;
}

.asc-news-article__content a {
  color: #d8ad62;
  text-decoration: underline;
  text-decoration-color: rgba(216, 173, 98, 0.45);
  text-underline-offset: 0.18em;
}

.asc-news-article__content blockquote {
  width: min(760px, 100%);
  margin: 6px auto;
  padding: 18px 22px;
  color: rgba(245, 250, 250, 0.86);
  background: rgba(var(--asc-blue-rgb), 0.1);
  border-left: 2px solid rgba(216, 173, 98, 0.72);
}

.asc-news-article__content code {
  padding: 0.12em 0.34em;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(var(--asc-blue-rgb), 0.22);
}

.asc-news-article__content pre {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 18px;
  overflow-x: auto;
  color: rgba(245, 250, 250, 0.9);
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(var(--asc-blue-rgb), 0.24);
}

.asc-news-article__content pre code {
  padding: 0;
  background: transparent;
  border: 0;
}

.asc-news-article__content hr {
  width: min(620px, 80%);
  height: 1px;
  margin: 10px auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--asc-blue-rgb), 0.42), rgba(216, 173, 98, 0.34), transparent);
}

.asc-news-article__content img {
  width: min(820px, 100%);
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.asc-news-article__content video,
.asc-news-article__media-gallery video,
.asc-news-article__media-gallery img {
  width: min(820px, 100%);
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.asc-news-article__media-gallery {
  width: min(820px, calc(100vw - 42px));
  margin: 0 auto clamp(44px, 7vw, 82px);
  display: grid;
  gap: 24px;
}

.news-media-dropzone {
  padding: 28px 18px;
  text-align: center;
  cursor: pointer;
  border: 1px dashed rgba(var(--asc-blue-rgb), 0.62);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--asc-blue-rgb), 0.16), transparent 18rem),
    rgba(0, 0, 0, 0.22);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.news-media-dropzone.is-dragging {
  border-color: rgba(var(--asc-orange-rgb), 0.9);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--asc-orange-rgb), 0.2), transparent 18rem),
    rgba(var(--asc-blue-rgb), 0.08);
  transform: translateY(-1px);
}

.news-media-upload-status {
  border: 1px solid rgba(var(--asc-blue-rgb), 0.22);
  background: rgba(0, 0, 0, 0.28);
  padding: 8px 10px;
  color: rgba(237, 247, 248, 0.82);
}

.news-media-upload-status--success {
  border-color: rgba(34, 197, 94, 0.38);
  color: #bbf7d0;
}

.news-media-upload-status--error {
  border-color: rgba(248, 113, 113, 0.42);
  color: #fecaca;
}

.asc-admin-news-preview {
  max-height: 520px;
  overflow: auto;
  padding: 0;
}

.asc-admin-news-preview .markdown-preview h1,
.asc-admin-news-preview .markdown-preview h2,
.asc-admin-news-preview .markdown-preview h3,
.asc-admin-news-preview .markdown-preview h4,
.asc-admin-news-preview .markdown-preview h5,
.asc-admin-news-preview .markdown-preview h6 {
  color: #fff !important;
  font-family: "Ysabeau Office", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 850 !important;
  text-transform: none !important;
}

.asc-admin-news-preview .markdown-preview h1 { font-size: clamp(2rem, 3.2vw, 2.65rem) !important; }
.asc-admin-news-preview .markdown-preview h2 { font-size: clamp(1.65rem, 2.5vw, 2.15rem) !important; }
.asc-admin-news-preview .markdown-preview h3 { font-size: clamp(1.32rem, 1.8vw, 1.65rem) !important; }
.asc-admin-news-preview .markdown-preview h4 { font-size: clamp(1.12rem, 1.35vw, 1.3rem) !important; }

.asc-admin-news-preview .markdown-preview ul {
  list-style: disc !important;
}

.asc-admin-news-preview .markdown-preview ol {
  list-style: decimal !important;
}

.asc-hero-roadmap-cta {
  width: min(720px, calc(100vw - 36px));
  margin: 30px auto 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 18px;
  padding: 12px 14px 12px 22px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.44);
  background:
    linear-gradient(135deg, rgba(5, 20, 24, 0.74), rgba(12, 18, 18, 0.68) 52%, rgba(47, 27, 12, 0.62)),
    var(--asc-glyph-texture, none) center / 420px 420px;
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(var(--asc-blue-rgb), 0.18);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.asc-hero-roadmap-cta:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.72);
  transform: translateY(-1px);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(var(--asc-blue-rgb), 0.24),
    0 0 24px rgba(var(--asc-orange-rgb), 0.18);
}

.asc-hero-roadmap-cta__date {
  display: inline-grid;
  place-items: center;
  min-width: 152px;
  min-height: 50px;
  color: #1a1004;
  background: linear-gradient(135deg, #f4d285, #df6405);
  font-family: "Aboreto", serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.asc-hero-roadmap-cta__copy {
  min-width: 0;
  display: flex;
  align-items: center;
  text-align: left;
}

.asc-hero-roadmap-cta__copy strong {
  font-family: "Aboreto", serif;
  font-size: clamp(0.95rem, 1.9vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.alt-payment-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.5);
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--asc-blue-rgb), 0.18), transparent 18rem),
    radial-gradient(circle at 92% 100%, rgba(var(--asc-orange-rgb), 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(5, 12, 13, 0.94), rgba(14, 18, 18, 0.88));
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.alt-payment-cta__copy p {
  margin: 0;
  color: rgba(237, 247, 248, 0.86);
  font-weight: 650;
  line-height: 1.45;
  text-wrap: pretty;
}

.alt-payment-cta__copy strong {
  color: #65d8e5;
}

.alt-payment-cta__discount {
  margin-top: 4px !important;
  color: rgba(216, 173, 98, 0.92) !important;
  font-size: 0.92rem;
}

.alt-payment-cta__discount strong {
  color: #f5cf77;
}

.alt-payment-cta__price {
  min-width: 0;
  display: grid;
  justify-items: center;
  justify-self: stretch;
  gap: 2px;
}

.alt-payment-cta__old {
  color: rgba(205, 214, 214, 0.56);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: rgba(248, 113, 113, 0.84);
}

.alt-payment-cta__new {
  color: #f5cf77;
  font-family: "Aboreto", serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
}

.alt-payment-cta__save {
  color: #65d8e5;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.alt-payment-cta__button,
.store-discount-banner__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(var(--asc-orange-rgb), 0.58);
  background:
    linear-gradient(135deg, rgba(7, 35, 40, 0.96), rgba(17, 157, 180, 0.78) 52%, rgba(223, 100, 5, 0.88));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), 0 0 22px rgba(var(--asc-blue-rgb), 0.2);
}

.alt-payment-cta__button {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 420px);
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.store-discount-banner__button {
  white-space: nowrap;
}

.store-discount-banner {
  width: min(1020px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  text-align: left;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.48);
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--asc-blue-rgb), 0.18), transparent 20rem),
    radial-gradient(circle at 100% 100%, rgba(var(--asc-orange-rgb), 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(4, 12, 13, 0.92), rgba(17, 22, 20, 0.86));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.46);
}

.store-discount-banner__eyebrow {
  margin: 0 0 6px;
  color: #65d8e5;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-discount-banner h2 {
  margin: 0;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.store-discount-banner p:not(.store-discount-banner__eyebrow) {
  margin: 8px 0 0;
  color: rgba(237, 247, 248, 0.76);
  line-height: 1.55;
}

.store-discount-banner__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.store-discount-banner__prices div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.22);
  background: rgba(0, 0, 0, 0.26);
}

.store-discount-banner__prices span {
  display: block;
  color: rgba(237, 247, 248, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-discount-banner__prices strong {
  color: #f5cf77;
  font-size: 1.1rem;
}

.store-discount-banner__prices del {
  margin-left: 6px;
  color: rgba(205, 214, 214, 0.48);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration-color: rgba(248, 113, 113, 0.84);
}

.store-product-alt-price {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  color: rgba(237, 247, 248, 0.76);
  font-size: 0.78rem;
}

.store-product-alt-price span {
  width: 100%;
  color: #65d8e5;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-product-alt-price del {
  color: rgba(205, 214, 214, 0.48);
  font-weight: 800;
  text-decoration-color: rgba(248, 113, 113, 0.78);
}

.store-product-alt-price strong {
  color: #f5cf77;
  font-size: 1.05rem;
}

.store-product-alt-price em {
  color: #a7f3d0;
  font-style: normal;
  font-weight: 900;
}

.roadmap-page {
  --roadmap-hue: 188;
  position: relative;
  overflow: clip;
  min-height: 100vh;
  color: #edf7f8;
  background:
    radial-gradient(circle at 50% 0%, hsla(var(--roadmap-hue), 82%, 56%, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(var(--asc-orange-rgb), 0.12), transparent 28rem),
    linear-gradient(180deg, #030606, #050808 44%, #030606);
}

.roadmap-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  background:
    var(--asc-glyph-texture, none) center / 520px 520px,
    linear-gradient(120deg, transparent, hsla(var(--roadmap-hue), 82%, 56%, 0.08), transparent);
}

.roadmap-hero,
.roadmap-timeline {
  position: relative;
  z-index: 1;
}

.roadmap-hero {
  min-height: 64vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 118px 20px 34px;
  text-align: center;
}

.roadmap-hero__glow {
  position: absolute;
  width: min(720px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, hsla(var(--roadmap-hue), 92%, 58%, 0.18), transparent 62%),
    radial-gradient(circle, rgba(var(--asc-orange-rgb), 0.14), transparent 72%);
  filter: blur(8px);
  transform: translateY(18px);
}

.roadmap-hero__path-logo {
  position: relative;
  z-index: 1;
  width: min(820px, 82vw);
  max-height: 310px;
  object-fit: contain;
  margin: 0 auto 4px;
  filter:
    drop-shadow(0 0 18px rgba(var(--asc-blue-rgb), 0.32))
    drop-shadow(0 0 34px rgba(var(--asc-orange-rgb), 0.2));
}

.roadmap-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(2.35rem, 4.8vw, 4.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 0 34px hsla(var(--roadmap-hue), 82%, 56%, 0.34);
}

.roadmap-timeline {
  --roadmap-rail-column: 112px;
  --roadmap-rail-half: 56px;
  --roadmap-node-size: 54px;
  --roadmap-node-half: 27px;
  --roadmap-timeline-gap: clamp(22px, 4vw, 58px);
  width: min(1440px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 0 0 max(120px, 42vh);
  display: grid;
  grid-template-columns: var(--roadmap-rail-column) minmax(0, 1fr);
  gap: var(--roadmap-timeline-gap);
}

.roadmap-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  pointer-events: none;
}

.roadmap-rail__track,
.roadmap-rail__fill {
  position: absolute;
  left: 50%;
  top: 0;
  height: 0;
  width: 4px;
  transform: translateX(-50%);
  transform-origin: top;
  will-change: top, height, transform;
}

.roadmap-rail__track {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(var(--asc-blue-rgb), 0.18), rgba(255, 255, 255, 0.08));
}

.roadmap-rail__fill {
  background: linear-gradient(180deg, hsla(var(--roadmap-hue), 86%, 70%, 0.92), hsl(var(--roadmap-hue), 86%, 60%));
  box-shadow: 0 0 20px hsla(var(--roadmap-hue), 86%, 60%, 0.54);
  transform: translateX(-50%) scaleY(0);
}

.roadmap-rail__orb {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #030606;
  border: 4px solid hsl(var(--roadmap-hue), 86%, 60%);
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.44),
    0 0 24px hsla(var(--roadmap-hue), 86%, 60%, 0.78);
  transform: translate(-50%, -50%);
  will-change: top;
}

.roadmap-items {
  display: grid;
  gap: clamp(68px, 10vw, 132px);
}

.roadmap-item {
  position: relative;
  min-height: min(620px, 78vh);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  opacity: 0.58;
  transition: opacity 260ms ease;
}

.roadmap-item.is-active {
  opacity: 1;
}

.roadmap-item__node {
  position: absolute;
  left: calc(0px - var(--roadmap-timeline-gap) - var(--roadmap-rail-half) - var(--roadmap-node-half));
  top: 50%;
  width: var(--roadmap-node-size);
  height: var(--roadmap-node-size);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Aboreto", serif;
  font-weight: 900;
  background: #030606;
  border: 2px solid hsl(var(--node-hue), 86%, 60%);
  box-shadow:
    0 0 0 8px rgba(0, 0, 0, 0.5),
    0 0 30px hsla(var(--node-hue), 86%, 60%, 0.42);
  transform: translateY(-50%);
}

.roadmap-item__copy {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid hsla(var(--node-hue), 72%, 58%, 0.36);
  background:
    radial-gradient(circle at 0% 0%, hsla(var(--node-hue), 82%, 56%, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(5, 12, 13, 0.78), rgba(11, 16, 16, 0.58));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(8px);
}

.roadmap-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-bottom: 14px;
  color: #65d8e5;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.roadmap-item__meta time {
  color: #f5cf77;
}

.roadmap-item h2 {
  margin: 0;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.roadmap-item__title-link {
  color: inherit;
  text-decoration: none;
  text-shadow: 0 0 26px hsla(var(--node-hue), 86%, 60%, 0.34);
}

.roadmap-item__title-link:hover {
  color: #f5cf77;
}

.roadmap-item p {
  margin: 18px 0 0;
  color: rgba(237, 247, 248, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.78;
  font-weight: 650;
}

.roadmap-item__media {
  position: relative;
  min-height: 340px;
}

.roadmap-item__media > img,
.roadmap-item__media > video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid hsla(var(--node-hue), 72%, 58%, 0.48);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.56),
    0 0 40px hsla(var(--node-hue), 86%, 60%, 0.16);
}

.roadmap-item__media > video {
  background:
    radial-gradient(circle at 50% 42%, hsla(var(--node-hue), 82%, 56%, 0.12), transparent 58%),
    #030606;
}

.roadmap-item__media-img--pan {
  object-position: 50% 42%;
  animation: roadmap-image-pan 18s ease-in-out infinite alternate;
}

@keyframes roadmap-image-pan {
  from {
    object-position: 50% 42%;
  }

  to {
    object-position: 50% 58%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-item__media-img--pan {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .alt-payment-cta,
  .store-discount-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .alt-payment-cta__price {
    justify-items: center;
  }

  .alt-payment-cta__button {
    justify-self: center;
  }

  .roadmap-timeline {
    --roadmap-rail-column: 54px;
    --roadmap-rail-half: 27px;
    --roadmap-node-size: 42px;
    --roadmap-node-half: 21px;
    --roadmap-timeline-gap: 18px;
  }

  .roadmap-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .roadmap-item__node {
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .asc-hero-roadmap-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 14px;
  }

  .asc-hero-roadmap-cta__copy {
    justify-content: center;
    text-align: center;
  }

  .asc-hero-roadmap-cta__date {
    width: min(100%, 220px);
  }

  .store-discount-banner__prices {
    grid-template-columns: 1fr;
  }

  .roadmap-hero {
    min-height: 62vh;
    padding-top: 112px;
  }

  .roadmap-hero__path-logo {
    width: min(500px, 90vw);
    max-height: 190px;
  }

  .roadmap-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .roadmap-timeline {
    width: min(100vw - 24px, 640px);
  }

  .roadmap-item__copy {
    padding: 22px;
  }

  .roadmap-item__media {
    min-height: auto;
  }
}

.asc-news-article__content table {
  width: min(820px, 100%);
  margin: 0 auto;
  border-collapse: collapse;
  color: rgba(222, 230, 230, 0.8);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(var(--asc-blue-rgb), 0.24);
}

.asc-news-article__content th,
.asc-news-article__content td {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.18);
}

.asc-news-article__content th {
  color: #fff;
  font-family: "Aboreto", serif;
  font-weight: 800;
  text-transform: uppercase;
}

.asc-section-title--compact {
  margin-bottom: 24px;
}

.asc-section-title--compact h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.asc-news-grid--compact .asc-news-card__body p,
.asc-news-grid--compact .asc-news-card__category {
  display: none;
}

.asc-video-lightbox {
  width: min(1180px, calc(100vw - 32px));
}

@media (max-width: 1240px) {
  body .asc-nav-links {
    display: none;
  }

  body .asc-nav-inner {
    grid-template-columns: auto 1fr;
  }

  body .asc-nav-toggle {
    display: inline-flex;
  }

  body .asc-nav-login,
  body .asc-nav-user,
  body .asc-nav-play {
    display: none;
  }

  .asc-feature-carousel {
    grid-template-columns: 1fr;
  }

  .asc-feature-copy {
    max-width: 820px;
  }
}

@media (max-width: 900px) {
  body .asc-site-nav {
    top: 8px !important;
    padding: 0 10px;
  }

  body .asc-nav-inner {
    width: calc(100vw - 20px);
    min-height: 64px;
    padding: 8px 10px;
    gap: 10px;
  }

  body .asc-nav-brand span {
    display: none;
  }

  body .asc-nav-brand__mark {
    width: 44px;
    height: 44px;
  }

  body .asc-nav-cart {
    width: 44px;
  }

  .asc-home-hero {
    padding-top: 96px !important;
  }

  .asc-web-beta-announcement {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .asc-section-title {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .asc-section-title span {
    width: 100%;
  }

  .asc-feature-media {
    min-height: clamp(250px, 58vw, 430px);
  }

  .asc-news-grid {
    grid-template-columns: 1fr;
  }

  .asc-watch-carousel {
    min-height: auto;
  }

  .asc-watch-track {
    height: auto;
    display: grid;
    gap: 14px;
  }

  .asc-watch-card,
  .asc-watch-card:not(.is-active) {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none !important;
    opacity: 1;
    filter: none;
  }

  .asc-watch-arrow {
    display: none;
  }

  .asc-media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .asc-media-tile span,
  .asc-media-tile::after {
    opacity: 1;
    transform: none;
  }

  .asc-community-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  body .asc-nav-actions {
    gap: 7px;
  }

  body .asc-secondary-button,
  body .asc-primary-button {
    width: 100%;
  }

  .asc-hero-actions {
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .asc-feature-section,
  .asc-news-section,
  .asc-watch-section,
  .asc-media-section,
  .asc-community-section,
  .asc-news-index,
  .asc-related-news {
    padding-left: 12px;
    padding-right: 12px;
  }

  .asc-section-title,
  .asc-section-title--left,
  .asc-feature-carousel,
  .asc-news-grid,
  .asc-watch-carousel,
  .asc-community-inner,
  .asc-news-hero,
  .asc-news-article,
  .asc-news-article__header {
    width: calc(100vw - 24px);
  }

  .asc-feature-copy h2 {
    font-size: clamp(2.2rem, 13vw, 4rem);
  }

  .asc-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .asc-carousel-controls {
    justify-content: center;
  }

  .asc-media-grid {
    grid-template-columns: 1fr;
  }

  .asc-news-card__body {
    padding: 22px;
  }

  .asc-news-article__hero img {
    aspect-ratio: 16 / 10;
  }
}

/* Homepage correction pass: cleaner panels, hero-only video, repaired lightbox */
.asc-home-backdrop img {
  object-position: center;
  opacity: 0.58;
  filter: saturate(0.92) brightness(0.46) contrast(1.08);
}

.asc-home-backdrop::after {
  background:
    radial-gradient(circle at 50% 12%, rgba(var(--asc-blue-rgb), 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.68) 45%, #030606 100%),
    var(--asc-glyph-texture, none) center / 520px 520px;
  opacity: 0.98;
}

.asc-home-hero .hero-video-reel:not([hidden]) {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  opacity: 0.9 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.asc-home-hero {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
}

.asc-home-hero .asc-hero-content {
  position: relative;
  z-index: 2;
}

.asc-home-hero .hero-reel-video {
  opacity: 1 !important;
  filter: saturate(1.2) brightness(1.16) contrast(1.08) !important;
}

.asc-home-hero .hero-video-reel::before {
  opacity: 0.52;
}

.asc-feature-section,
.asc-news-section,
.asc-watch-section,
.asc-media-section,
.asc-community-section,
.asc-competitions-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(var(--asc-blue-rgb), 0.1), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(var(--asc-orange-rgb), 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(2, 5, 5, 0.58), rgba(2, 5, 5, 0.76));
}

.asc-section-title h2,
.asc-section-title--competitions h2 {
  font-size: clamp(1.7rem, 3.1vw, 3.45rem);
  line-height: 1.05;
}

.asc-feature-copy h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.45rem);
  line-height: 1.06;
}

.asc-community-inner h2 {
  font-size: clamp(1.7rem, 3.1vw, 3rem);
}

.asc-competitions-section {
  padding-top: clamp(58px, 8vw, 106px) !important;
}

.asc-competitions-section .max-w-5xl {
  max-width: min(1500px, calc(100vw - 42px));
  padding-top: 0 !important;
}

.asc-section-title--competitions {
  width: 100%;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.home-launch-competitions {
  position: relative;
  padding-top: clamp(70px, 8vw, 116px) !important;
  padding-bottom: clamp(50px, 6vw, 82px) !important;
  overflow: hidden;
}

.home-launch-competitions__inner {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - 42px));
}

.home-launch-competitions__title {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.home-launch-competitions__title > div {
  max-width: min(720px, 100%);
  text-align: center;
}

.home-launch-competitions__title p {
  max-width: 46rem;
  margin: 0.9rem auto 0;
  color: rgba(224, 235, 235, 0.78);
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  font-weight: 650;
  line-height: 1.65;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
}

.home-launch-tree {
  position: relative;
  padding: clamp(8px, 1.5vw, 16px) 0;
}

.home-launch-tree__trunk {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(216, 173, 98, 0.52), rgba(var(--asc-blue-rgb), 0.45), transparent);
  box-shadow:
    0 0 18px rgba(var(--asc-blue-rgb), 0.32),
    0 0 22px rgba(var(--asc-orange-rgb), 0.16);
  opacity: 0.58;
}

.home-launch-events-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.home-launch-event {
  --event-accent: var(--asc-blue);
  --event-rgb: var(--asc-blue-rgb);
  position: relative;
  min-height: 154px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  padding: clamp(15px, 1.6vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(var(--event-rgb), 0.44);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--event-rgb), 0.16), transparent 27%, rgba(216, 173, 98, 0.08) 78%, rgba(var(--asc-orange-rgb), 0.12)),
    linear-gradient(180deg, rgba(5, 13, 13, 0.94), rgba(5, 9, 9, 0.88)),
    var(--asc-glyph-texture, none) center / 420px 420px;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(var(--event-rgb), 0.14);
}

.home-launch-event::before,
.home-launch-event::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-launch-event::before {
  left: 0;
  top: 50%;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--event-rgb), 0.68), transparent);
}

.home-launch-event::after {
  inset: 10px;
  border: 1px solid rgba(216, 173, 98, 0.16);
  border-radius: 6px;
}

.home-launch-event--battle-pass {
  --event-accent: var(--asc-gold);
  --event-rgb: 216, 173, 98;
}

.home-launch-event--tree {
  --event-accent: var(--asc-blue);
  --event-rgb: var(--asc-blue-rgb);
}

.home-launch-event--prestige {
  --event-accent: var(--asc-orange);
  --event-rgb: var(--asc-orange-rgb);
}

.home-launch-event--race {
  --event-accent: #63e4ef;
  --event-rgb: 99, 228, 239;
}

.home-launch-event--completed {
  border-color: rgba(2, 255, 129, 0.5);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(2, 255, 129, 0.1),
    0 0 26px rgba(2, 255, 129, 0.16);
}

.home-launch-event__node {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-top: 3px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid rgba(var(--event-rgb), 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(var(--event-rgb), 0.18)),
    rgba(4, 10, 10, 0.84);
  box-shadow:
    0 0 18px rgba(var(--event-rgb), 0.34),
    inset 0 0 16px rgba(var(--event-rgb), 0.12);
}

.home-launch-event__node span {
  width: 16px;
  height: 16px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: var(--event-accent);
  box-shadow:
    0 0 14px rgba(var(--event-rgb), 0.6),
    0 0 24px rgba(var(--event-rgb), 0.2);
}

.home-launch-event__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.home-launch-event__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.home-launch-event__meta span {
  max-width: 100%;
  padding: 0.25rem 0.48rem;
  border: 1px solid rgba(var(--event-rgb), 0.38);
  border-radius: 4px;
  color: rgba(238, 247, 247, 0.78);
  background: rgba(var(--event-rgb), 0.13);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-launch-event h3 {
  margin: 0;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(1.04rem, 1.25vw, 1.34rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.78),
    0 0 18px rgba(var(--event-rgb), 0.22);
}

.home-launch-event__description {
  margin: 0;
  color: rgba(222, 232, 232, 0.72);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: 0;
}

.home-launch-event__reward {
  display: grid;
  gap: 4px;
  padding: 0.68rem 0.76rem;
  border: 1px solid rgba(216, 173, 98, 0.24);
  border-radius: 6px;
  background: rgba(3, 7, 7, 0.56);
}

.home-launch-event__reward span,
.home-launch-event__status-label {
  color: rgba(216, 173, 98, 0.84);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-launch-event__reward strong {
  color: #fff;
  font-size: clamp(0.9rem, 1.05vw, 1.03rem);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0;
}

.home-launch-event__status {
  min-height: 34px;
  display: grid;
  align-content: end;
  gap: 6px;
  color: rgba(230, 240, 240, 0.76);
}

.home-launch-event__status ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-launch-event__status li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 0.24rem 0.48rem;
  border: 1px solid rgba(2, 255, 129, 0.24);
  border-radius: 4px;
  background: rgba(2, 255, 129, 0.09);
  color: rgba(235, 255, 245, 0.86);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
}

.home-launch-event__status li strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-launch-competitions__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
}

.home-launch-competitions__button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.9rem 1.45rem;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.74);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 34, 39, 0.95), rgba(var(--asc-blue-rgb), 0.72) 52%, rgba(var(--asc-orange-rgb), 0.68)),
    var(--asc-glyph-texture, none) center / 320px 320px;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38),
    0 0 20px rgba(var(--asc-blue-rgb), 0.22);
  font-family: "Aboreto", serif;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-launch-competitions__button:hover,
.home-launch-competitions__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--asc-orange-rgb), 0.86);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(var(--asc-blue-rgb), 0.3),
    0 0 18px rgba(var(--asc-orange-rgb), 0.24);
}

.home-launch-competitions__button-node {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  transform: rotate(45deg);
  border: 1px solid rgba(216, 173, 98, 0.78);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(var(--asc-blue-rgb), 0.16)),
    rgba(3, 8, 8, 0.76);
  box-shadow:
    0 0 14px rgba(var(--asc-blue-rgb), 0.34),
    inset 0 0 12px rgba(var(--asc-orange-rgb), 0.12);
}

.home-launch-competitions__button-node span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 3px;
  background: var(--asc-gold);
  box-shadow:
    0 0 10px rgba(216, 173, 98, 0.62),
    0 0 16px rgba(var(--asc-orange-rgb), 0.18);
}

@media (max-width: 1120px) {
  .home-launch-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-launch-competitions__inner {
    width: min(100%, calc(100vw - 28px));
  }

  .home-launch-competitions__title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-launch-events-grid {
    grid-template-columns: 1fr;
  }

  .home-launch-tree__trunk {
    left: 21px;
  }

  .home-launch-event {
    min-height: 0;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .home-launch-event__node {
    width: 36px;
    height: 36px;
  }

  .home-launch-event__node span {
    width: 14px;
    height: 14px;
  }
}

.asc-feature-media {
  clip-path: none !important;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 98, 0.58);
  border-radius: 4px;
  outline: 1px solid rgba(var(--asc-blue-rgb), 0.28);
  outline-offset: 7px;
  background:
    linear-gradient(135deg, rgba(3, 6, 6, 0.94), rgba(10, 14, 13, 0.86)),
    var(--asc-glyph-texture, none) center / 460px 460px;
  box-shadow:
    0 30px 74px rgba(0, 0, 0, 0.7),
    0 0 34px rgba(var(--asc-blue-rgb), 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.asc-feature-media::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(216, 173, 98, 0.9) 0 42px, transparent 42px calc(100% - 42px), rgba(216, 173, 98, 0.9) calc(100% - 42px)) top / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(216, 173, 98, 0.9) 0 42px, transparent 42px calc(100% - 42px), rgba(216, 173, 98, 0.9) calc(100% - 42px)) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(216, 173, 98, 0.9) 0 42px, transparent 42px calc(100% - 42px), rgba(216, 173, 98, 0.9) calc(100% - 42px)) left / 1px 100% no-repeat,
    linear-gradient(180deg, rgba(216, 173, 98, 0.9) 0 42px, transparent 42px calc(100% - 42px), rgba(216, 173, 98, 0.9) calc(100% - 42px)) right / 1px 100% no-repeat;
  opacity: 0.72;
}

.asc-feature-media::after {
  border: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 42px rgba(0, 0, 0, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18% 82%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 18% 12%, rgba(var(--asc-orange-rgb), 0.12), transparent 18rem);
}

.lightbox-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(18px, 4vw, 48px) !important;
  background:
    radial-gradient(circle at 50% 30%, rgba(var(--asc-blue-rgb), 0.14), transparent 34rem),
    rgba(0, 0, 0, 0.94) !important;
}

.lightbox-overlay.hidden {
  display: none !important;
}

.lightbox-content.asc-video-lightbox {
  position: relative !important;
  width: min(1180px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 80px);
  display: grid;
  gap: 14px;
  align-items: stretch;
  padding: clamp(12px, 1.8vw, 18px);
  background:
    linear-gradient(180deg, rgba(3, 6, 6, 0.96), rgba(7, 11, 11, 0.92)),
    var(--asc-glyph-texture, none) center / 440px 440px;
  border: 1px solid rgba(216, 173, 98, 0.58);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.82),
    0 0 32px rgba(var(--asc-blue-rgb), 0.24);
}

.lightbox-content.asc-video-lightbox .lightbox-close {
  top: clamp(10px, 1.4vw, 16px);
  right: clamp(10px, 1.4vw, 16px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 0;
  color: #fff;
  background: rgba(8, 14, 14, 0.82);
  border: 1px solid rgba(216, 173, 98, 0.48);
}

.lightbox-content.asc-video-lightbox .lightbox-title {
  min-height: 1.5rem;
  margin: 0;
  padding-right: 62px;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lightbox-content.asc-video-lightbox .lightbox-video {
  width: 100%;
  max-width: 100%;
  max-height: min(76vh, calc(100vh - 176px));
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 0;
  background: #000;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lightbox-content.asc-video-lightbox .lightbox-frame {
  display: block;
}

.lightbox-content.asc-video-lightbox .lightbox-video[hidden],
.lightbox-content.asc-video-lightbox .lightbox-frame[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .asc-section-title h2,
  .asc-section-title--competitions h2 {
    font-size: clamp(1.55rem, 8vw, 2.7rem);
  }

  .asc-feature-media {
    outline-offset: 4px;
  }
}

@media (max-width: 560px) {
  .asc-feature-copy h2 {
    font-size: clamp(1.8rem, 9.5vw, 3rem);
  }

  .asc-competitions-section .max-w-5xl {
    max-width: calc(100vw - 24px);
  }

  .lightbox-content.asc-video-lightbox {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 36px);
  }
}

/* Continuous homepage wash: keep parallax/background unbroken between sections */
.asc-home-backdrop::after {
  background:
    radial-gradient(ellipse 70rem 40rem at 16% 22%, rgba(var(--asc-blue-rgb), 0.14), transparent 68%),
    radial-gradient(ellipse 58rem 36rem at 86% 34%, rgba(var(--asc-orange-rgb), 0.11), transparent 70%),
    radial-gradient(ellipse 62rem 38rem at 26% 58%, rgba(var(--asc-blue-rgb), 0.1), transparent 72%),
    radial-gradient(ellipse 54rem 32rem at 78% 76%, rgba(var(--asc-orange-rgb), 0.08), transparent 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.74) 100%),
    var(--asc-glyph-texture, none) center / 520px 520px;
  opacity: 1;
}

.asc-feature-section,
.asc-news-section,
.asc-watch-section,
.asc-media-section,
.asc-community-section,
.asc-competitions-section {
  background: transparent !important;
}

body.controller-home.action-index .asc-watch-section {
  padding-bottom: clamp(12px, 1.8vw, 24px);
}

body.controller-home.action-index .asc-media-section {
  padding-top: clamp(16px, 2.2vw, 30px);
}

@media (min-width: 901px) {
  body.controller-home.action-index .asc-watch-carousel {
    min-height: clamp(240px, 24vw, 350px);
  }

  body.controller-home.action-index .asc-watch-track {
    height: clamp(220px, 22vw, 320px);
  }
}

body.controller-home.action-index .asc-home-hero .hero-reel-video {
  animation: none !important;
  background: #030606;
}

@supports (content-visibility: auto) {
  body.controller-home.action-index .asc-feature-section,
  body.controller-home.action-index .asc-news-section,
  body.controller-home.action-index .asc-watch-section,
  body.controller-home.action-index .asc-media-section,
  body.controller-home.action-index .asc-community-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }

  body.controller-home.action-index .asc-news-section {
    contain-intrinsic-size: auto 980px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.controller-home.action-index .asc-feature-video {
    transition: none !important;
  }
}

@media (max-width: 900px) {
  body.controller-home.action-index {
    background-attachment: scroll !important;
  }
}

/* Amascut utility pages: benefits, voting, hiscores, competitions */
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) {
  background:
    radial-gradient(ellipse 68rem 36rem at 18% 12%, rgba(var(--asc-blue-rgb), 0.14), transparent 68%),
    radial-gradient(ellipse 58rem 34rem at 86% 22%, rgba(var(--asc-orange-rgb), 0.1), transparent 70%),
    linear-gradient(180deg, rgba(2, 5, 5, 0.86), rgba(2, 5, 5, 0.96)) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section {
  position: relative;
  isolation: isolate;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type {
  padding-top: clamp(7.5rem, 11vw, 9.5rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 4.25rem) !important;
  background:
    radial-gradient(ellipse 46rem 24rem at 20% 28%, rgba(var(--asc-blue-rgb), 0.16), transparent 72%),
    radial-gradient(ellipse 42rem 24rem at 82% 16%, rgba(var(--asc-orange-rgb), 0.12), transparent 74%),
    linear-gradient(180deg, rgba(4, 8, 8, 0.64), rgba(4, 8, 8, 0.18)) !important;
  border-bottom: 1px solid rgba(var(--asc-blue-rgb), 0.3) !important;
  box-shadow:
    inset 0 -1px 0 rgba(var(--asc-orange-rgb), 0.22),
    0 18px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type::before,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(var(--asc-blue-rgb), 0.2), transparent) center 62% / min(82rem, 86vw) 1px no-repeat;
  opacity: 0.55;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type::after {
  left: 50%;
  bottom: -4.5rem;
  width: min(54rem, 78vw);
  height: 11rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(var(--asc-blue-rgb), 0.14), transparent 68%);
  filter: blur(10px);
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type > div,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:nth-of-type(2) > div {
  position: relative;
  z-index: 1;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type h1 {
  margin: 0;
  color: #fff !important;
  font-family: "Aboreto", serif !important;
  font-size: clamp(2.35rem, 5.5vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
  text-shadow:
    0 0 24px rgba(var(--asc-blue-rgb), 0.34),
    0 0 34px rgba(var(--asc-orange-rgb), 0.14);
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type p {
  max-width: 56rem;
  margin-top: 1rem;
  color: rgba(220, 230, 230, 0.76) !important;
  font-size: clamp(1rem, 1.45vw, 1.2rem) !important;
  font-weight: 650;
  line-height: 1.7;
}

body.controller-benefits > section:first-of-type > div {
  text-align: center;
}

body.controller-benefits > section:first-of-type p {
  margin-left: auto;
  margin-right: auto;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:nth-of-type(2) {
  background:
    radial-gradient(ellipse 56rem 28rem at 14% 18%, rgba(var(--asc-blue-rgb), 0.1), transparent 72%),
    radial-gradient(ellipse 48rem 28rem at 88% 48%, rgba(var(--asc-orange-rgb), 0.08), transparent 74%),
    linear-gradient(180deg, rgba(3, 6, 6, 0.08), rgba(3, 6, 6, 0.38)) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel-secondary,
body.controller-benefits .bg-gray-800.rounded-2xl {
  clip-path: none !important;
  border-radius: 6px !important;
  background:
    linear-gradient(135deg, rgba(7, 13, 13, 0.93), rgba(13, 18, 18, 0.88) 58%, rgba(18, 16, 13, 0.86)) !important;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.34) !important;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(var(--asc-orange-rgb), 0.12) !important;
  overflow: visible;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel::before,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel::after,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel-secondary::before,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel-secondary::after,
body.controller-benefits .bg-gray-800.rounded-2xl::before,
body.controller-benefits .bg-gray-800.rounded-2xl::after {
  display: none !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel .rounded-lg:not(.rounded-full),
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel-secondary .rounded-lg:not(.rounded-full),
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .rounded-xl:not(.rounded-full),
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .rounded-2xl:not(.rounded-full),
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .rounded:not(.rounded-full) {
  clip-path: none !important;
  border-radius: 6px !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="bg-gray-"],
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="bg-slate-"] {
  background-image: linear-gradient(135deg, rgba(8, 14, 14, 0.9), rgba(16, 20, 20, 0.78)) !important;
  background-color: rgba(8, 14, 14, 0.84) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="bg-gradient-to-"] {
  clip-path: none !important;
  border-radius: 6px !important;
}

body.controller-votes .vote-monthly-leaderboard-panel [class*="bg-gradient-to-"] {
  background-image: linear-gradient(90deg, rgba(9, 15, 15, 0.9), rgba(16, 19, 19, 0.78)) !important;
  box-shadow: inset 3px 0 0 rgba(var(--asc-blue-rgb), 0.38);
}

body.controller-votes .vote-monthly-leaderboard-panel [class*="from-yellow"],
body.controller-votes .vote-monthly-leaderboard-panel [class*="from-orange"] {
  background-image: linear-gradient(90deg, rgba(62, 35, 12, 0.72), rgba(16, 19, 19, 0.78)) !important;
  box-shadow: inset 3px 0 0 rgba(var(--asc-orange-rgb), 0.58);
}

body.controller-votes .vote-monthly-leaderboard-panel [class*="from-blue"],
body.controller-votes .vote-monthly-leaderboard-panel [class*="from-purple"] {
  background-image: linear-gradient(90deg, rgba(8, 32, 38, 0.72), rgba(16, 19, 19, 0.78)) !important;
  box-shadow: inset 3px 0 0 rgba(var(--asc-blue-rgb), 0.5);
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel:hover,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-panel-secondary:hover,
body.controller-benefits .bg-gray-800.rounded-2xl:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.58) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="border-gray-"],
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="border-red-"] {
  border-color: rgba(var(--asc-blue-rgb), 0.28) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="hover:border-red-"]:hover,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="hover:border-amber-"]:hover,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="hover:border-yellow-"]:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.72) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="text-red-"],
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .text-red-primary {
  color: var(--asc-blue) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) [class*="bg-red-"],
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .bg-red-primary,
body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) .gaming-btn-primary {
  background:
    linear-gradient(135deg, rgba(5, 34, 39, 0.96), rgba(var(--asc-blue-rgb), 0.9) 52%, rgba(var(--asc-orange-rgb), 0.86)),
    var(--asc-glyph-texture, none) center / 320px 320px !important;
  border-color: rgba(var(--asc-blue-rgb), 0.72) !important;
}

body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) table {
  border-collapse: separate;
  border-spacing: 0;
}

body:is(.controller-benefits, .controller-hiscores) thead tr {
  background:
    linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.18), rgba(var(--asc-orange-rgb), 0.08)),
    rgba(3, 8, 8, 0.92) !important;
}

body:is(.controller-benefits, .controller-hiscores) tbody tr {
  border-color: rgba(var(--asc-blue-rgb), 0.18) !important;
}

body.controller-hiscores tbody tr:hover,
body.controller-benefits tbody tr:hover {
  background: rgba(var(--asc-blue-rgb), 0.12) !important;
  box-shadow: inset 3px 0 0 rgba(var(--asc-orange-rgb), 0.58);
}

body.controller-benefits .benefits-table th,
body.controller-benefits .benefits-table td {
  border-color: rgba(var(--asc-blue-rgb), 0.22) !important;
}

body.controller-benefits .benefits-col-label {
  background:
    linear-gradient(180deg, rgba(5, 12, 12, 0.96), rgba(8, 15, 15, 0.9)),
    var(--asc-glyph-texture, none) center / 420px 420px !important;
}

body.controller-votes .vote-streak-panel,
body.controller-votes .vote-monthly-leaderboard-panel {
  overflow: visible;
}

body.controller-votes .vote-streak-progress-fill {
  background: linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.86), #63e4ef, rgba(var(--asc-orange-rgb), 0.9)) !important;
}

body.controller-votes .scrollbar-thin::-webkit-scrollbar-thumb {
  background: rgba(var(--asc-blue-rgb), 0.45) !important;
}

body.controller-votes .scrollbar-thin::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--asc-orange-rgb), 0.6) !important;
}

body.controller-hiscores .gaming-input + div + [data-hiscores-search-target="dropdown"] {
  background:
    linear-gradient(180deg, rgba(3, 7, 7, 0.98), rgba(8, 14, 14, 0.96)),
    var(--asc-glyph-texture, none) center / 420px 420px !important;
  border-color: rgba(var(--asc-blue-rgb), 0.42) !important;
}

.competition-section-heading {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  align-items: center;
  gap: 18px;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(var(--asc-blue-rgb), 0.3);
}

.competition-section-heading::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.78), rgba(var(--asc-orange-rgb), 0.28), transparent);
}

body.controller-competitions .competition-card {
  min-height: 100%;
  border-color: rgba(var(--asc-blue-rgb), 0.44) !important;
}

body.controller-competitions .competition-card:hover {
  border-color: rgba(var(--asc-orange-rgb), 0.66) !important;
}

body.controller-competitions .competition-card--completed {
  border-color: rgba(2, 255, 129, 0.38) !important;
}

.competition-lock-note {
  max-width: 44rem;
  color: rgba(220, 230, 230, 0.72);
  font-family: "RuneScape UF", "Medieval Sharp", monospace;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

body.controller-competitions .competition-card--locked {
  display: flex;
  min-height: 21rem;
  overflow: hidden;
  border-color: rgba(216, 173, 98, 0.28) !important;
  background:
    radial-gradient(circle at 16% 14%, rgba(var(--asc-blue-rgb), 0.22), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(var(--asc-orange-rgb), 0.18), transparent 30%),
    linear-gradient(135deg, rgba(3, 9, 10, 0.94), rgba(5, 7, 8, 0.98)),
    var(--asc-glyph-texture, none) center / 420px 420px !important;
  user-select: none;
}

body.controller-competitions .competition-card--locked::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.18), transparent 28%, transparent 72%, rgba(var(--asc-orange-rgb), 0.12)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 8px);
  opacity: 0.75;
  pointer-events: none;
}

body.controller-competitions .competition-card--locked::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  z-index: 0;
  border: 1px solid rgba(216, 173, 98, 0.18);
  pointer-events: none;
}

body.controller-competitions .competition-card--locked:hover {
  transform: none;
  border-color: rgba(216, 173, 98, 0.38) !important;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.75),
    0 0 28px rgba(var(--asc-blue-rgb), 0.2),
    inset 0 0 30px rgba(0, 0, 0, 0.58);
}

.competition-card-lock__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  border: 1px solid rgba(216, 173, 98, 0.36);
  background: rgba(6, 9, 9, 0.82);
  color: rgba(244, 213, 143, 0.88);
  font-family: "RuneScape UF", "Medieval Sharp", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.62rem;
  text-transform: uppercase;
}

.competition-card-lock__node {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 1;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 1px solid rgba(var(--asc-blue-rgb), 0.5);
  background: rgba(7, 17, 18, 0.78);
  box-shadow:
    0 0 22px rgba(var(--asc-blue-rgb), 0.2),
    inset 0 0 22px rgba(0, 0, 0, 0.45);
  transform: rotate(45deg);
}

.competition-card-lock__node span {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(244, 213, 143, 0.85), rgba(var(--asc-blue-rgb), 0.5));
  box-shadow: 0 0 18px rgba(244, 213, 143, 0.26);
}

.competition-card-lock__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 5.6rem;
}

.competition-card-lock__eyebrow {
  color: rgba(216, 173, 98, 0.82);
  font-family: "RuneScape UF", "Medieval Sharp", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.competition-card-lock__content h3 {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Aboreto", serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 1.35rem;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(var(--asc-blue-rgb), 0.26);
}

.competition-card-lock__redacted {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  filter: blur(4px);
}

.competition-card-lock__redacted span {
  display: block;
  height: 0.82rem;
  border: 1px solid rgba(216, 173, 98, 0.12);
  background:
    linear-gradient(90deg, rgba(var(--asc-blue-rgb), 0.22), rgba(216, 173, 98, 0.18), rgba(var(--asc-orange-rgb), 0.16)),
    rgba(255, 255, 255, 0.08);
}

.competition-card-lock__redacted span:nth-child(1) {
  width: 84%;
}

.competition-card-lock__redacted span:nth-child(2) {
  width: 58%;
}

.competition-card-lock__redacted span:nth-child(3) {
  width: 72%;
}

.competition-card-lock__redacted span:nth-child(4) {
  width: 44%;
}

.competition-card-lock__message {
  color: rgba(220, 230, 230, 0.68);
  font-family: "RuneScape UF", "Medieval Sharp", monospace;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 700px) {
  body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type {
    padding-top: 6.7rem !important;
  }

  body:is(.controller-benefits, .controller-votes, .controller-hiscores, .controller-competitions, .controller-play) > section:first-of-type h1 {
    font-size: clamp(2rem, 10vw, 3.2rem) !important;
  }

  .competition-section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
