:root {
    --primary-color: #5bbcdd;
    --primary-dark: #4aa8c9;
    --text-on-primary: #ffffff;
}

/* Main content container */
.main-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navbar styles */
.navbar {
  list-style-type: none;
  padding: 5px;
  margin: 0;
  width: 2.5em;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  text-align: center;
  box-shadow: 1px 0 15px 0 rgba(0, 0, 0, 0.86);
  z-index: 2147483640;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  top: 50%;
  transform: translateY(-50%);
  margin-left: 11px;
}

.navbar li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
  position: relative;
}

.navbar li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Logo specific styles */
.navbar li:first-child {
  pointer-events: none;
  z-index: 2; /* Ensure logo is above hover indicator */
}

.navbar li:first-child a {
  width: 40px;
  height: 40px;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.4); /* Match navbar background */
  border-radius: 8px;
}

.navbar li:first-child a:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Active state styling */
.navbar li a.active {
  color: var(--primary-color);
}

.navbar li a.active::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Active indicator for bottom navbar */
.navbar-bottom li a.active::after {
  left: 50%;
  top: auto;
  bottom: -8px;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
}

/* Hover indicator */
.hover-indicator {
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: rgb(100, 100, 100); /* Solid medium dark gray */
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: -1; /* Put it behind everything */
  left: 50%;
  transform: translateX(-50%);
}

.navbar .ph {
  font-size: 24px;
  color: #ffffff;
}

.navbar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar hr {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(91, 188, 221, 0.2)!important;
}

/* Utility classes */
.no-select {
  user-select: none;
  -webkit-user-select: none;
}

.no-drag {
  -webkit-user-drag: none;
}

.hidden-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-container {
    padding: 0 15px;
  }
  
  .navbar {
    margin-left: 8px;
  }
}

/* Update any hardcoded orange colors to use CSS variables */
.btn-primary,
.primary-button,
.auth-button,
.modal-button {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

.btn-primary:hover,
.primary-button:hover,
.auth-button:hover,
.modal-button:hover {
    background-color: var(--primary-dark);
}

/* Interactive elements */
a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

button,
.btn,
.button,
input[type="submit"],
input[type="button"] {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    border: none;
    transition: background-color 0.3s ease;
}

button:hover,
.btn:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--primary-dark);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Auth modal specific styles */
.auth-modal-close:hover {
    color: var(--primary-color);
}

.auth-benefit-item i {
    color: var(--primary-color);
}

.auth-button.login {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

.auth-button.login:hover {
    background-color: var(--primary-dark);
}

.auth-button.signup {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.auth-button.signup:hover {
    background-color: var(--primary-color-10);
}

.auth-modal-footer a {
    color: var(--primary-color);
}

/* Profile menu styles */
.profile-circle i.ph-shield-check {
    color: var(--primary-color);
    filter: drop-shadow(0 0 2px var(--primary-color-30));
}

.dropdown-item:hover {
    background: var(--primary-color-10);
}

/* --- Bottom Navbar Styles --- */
.navbar-bottom {
  left: 50%;
  bottom: 30px;
  top: auto;
  transform: translateX(-50%);
  width: auto;
  display: flex;
}

.navbar-bottom li {
  margin: 0 8px;
}

.navbar-bottom li a {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 10px;
  font-size: 22px;
}

.navbar-bottom .hover-indicator {
  position: absolute;
  border-radius: 10px;
  background: rgba(40,40,40,0.92);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
  z-index: 0;
  transition: left 0.22s cubic-bezier(.4,1.6,.6,1), top 0.22s cubic-bezier(.4,1.6,.6,1), width 0.22s, height 0.22s, opacity 0.18s;
  opacity: 0;
  transform: none;
}

.navbar-bottom .navbar-pill-tooltip {
  position: fixed;
  min-width: 80px;
  max-width: 180px;
  padding: 7px 18px;
  color: #fff;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: left 0.18s ease, top 0.18s ease, bottom 0.18s ease, opacity 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(41, 41, 41, 0.9);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px)!important;
  -webkit-backdrop-filter: blur(10px);
}

.navbar-bottom .navbar-pill-tooltip .pill-triangle {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  overflow: hidden;
}

.navbar-bottom .navbar-pill-tooltip .pill-triangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid rgba(41, 41, 41, 0.9);
}

/* --- Left Navbar Styles (default) --- */
.navbar-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  margin-left: 11px;
  box-shadow: 1px 0 15px 0 rgba(0, 0, 0, 0.86);
}

.navbar-left .hover-indicator {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(40,40,40,0.92);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
  z-index: 0;
  transition: top 0.22s cubic-bezier(.4,1.6,.6,1), height 0.22s cubic-bezier(.4,1.6,.6,1), opacity 0.18s;
  opacity: 0;
}

.navbar-left .navbar-pill-tooltip {
  position: fixed;
  min-width: 80px;
  max-width: 180px;
  padding: 7px 18px;
  color: #fff;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: left 0.18s ease, top 0.18s ease, opacity 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(41, 41, 41, 0.9);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-left .navbar-pill-tooltip .pill-triangle {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 18px;
  overflow: hidden;
}

.navbar-left .navbar-pill-tooltip .pill-triangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 10px solid rgba(41, 41, 41, 0.9);
}

/* Compact icon spacing for bottom navbar */
.navbar-bottom li {
  margin: 0 6px;
}

/* Hide dividers for bottom navbar */
.navbar-bottom hr {
  display: none !important;
}

/* Logo size for bottom navbar */
.navbar-bottom li:first-child a {
  width: 32px;
  height: 32px;
}

.navbar-bottom img {
  width: 32px;
  height: 32px;
}

/* Tooltip styles for both navbars */
.navbar-bottom .navbar-pill-tooltip,
.navbar-left .navbar-pill-tooltip {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  min-width: 60px;
  padding: 7px 16px;
  line-height: 1.2;
}

/* --- GUARDSCRIPTS UI EXTENSIONS (from executors.css, refactored) --- */

.gs-card {
  background: rgba(0,0,0,0.5);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}
.gs-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.01);
}

.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #000;
  color: var(--text-on-primary);
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
}
.gs-btn:hover, .gs-btn:focus {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.gs-btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
}
.gs-btn-outline:hover, .gs-btn-outline:focus {
  background: var(--primary-color);
  color: #fff;
}

.gs-input, .gs-select, .gs-textarea {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.gs-input:focus, .gs-select:focus, .gs-textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.gs-filter-panel {
  background: #000;
  border-radius: 0.75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.gs-filter-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.gs-filter-group {
  margin-bottom: 1.25rem;
}
.gs-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.gs-checkbox input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 1.1em;
  height: 1.1em;
  border-radius: 0.25em;
  border: 1.5px solid var(--primary-color);
  background: #111;
}
.gs-checkbox-label {
  color: #fff;
  font-size: 1rem;
}

.gs-dropdown {
  position: relative;
  display: inline-block;
}
.gs-dropdown-selected {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gs-dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 10;
  min-width: 160px;
  display: none;
}
.gs-dropdown.open .gs-dropdown-options {
  display: block;
}
.gs-dropdown-option {
  padding: 0.75rem 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s;
}
.gs-dropdown-option:hover, .gs-dropdown-option.selected {
  background: var(--primary-color);
  color: #fff;
}

.gs-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-modal {
  background: #111;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.32);
  padding: 2rem 2.5rem;
  max-width: 480px;
  width: 100%;
  color: #fff;
  position: relative;
}
.gs-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.gs-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.gs-modal-close:hover {
  color: var(--primary-color);
}

.gs-shadow {
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.gs-shadow-lg {
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.gs-glass {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.gs-flex {
  display: flex;
}
.gs-flex-col {
  flex-direction: column;
}
.gs-flex-row {
  flex-direction: row;
}
.gs-justify-between {
  justify-content: space-between;
}
.gs-align-center {
  align-items: center;
}
.gs-gap-2 {
  gap: 0.5rem;
}
.gs-gap-4 {
  gap: 1rem;
}
.gs-gap-8 {
  gap: 2rem;
}

.gs-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.gs-loading-spinner {
  border: 4px solid #222;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: gs-spin 1s linear infinite;
  margin: 0 auto;
}
@keyframes gs-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gs-badge {
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: 0.5em;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.95em;
  font-weight: 600;
}

.gs-scrollbar::-webkit-scrollbar {
  width: 8px;
  background: #111;
}
.gs-scrollbar::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}

/* Responsive utilities */
@media (max-width: 900px) {
  .gs-filter-panel, .gs-modal {
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .gs-filter-panel, .gs-modal {
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
  .gs-avatar {
    width: 48px;
    height: 48px;
  }
}

/* --- END GUARDSCRIPTS UI EXTENSIONS --- */

/* --- GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (from executors.css, part 1/4) --- */

/* Base Variables and Root Styles */
:root {
  --gs-bg: #030712;
  --gs-fg: #ffffff;
  --gs-crd-bg: rgba(0, 0, 0, 0.4);
  --gs-crd-bdr: rgba(255, 255, 255, 0.1);
  --gs-crd-hvr: rgba(var(--primary-color-rgb), 0.2);
  --gs-prim: var(--primary-color);
  --gs-prim-hvr: var(--primary-color-hover);
  --gs-prim-grd: linear-gradient(to right, var(--primary-color), var(--primary-color-hover));
  --gs-prim-glw: rgba(var(--primary-color-rgb), 0.5);
  --gs-sec: rgba(0, 0, 0, 0.3);
  --gs-sec-bdr: rgba(255, 255, 255, 0.1);
  --gs-sec-hvr: rgba(var(--primary-color-rgb), 0.1);
  --gs-sec-hvr-bdr: rgba(var(--primary-color-rgb), 0.5);
  --gs-txt-mut: rgba(156, 163, 175, 1);
  --gs-rad: 0.5rem;
  --gs-hdr-h: 4rem;
  --gs-shd: 0 10px 25px rgba(0, 0, 0, 0.2);
  --gs-shd-hvr: 0 15px 30px rgba(0, 0, 0, 0.3);
  --gs-hero-width: 48rem;
  --gs-footer-bg: rgba(0, 0, 0, 0.8);
  --gs-footer-border: rgba(255, 255, 255, 0.1);
  --gs-footer-text: rgba(209, 213, 219, 1);
  --gs-footer-muted: rgba(156, 163, 175, 1);
  --gs-lbl-color: var(--primary-color);
  --gs-lbl2-color: white;
  --gs-checkbx-color: rgba(var(--primary-color-rgb), 0.1);
  --gs-checkbx2-color: rgba(var(--primary-color-rgb), 0.3);
  --gs-bg-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent, rgba(0, 0, 0, 0.6));
}

/* Global Transitions */
.gs-transition-all * {
  transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease,
    box-shadow 0.5s ease, background-image 0.5s ease, fill 0.5s ease,
    stroke 0.5s ease, outline-color 0.5s ease;
}

/* Base Layout Components */
.gs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gs-main-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: calc(100vh - var(--gs-hdr-h));
}

.gs-left-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.gs-content-area {
  min-height: 100vh;
}

/* Hero Section Styles */
.gs-hero-section {
  position: relative;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.gs-hero-card {
  background: var(--gs-crd-bg);
  border-radius: 1rem;
  box-shadow: var(--gs-shd);
  border: 1px solid var(--gs-crd-bdr);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.gs-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gs-shd-hvr);
  border-color: var(--gs-prim);
}

.gs-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gs-hero-card:hover .gs-hero-gradient {
  opacity: 1;
}

.gs-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gs-hero-card:hover .gs-hero-glow {
  opacity: 1;
}

.gs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.gs-hero-accent-bar {
  width: 60px;
  height: 4px;
  background: var(--gs-prim-grd);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.gs-hero-card:hover .gs-hero-accent-bar {
  width: 100px;
}

.gs-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gs-prim-grd);
  -webkit-background-clip: text;
  color:white;
  background-clip: text;
}

.gs-hero-title strong {
  color: var(--gs-fg);
  -webkit-text-fill-color: var(--gs-fg);
}

.gs-hero-description {
  font-size: 1.125rem;
  color: var(--gs-txt-mut);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gs-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gs-prim-grd);
  color: white;
  border: none;
  border-radius: var(--gs-rad);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gs-hero-button::after {
  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.5s ease;
}

.gs-hero-button:hover::after {
  left: 100%;
}

.gs-hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
}

.gs-hero-button-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.gs-hero-button:hover .gs-hero-button-icon {
  transform: translateX(3px);
}

/* Advanced Card System */
.gs-card {
  background: var(--gs-crd-bg);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd);
  border: 1px solid var(--gs-crd-bdr);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gs-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gs-shd-hvr);
  border-color: var(--gs-prim);
}

.gs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gs-prim-grd);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gs-card-premium {
  background: linear-gradient(135deg, var(--gs-crd-bg), rgba(var(--primary-color-rgb), 0.05));
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.gs-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(var(--primary-color-rgb), 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.gs-card-header {
  margin-bottom: 1rem;
}

.gs-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gs-fg);
  margin-bottom: 0.5rem;
}

.gs-card-description {
  color: var(--gs-txt-mut);
  font-size: 0.875rem;
  line-height: 1.5;
}

.gs-card-body {
  margin-bottom: 1rem;
}

.gs-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gs-crd-bdr);
}

/* Advanced Button System */
.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--gs-rad);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.875rem;
}

.gs-btn::after {
  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.5s ease;
}

.gs-btn:hover::after {
  left: 100%;
}

.gs-btn > * {
  position: relative;
  z-index: 1;
}

.gs-btn-primary {
  background: var(--gs-prim-grd);
  color: white;
}

.gs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.3);
}

.gs-btn-secondary {
  background: var(--gs-sec);
  color: var(--gs-fg);
  border: 1px solid var(--gs-sec-bdr);
}

.gs-btn-secondary:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-btn-outline {
  background: transparent;
  color: var(--gs-prim);
  border: 2px solid var(--gs-prim);
}

.gs-btn-outline:hover {
  background: var(--gs-prim);
  color: white;
  transform: translateY(-1px);
}

.gs-btn-icon {
  padding: 0.5rem;
  border-radius: 50%;
  min-width: 2.5rem;
  height: 2.5rem;
}

.gs-btn-icon i {
  font-size: 1.125rem;
}

.gs-btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.gs-btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

.gs-btn-group {
  display: flex;
  gap: 0.5rem;
}

.gs-btn-group .gs-btn {
  flex: 1;
}

/* Badge System */
.gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gs-badge-primary {
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--gs-prim);
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
}

.gs-badge-premium {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2), rgba(var(--primary-color-rgb), 0.1));
  color: var(--gs-prim);
  border: 1px solid rgba(var(--primary-color-rgb), 0.4);
  animation: holographic 2s ease-in-out infinite alternate;
}

@keyframes holographic {
  0% { box-shadow: 0 0 5px rgba(var(--primary-color-rgb), 0.3); }
  100% { box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.6); }
}

.gs-badge-verified {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.gs-badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Loading and Animation States */
.gs-loading {
  position: relative;
  overflow: hidden;
}

.gs-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gs-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

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

.gs-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(var(--primary-color-rgb), 0.3); }
  100% { box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.6); }
}

/* Scrollbar Styling */
.gs-custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.gs-custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.gs-custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-color-rgb), 0.3);
  border-radius: 3px;
}

.gs-custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-color-rgb), 0.5);
}

/* Utility Classes */
.gs-hidden { display: none !important; }
.gs-visible { display: block !important; }
.gs-opacity-0 { opacity: 0; }
.gs-opacity-50 { opacity: 0.5; }
.gs-opacity-100 { opacity: 1; }
.gs-pointer-events-none { pointer-events: none; }
.gs-pointer-events-auto { pointer-events: auto; }
.gs-overflow-hidden { overflow: hidden; }
.gs-overflow-auto { overflow: auto; }
.gs-relative { position: relative; }
.gs-absolute { position: absolute; }
.gs-fixed { position: fixed; }
.gs-sticky { position: sticky; }
.gs-top-0 { top: 0; }
.gs-bottom-0 { bottom: 0; }
.gs-left-0 { left: 0; }
.gs-right-0 { right: 0; }
.gs-z-10 { z-index: 10; }
.gs-z-20 { z-index: 20; }
.gs-z-30 { z-index: 30; }
.gs-z-40 { z-index: 40; }
.gs-z-50 { z-index: 50; }

/* --- END GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (part 1/4) --- */

/* --- GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (from executors.css, part 2/4) --- */

/* Filter System */
.gs-filter-card {
  background: var(--gs-crd-bg);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd);
  border: 1px solid var(--gs-crd-bdr);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.gs-filter-card:hover {
  border-color: var(--gs-prim);
  box-shadow: var(--gs-shd-hvr);
}

.gs-filter-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gs-fg);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-filter-title::before {
  content: '';
  width: 4px;
  height: 1.125rem;
  background: var(--gs-prim-grd);
  border-radius: 2px;
}

.gs-filter-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gs-txt-mut);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-filter-dot {
  width: 6px;
  height: 6px;
  background: var(--gs-prim);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Custom Checkbox System */
.gs-custom-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0.5rem;
}

.gs-custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.gs-checkmark {
  height: 20px;
  width: 20px;
  background: var(--gs-sec);
  border: 2px solid var(--gs-sec-bdr);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.gs-custom-checkbox:hover input ~ .gs-checkmark {
  border-color: var(--gs-prim);
  background: var(--gs-checkbx-color);
}

.gs-custom-checkbox input:checked ~ .gs-checkmark {
  background: var(--gs-prim);
  border-color: var(--gs-prim);
}

.gs-checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: checkmark 0.2s ease-in-out;
}

.gs-custom-checkbox input:checked ~ .gs-checkmark:after {
  display: block;
}

@keyframes checkmark {
  0% { opacity: 0; transform: rotate(45deg) scale(0.8); }
  100% { opacity: 1; transform: rotate(45deg) scale(1); }
}

.gs-checkbox-label {
  font-size: 0.875rem;
  color: var(--gs-fg);
  font-weight: 500;
}

/* Price Filter Buttons */
.gs-price-filter-container {
  margin-bottom: 1.5rem;
}

.gs-price-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gs-price-btn {
  padding: 0.5rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gs-price-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s ease;
}

.gs-price-btn:hover::after {
  left: 100%;
}

.gs-price-btn:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-price-btn.active {
  background: var(--gs-prim);
  border-color: var(--gs-prim);
  color: white;
}

/* Sort Dropdown */
.gs-sort-container {
  margin-bottom: 1.5rem;
}

.gs-sort-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.gs-sort-select:focus {
  outline: none;
  border-color: var(--gs-prim);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

/* Reset Filters Button */
.gs-reset-filters-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gs-reset-filters-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s ease;
}

.gs-reset-filters-btn:hover::after {
  left: 100%;
}

.gs-reset-filters-btn:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

/* Custom Dropdown System */
.gs-custom-dropdown {
  position: relative;
  width: 100%;
}

.gs-custom-dropdown.active {
  z-index: 50;
}

.gs-custom-dropdown-selected {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gs-custom-dropdown-selected:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
}

.gs-custom-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--gs-crd-bg);
  border: 1px solid var(--gs-crd-bdr);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd-hvr);
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.gs-custom-dropdown.active .gs-custom-dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gs-custom-dropdown-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid var(--gs-crd-bdr);
}

.gs-custom-dropdown-option:hover {
  background: var(--gs-sec-hvr);
}

.gs-custom-dropdown-option.selected {
  background: var(--gs-prim);
  color: white;
}

/* Modal System */
.gs-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gs-modal-container.active {
  opacity: 1;
  visibility: visible;
}

.gs-modal {
  background: var(--gs-crd-bg);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd-hvr);
  border: 1px solid var(--gs-crd-bdr);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  backdrop-filter: blur(8px);
}

.gs-modal-container.active .gs-modal {
  transform: scale(1);
}

.gs-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gs-crd-bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gs-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gs-fg);
}

.gs-modal-close-btn {
  background: none;
  border: none;
  color: var(--gs-txt-mut);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.gs-modal-close-btn:hover {
  color: var(--gs-fg);
  background: var(--gs-sec-hvr);
}

.gs-modal-content {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.gs-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gs-crd-bdr);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Form System */
.gs-form-group {
  margin-bottom: 1.5rem;
}

.gs-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gs-fg);
  margin-bottom: 0.5rem;
}

.gs-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.gs-form-input:focus {
  outline: none;
  border-color: var(--gs-prim);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

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

.gs-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Notification System */
.gs-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--gs-crd-bg);
  border: 1px solid var(--gs-crd-bdr);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd-hvr);
  padding: 1rem 1.5rem;
  color: var(--gs-fg);
  font-size: 0.875rem;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(8px);
  max-width: 400px;
}

.gs-notification.show {
  transform: translateX(0);
}

.gs-notification.success {
  border-left: 4px solid #10b981;
}

.gs-notification.error {
  border-left: 4px solid #ef4444;
}

.gs-notification.info {
  border-left: 4px solid #3b82f6;
}

.gs-notification.warning {
  border-left: 4px solid #f59e0b;
}

/* Loading Spinner */
.gs-loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gs-sec-bdr);
  border-radius: 50%;
  border-top-color: var(--gs-prim);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.gs-loading-text {
  color: var(--gs-txt-mut);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Progress Bar */
.gs-progress-container {
  width: 100%;
  background: var(--gs-sec);
  border-radius: 1rem;
  overflow: hidden;
  height: 8px;
}

.gs-progress-bar {
  height: 100%;
  background: var(--gs-prim-grd);
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gs-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Tooltip System */
.gs-tooltip {
  position: relative;
  display: inline-block;
}

.gs-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gs-crd-bg);
  color: var(--gs-fg);
  padding: 0.5rem 0.75rem;
  border-radius: var(--gs-rad);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid var(--gs-crd-bdr);
  backdrop-filter: blur(8px);
}

.gs-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Search System */
.gs-search-container {
  position: relative;
  width: 100%;
}

.gs-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.gs-search-input:focus {
  outline: none;
  border-color: var(--gs-prim);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.gs-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gs-txt-mut);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.gs-search-container:focus-within .gs-search-icon {
  color: var(--gs-prim);
}

.gs-clear-search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gs-txt-mut);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.gs-clear-search-btn:hover {
  color: var(--gs-fg);
  background: var(--gs-sec-hvr);
}

/* --- END GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (part 2/4) --- */

/* --- GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (from executors.css, part 3/4) --- */

/* Grid System */
.gs-grid {
  display: grid;
  gap: 2rem;
}

.gs-grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.gs-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gs-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gs-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gs-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.gs-grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

.gs-grid-auto { grid-auto-flow: row dense; }
.gs-grid-auto-cols { grid-auto-columns: 1fr; }
.gs-grid-auto-rows { grid-auto-rows: minmax(100px, auto); }

.gs-gap-1 { gap: 0.25rem; }
.gs-gap-2 { gap: 0.5rem; }
.gs-gap-3 { gap: 0.75rem; }
.gs-gap-4 { gap: 1rem; }
.gs-gap-6 { gap: 1.5rem; }
.gs-gap-8 { gap: 2rem; }
.gs-gap-10 { gap: 2.5rem; }
.gs-gap-12 { gap: 3rem; }

/* Flexbox System */
.gs-flex { display: flex; }
.gs-inline-flex { display: inline-flex; }
.gs-flex-col { flex-direction: column; }
.gs-flex-row { flex-direction: row; }
.gs-flex-wrap { flex-wrap: wrap; }
.gs-flex-nowrap { flex-wrap: nowrap; }

.gs-items-start { align-items: flex-start; }
.gs-items-center { align-items: center; }
.gs-items-end { align-items: flex-end; }
.gs-items-stretch { align-items: stretch; }

.gs-justify-start { justify-content: flex-start; }
.gs-justify-center { justify-content: center; }
.gs-justify-end { justify-content: flex-end; }
.gs-justify-between { justify-content: space-between; }
.gs-justify-around { justify-content: space-around; }
.gs-justify-evenly { justify-content: space-evenly; }

.gs-flex-1 { flex: 1 1 0%; }
.gs-flex-auto { flex: 1 1 auto; }
.gs-flex-initial { flex: 0 1 auto; }
.gs-flex-none { flex: none; }

/* Spacing System */
.gs-p-0 { padding: 0; }
.gs-p-1 { padding: 0.25rem; }
.gs-p-2 { padding: 0.5rem; }
.gs-p-3 { padding: 0.75rem; }
.gs-p-4 { padding: 1rem; }
.gs-p-5 { padding: 1.25rem; }
.gs-p-6 { padding: 1.5rem; }
.gs-p-8 { padding: 2rem; }
.gs-p-10 { padding: 2.5rem; }
.gs-p-12 { padding: 3rem; }

.gs-px-0 { padding-left: 0; padding-right: 0; }
.gs-px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.gs-px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.gs-px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.gs-px-4 { padding-left: 1rem; padding-right: 1rem; }
.gs-px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.gs-px-8 { padding-left: 2rem; padding-right: 2rem; }

.gs-py-0 { padding-top: 0; padding-bottom: 0; }
.gs-py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.gs-py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.gs-py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.gs-py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.gs-py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.gs-py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.gs-m-0 { margin: 0; }
.gs-m-1 { margin: 0.25rem; }
.gs-m-2 { margin: 0.5rem; }
.gs-m-3 { margin: 0.75rem; }
.gs-m-4 { margin: 1rem; }
.gs-m-6 { margin: 1.5rem; }
.gs-m-8 { margin: 2rem; }
.gs-m-10 { margin: 2.5rem; }
.gs-m-12 { margin: 3rem; }

.gs-mx-0 { margin-left: 0; margin-right: 0; }
.gs-mx-auto { margin-left: auto; margin-right: auto; }
.gs-mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.gs-mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.gs-mx-4 { margin-left: 1rem; margin-right: 1rem; }
.gs-mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }

.gs-my-0 { margin-top: 0; margin-bottom: 0; }
.gs-my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.gs-my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.gs-my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.gs-my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.gs-my-8 { margin-top: 2rem; margin-bottom: 2rem; }

/* Width and Height */
.gs-w-full { width: 100%; }
.gs-w-auto { width: auto; }
.gs-w-fit { width: fit-content; }
.gs-w-max { width: max-content; }
.gs-w-min { width: min-content; }

.gs-h-full { height: 100%; }
.gs-h-auto { height: auto; }
.gs-h-fit { height: fit-content; }
.gs-h-screen { height: 100vh; }
.gs-min-h-screen { min-height: 100vh; }

/* List View System */
.gs-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gs-list-item {
  background: var(--gs-crd-bg);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd);
  border: 1px solid var(--gs-crd-bdr);
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.gs-list-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--gs-shd-hvr);
  border-color: var(--gs-prim);
}

.gs-list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gs-prim-grd);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gs-list-item-accent {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--gs-prim-grd);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gs-list-item:hover .gs-list-item-accent {
  opacity: 1;
}

.gs-list-item-content {
  margin-left: 1rem;
}

.gs-list-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.gs-list-item-main-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.gs-list-item-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.gs-list-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gs-fg);
  margin: 0;
}

.gs-list-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gs-txt-mut);
}

.gs-list-item-details {
  margin-bottom: 1rem;
}

.gs-list-item-desc-container {
  max-height: 3rem;
  overflow: hidden;
  position: relative;
}

.gs-list-item-desc {
  color: var(--gs-txt-mut);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.gs-list-item-platforms {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gs-list-item-platform {
  padding: 0.25rem 0.75rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gs-fg);
  transition: all 0.3s ease;
}

.gs-list-item-platform:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-list-item-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gs-list-item-feat-section {
  flex: 1;
  min-width: 200px;
}

.gs-list-item-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gs-list-item-feat-item {
  font-size: 0.875rem;
  color: var(--gs-txt-mut);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-list-item-feat-item::before {
  content: '✓';
  color: var(--gs-prim);
  font-weight: bold;
}

.gs-list-item-feat-more {
  font-size: 0.75rem;
  color: var(--gs-prim);
  cursor: pointer;
  margin-top: 0.5rem;
}

.gs-list-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gs-crd-bdr);
}

.gs-list-item-editor {
  font-size: 0.875rem;
  color: var(--gs-txt-mut);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-list-item-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gs-list-item-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gs-fg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gs-list-item-price:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-list-item-price.free {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.gs-list-item-price-value {
  font-weight: 700;
}

.gs-list-item-price-period {
  font-size: 0.75rem;
  opacity: 0.8;
}

.gs-list-item-buttons {
  display: flex;
  gap: 0.5rem;
}

.gs-list-item-btn {
  padding: 0.5rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-list-item-btn:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-list-item-btn i {
  font-size: 1rem;
}

/* Pagination System */
.gs-pagination-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--gs-crd-bg);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd);
  border: 1px solid var(--gs-crd-bdr);
  margin-top: 2rem;
  backdrop-filter: blur(8px);
}

.gs-pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-pagination-btn {
  padding: 0.5rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-pagination-btn:hover:not(:disabled) {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.gs-pagination-btn i {
  font-size: 1rem;
}

.gs-page-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gs-page-number {
  padding: 0.5rem 0.75rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 2.5rem;
  text-align: center;
}

.gs-page-number:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-page-number.active {
  background: var(--gs-prim);
  border-color: var(--gs-prim);
  color: white;
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.gs-page-ellipsis {
  padding: 0.5rem 0.75rem;
  color: var(--gs-txt-mut);
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 2.5rem;
  text-align: center;
}

.gs-pagination-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gs-txt-mut);
}

.gs-page-info {
  font-weight: 500;
}

/* No Results State */
.gs-no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gs-crd-bg);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd);
  border: 1px solid var(--gs-crd-bdr);
  backdrop-filter: blur(8px);
}

.gs-no-results-icon {
  font-size: 4rem;
  color: var(--gs-txt-mut);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.gs-no-results-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gs-fg);
  margin-bottom: 0.5rem;
}

.gs-no-results-desc {
  color: var(--gs-txt-mut);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.gs-reset-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gs-prim-grd);
  color: white;
  border: none;
  border-radius: var(--gs-rad);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gs-reset-all-btn::after {
  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.5s ease;
}

.gs-reset-all-btn:hover::after {
  left: 100%;
}

.gs-reset-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
}

/* View Tabs System */
.gs-view-tabs {
  margin-bottom: 2rem;
}

.gs-tabs-list {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gs-crd-bdr);
  padding-bottom: 0.5rem;
}

.gs-tab-trigger {
  padding: 0.75rem 1.5rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad) var(--gs-rad) 0 0;
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.gs-tab-trigger.active {
  background: var(--gs-prim);
  border-color: var(--gs-prim);
  color: white;
  border-bottom-color: var(--gs-prim);
}

.gs-tab-content {
  display: none;
}

.gs-tab-content.active {
  display: block;
}

/* Stats Row */
.gs-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gs-stats-text {
  background: var(--gs-crd-bg);
  border-radius: var(--gs-rad);
  box-shadow: var(--gs-shd);
  border: 1px solid var(--gs-crd-bdr);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.gs-stats-text:hover {
  transform: translateY(-2px);
  box-shadow: var(--gs-shd-hvr);
  border-color: var(--gs-prim);
}

.gs-filtered-count {
  font-size: 0.875rem;
  color: var(--gs-txt-mut);
  margin-bottom: 1rem;
  text-align: center;
}

/* --- END GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (part 3/4) --- */

/* --- GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (from executors.css, part 4/4) --- */

/* Responsive Design System */
@media (max-width: 1600px) {
  .gs-main-layout {
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 1400px) {
  .gs-main-layout {
    grid-template-columns: 260px 1fr;
    gap: 1rem;
  }
  
  .gs-left-sidebar {
    top: 1rem;
  }
}

@media (max-width: 1200px) {
  .gs-main-layout {
    grid-template-columns: 240px 1fr;
  }
  
  .gs-grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
  .gs-grid-cols-5 { grid-template-columns: repeat(3, 1fr); }
  .gs-grid-cols-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .gs-main-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gs-left-sidebar {
    position: static;
    order: 2;
  }
  
  .gs-content-area {
    order: 1;
  }
  
  .gs-grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .gs-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .gs-grid-cols-5 { grid-template-columns: repeat(2, 1fr); }
  .gs-grid-cols-6 { grid-template-columns: repeat(2, 1fr); }
  
  .gs-hero-card {
    padding: 2rem;
  }
  
  .gs-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .gs-container {
    padding: 0 0.75rem;
  }
  
  .gs-grid-cols-2 { grid-template-columns: 1fr; }
  .gs-grid-cols-3 { grid-template-columns: 1fr; }
  .gs-grid-cols-4 { grid-template-columns: 1fr; }
  .gs-grid-cols-5 { grid-template-columns: 1fr; }
  .gs-grid-cols-6 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gs-container {
    padding: 0 0.5rem;
  }
  
  .gs-hero-title {
    font-size: 1.75rem;
  }
  
  .gs-hero-description {
    font-size: 1rem;
  }
  
  .gs-hero-card {
    padding: 1.5rem;
  }
  
  .gs-card {
    padding: 1rem;
  }
  
  .gs-list-item {
    padding: 1rem;
  }
  
  .gs-list-item-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .gs-list-item-feat-section {
    min-width: auto;
  }
  
  .gs-list-item-actions {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
  
  .gs-list-item-buttons {
    justify-content: center;
  }
  
  .gs-pagination-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .gs-pagination-controls {
    justify-content: center;
  }
  
  .gs-page-numbers {
    justify-content: center;
  }
  
  .gs-tabs-list {
    flex-wrap: wrap;
  }
  
  .gs-tab-trigger {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
  
  .gs-stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gs-price-buttons {
    justify-content: center;
  }
  
  .gs-modal {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
  
  .gs-modal-header,
  .gs-modal-content,
  .gs-modal-footer {
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .gs-container {
    padding: 0 0.25rem;
  }
  
  .gs-hero-card {
    padding: 1rem;
  }
  
  .gs-hero-title {
    font-size: 1.5rem;
  }
  
  .gs-card {
    padding: 0.75rem;
  }
  
  .gs-list-item {
    padding: 0.75rem;
  }
  
  .gs-list-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .gs-list-item-main-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .gs-list-item-badges {
    align-self: flex-start;
  }
  
  .gs-list-item-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .gs-list-item-actions {
    justify-content: space-between;
  }
  
  .gs-pagination-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .gs-page-number {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    min-width: 2rem;
  }
  
  .gs-tab-trigger {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .gs-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .gs-btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .gs-form-input,
  .gs-form-select,
  .gs-search-input {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .gs-search-input {
    padding-left: 2rem;
  }
  
  .gs-search-icon {
    left: 0.5rem;
    font-size: 0.875rem;
  }
  
  .gs-clear-search-btn {
    right: 0.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .gs-hero-card {
    padding: 0.75rem;
  }
  
  .gs-hero-title {
    font-size: 1.25rem;
  }
  
  .gs-hero-description {
    font-size: 0.875rem;
  }
  
  .gs-card {
    padding: 0.5rem;
  }
  
  .gs-list-item {
    padding: 0.5rem;
  }
  
  .gs-list-item-title {
    font-size: 1rem;
  }
  
  .gs-list-item-desc {
    font-size: 0.75rem;
  }
  
  .gs-list-item-platform {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }
  
  .gs-list-item-feat-item {
    font-size: 0.75rem;
  }
  
  .gs-pagination-controls {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .gs-pagination-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
  }
  
  .gs-page-numbers {
    gap: 0.125rem;
  }
  
  .gs-page-number {
    padding: 0.25rem 0.375rem;
    font-size: 0.625rem;
    min-width: 1.75rem;
  }
  
  .gs-tabs-list {
    gap: 0.25rem;
  }
  
  .gs-tab-trigger {
    padding: 0.375rem 0.75rem;
    font-size: 0.625rem;
    min-width: 100px;
  }
  
  .gs-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.625rem;
  }
  
  .gs-btn-icon {
    min-width: 2rem;
    height: 2rem;
  }
  
  .gs-btn-icon i {
    font-size: 0.875rem;
  }
  
  .gs-form-input,
  .gs-form-select,
  .gs-search-input {
    padding: 0.375rem 0.5rem;
    font-size: 0.625rem;
  }
  
  .gs-search-input {
    padding-left: 1.75rem;
  }
  
  .gs-search-icon {
    left: 0.375rem;
    font-size: 0.75rem;
  }
  
  .gs-clear-search-btn {
    right: 0.375rem;
    font-size: 0.75rem;
  }
  
  .gs-modal {
    margin: 0.5rem;
    max-width: calc(100vw - 1rem);
  }
  
  .gs-modal-header,
  .gs-modal-content,
  .gs-modal-footer {
    padding: 0.75rem;
  }
  
  .gs-modal-title {
    font-size: 1rem;
  }
  
  .gs-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    transform: translateY(-100%);
  }
  
  .gs-notification.show {
    transform: translateY(0);
  }
}

/* Mobile-Specific Components */
.gs-mobile-filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gs-mobile-filter-drawer.open {
  opacity: 1;
  visibility: visible;
}

.gs-mobile-filter-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.gs-mobile-filter-drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: var(--gs-crd-bg);
  border-right: 1px solid var(--gs-crd-bdr);
  backdrop-filter: blur(8px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.gs-mobile-filter-drawer.open .gs-mobile-filter-drawer-content {
  transform: translateX(0);
}

.gs-mobile-filter-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gs-crd-bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gs-mobile-filter-drawer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gs-fg);
}

.gs-mobile-filter-drawer-close {
  background: none;
  border: none;
  color: var(--gs-txt-mut);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.gs-mobile-filter-drawer-close:hover {
  color: var(--gs-fg);
  background: var(--gs-sec-hvr);
}

.gs-mobile-filter-drawer-body {
  padding: 1.5rem;
}

.gs-mobile-filter-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gs-crd-bdr);
  display: flex;
  gap: 1rem;
}

.gs-mobile-reset-filters-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gs-mobile-reset-filters-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s ease;
}

.gs-mobile-reset-filters-btn:hover::after {
  left: 100%;
}

.gs-mobile-reset-filters-btn:hover {
  background: var(--gs-sec-hvr);
  border-color: var(--gs-sec-hvr-bdr);
  transform: translateY(-1px);
}

.gs-apply-filters-btn {
  flex: 2;
  padding: 0.75rem 1rem;
  background: var(--gs-prim-grd);
  color: white;
  border: none;
  border-radius: var(--gs-rad);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gs-apply-filters-btn::after {
  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.3s ease;
}

.gs-apply-filters-btn:hover::after {
  left: 100%;
}

.gs-apply-filters-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.3);
}

/* Mobile Platform Grid */
.gs-mobile-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gs-mobile-platform-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-mobile-platform-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.gs-mobile-platform-checkbox label {
  flex: 1;
  padding: 0.75rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.gs-mobile-platform-checkbox input:checked + label {
  background: var(--gs-prim);
  border-color: var(--gs-prim);
  color: white;
}

/* Mobile Price Buttons */
.gs-mobile-price-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gs-mobile-price-btn {
  padding: 0.75rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.gs-mobile-price-btn.active {
  background: var(--gs-prim);
  border-color: var(--gs-prim);
  color: white;
}

/* Mobile Sort Select */
.gs-mobile-sort-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gs-sec);
  border: 1px solid var(--gs-sec-bdr);
  border-radius: var(--gs-rad);
  color: var(--gs-fg);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.gs-mobile-sort-select:focus {
  outline: none;
  border-color: var(--gs-prim);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

/* Advanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Animation Classes */
.gs-animate-fade-in-up { animation: fadeInUp 0.6s ease-out; }
.gs-animate-fade-in-down { animation: fadeInDown 0.6s ease-out; }
.gs-animate-fade-in-left { animation: fadeInLeft 0.6s ease-out; }
.gs-animate-fade-in-right { animation: fadeInRight 0.6s ease-out; }
.gs-animate-scale-in { animation: scaleIn 0.6s ease-out; }
.gs-animate-slide-in-up { animation: slideInUp 0.6s ease-out; }
.gs-animate-slide-in-down { animation: slideInDown 0.6s ease-out; }
.gs-animate-slide-in-left { animation: slideInLeft 0.6s ease-out; }
.gs-animate-slide-in-right { animation: slideInRight 0.6s ease-out; }

/* Stagger Animation Delays */
.gs-stagger-1 { animation-delay: 0.1s; }
.gs-stagger-2 { animation-delay: 0.2s; }
.gs-stagger-3 { animation-delay: 0.3s; }
.gs-stagger-4 { animation-delay: 0.4s; }
.gs-stagger-5 { animation-delay: 0.5s; }

/* Loading States */
.gs-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gs-loading-overlay.show {
  opacity: 1;
  visibility: visible;
}

.gs-loading-content {
  text-align: center;
  color: var(--gs-fg);
}

.gs-loading-spinner-large {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gs-sec-bdr);
  border-radius: 50%;
  border-top-color: var(--gs-prim);
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto 1rem;
}

.gs-loading-text-large {
  font-size: 1rem;
  font-weight: 500;
}

/* Skeleton Loading */
.gs-skeleton {
  background: linear-gradient(90deg, var(--gs-sec) 25%, var(--gs-sec-bdr) 50%, var(--gs-sec) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--gs-rad);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gs-skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.gs-skeleton-text:last-child {
  margin-bottom: 0;
}

.gs-skeleton-text.short {
  width: 60%;
}

.gs-skeleton-text.medium {
  width: 80%;
}

.gs-skeleton-text.long {
  width: 100%;
}

.gs-skeleton-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.gs-skeleton-button {
  height: 2.5rem;
  width: 8rem;
}

.gs-skeleton-card {
  height: 200px;
}

/* Final Utility Classes */
.gs-text-xs { font-size: 0.75rem; }
.gs-text-sm { font-size: 0.875rem; }
.gs-text-base { font-size: 1rem; }
.gs-text-lg { font-size: 1.125rem; }
.gs-text-xl { font-size: 1.25rem; }
.gs-text-2xl { font-size: 1.5rem; }
.gs-text-3xl { font-size: 1.875rem; }
.gs-text-4xl { font-size: 2.25rem; }

.gs-font-light { font-weight: 300; }
.gs-font-normal { font-weight: 400; }
.gs-font-medium { font-weight: 500; }
.gs-font-semibold { font-weight: 600; }
.gs-font-bold { font-weight: 700; }
.gs-font-extrabold { font-weight: 800; }

.gs-text-left { text-align: left; }
.gs-text-center { text-align: center; }
.gs-text-right { text-align: right; }
.gs-text-justify { text-align: justify; }

.gs-uppercase { text-transform: uppercase; }
.gs-lowercase { text-transform: lowercase; }
.gs-capitalize { text-transform: capitalize; }

.gs-tracking-tight { letter-spacing: -0.025em; }
.gs-tracking-normal { letter-spacing: 0; }
.gs-tracking-wide { letter-spacing: 0.025em; }
.gs-tracking-wider { letter-spacing: 0.05em; }
.gs-tracking-widest { letter-spacing: 0.1em; }

.gs-leading-none { line-height: 1; }
.gs-leading-tight { line-height: 1.25; }
.gs-leading-snug { line-height: 1.375; }
.gs-leading-normal { line-height: 1.5; }
.gs-leading-relaxed { line-height: 1.625; }
.gs-leading-loose { line-height: 2; }

.gs-whitespace-normal { white-space: normal; }
.gs-whitespace-nowrap { white-space: nowrap; }
.gs-whitespace-pre { white-space: pre; }
.gs-whitespace-pre-line { white-space: pre-line; }
.gs-whitespace-pre-wrap { white-space: pre-wrap; }

.gs-break-normal { word-break: normal; }
.gs-break-words { word-break: break-word; }
.gs-break-all { word-break: break-all; }

.gs-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gs-overflow-ellipsis {
  text-overflow: ellipsis;
}

.gs-cursor-pointer { cursor: pointer; }
.gs-cursor-default { cursor: default; }
.gs-cursor-not-allowed { cursor: not-allowed; }
.gs-cursor-wait { cursor: wait; }
.gs-cursor-text { cursor: text; }
.gs-cursor-move { cursor: move; }
.gs-cursor-help { cursor: help; }

.gs-select-none { user-select: none; }
.gs-select-text { user-select: text; }
.gs-select-all { user-select: all; }
.gs-select-auto { user-select: auto; }

.gs-resize-none { resize: none; }
.gs-resize-y { resize: vertical; }
.gs-resize-x { resize: horizontal; }
.gs-resize { resize: both; }

.gs-shadow-none { box-shadow: none; }
.gs-shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.gs-shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.gs-shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.gs-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.gs-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.gs-shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.gs-opacity-0 { opacity: 0; }
.gs-opacity-25 { opacity: 0.25; }
.gs-opacity-50 { opacity: 0.5; }
.gs-opacity-75 { opacity: 0.75; }
.gs-opacity-100 { opacity: 1; }

.gs-blur-none { filter: blur(0); }
.gs-blur-sm { filter: blur(4px); }
.gs-blur { filter: blur(8px); }
.gs-blur-md { filter: blur(12px); }
.gs-blur-lg { filter: blur(16px); }
.gs-blur-xl { filter: blur(24px); }
.gs-blur-2xl { filter: blur(40px); }
.gs-blur-3xl { filter: blur(64px); }

.gs-brightness-0 { filter: brightness(0); }
.gs-brightness-50 { filter: brightness(0.5); }
.gs-brightness-75 { filter: brightness(0.75); }
.gs-brightness-90 { filter: brightness(0.9); }
.gs-brightness-95 { filter: brightness(0.95); }
.gs-brightness-100 { filter: brightness(1); }
.gs-brightness-105 { filter: brightness(1.05); }
.gs-brightness-110 { filter: brightness(1.1); }
.gs-brightness-125 { filter: brightness(1.25); }
.gs-brightness-150 { filter: brightness(1.5); }
.gs-brightness-200 { filter: brightness(2); }

.gs-contrast-0 { filter: contrast(0); }
.gs-contrast-50 { filter: contrast(0.5); }
.gs-contrast-75 { filter: contrast(0.75); }
.gs-contrast-100 { filter: contrast(1); }
.gs-contrast-125 { filter: contrast(1.25); }
.gs-contrast-150 { filter: contrast(1.5); }
.gs-contrast-200 { filter: contrast(2); }

.gs-grayscale { filter: grayscale(100%); }
.gs-grayscale-0 { filter: grayscale(0); }

.gs-invert { filter: invert(100%); }
.gs-invert-0 { filter: invert(0); }

.gs-sepia { filter: sepia(100%); }
.gs-sepia-0 { filter: sepia(0); }

.gs-hue-rotate-0 { filter: hue-rotate(0deg); }
.gs-hue-rotate-15 { filter: hue-rotate(15deg); }
.gs-hue-rotate-30 { filter: hue-rotate(30deg); }
.gs-hue-rotate-60 { filter: hue-rotate(60deg); }
.gs-hue-rotate-90 { filter: hue-rotate(90deg); }
.gs-hue-rotate-180 { filter: hue-rotate(180deg); }

.gs-saturate-0 { filter: saturate(0); }
.gs-saturate-50 { filter: saturate(0.5); }
.gs-saturate-100 { filter: saturate(1); }
.gs-saturate-150 { filter: saturate(1.5); }
.gs-saturate-200 { filter: saturate(2); }

/* --- END GUARDSCRIPTS COMPREHENSIVE UI SYSTEM (part 4/4) --- */

/* --- Executes Section Styles (from executes.html) --- */
.executes-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.panel {
  background: transparent !important;
  border-radius: 18px;
  box-shadow: 0 2px 24px #0006;
  padding: 18px 18px 14px 18px;
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 100%;
  border: 1.5px solid #23252b;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
  position: relative;
  overflow: visible;
  animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) both;
  backdrop-filter: blur(10px) saturate(1.1);
  cursor: grab;
}
.panel:active { cursor: grabbing; }
.panel-title {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.panel-refresh {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 1.5px solid #23252b;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  outline: none;
  margin-left: 8px;
  box-shadow: 0 1px 8px #0008;
  padding: 0;
}
.panel-refresh:hover, .panel-refresh:focus {
  background: #23252b;
  color: #259cd4;
  border-color: #259cd4;
  box-shadow: 0 4px 24px #259cd4cc;
}
.panel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.toggle-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}
.toggle-switch input[type="checkbox"] {
  accent-color: #259cd4;
  width: 18px;
  height: 18px;
}
.amount-input {
  width: 60px;
  border-radius: 6px;
  border: 1px solid #23252b;
  background: #23252b;
  color: #fff;
  padding: 2px 8px;
  font-size: 1em;
  margin-left: 4px;
}
.loading-spinner {
  margin: 32px auto;
  border: 4px solid #23252b;
  border-top: 4px solid #259cd4;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
  display: block;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.error-message { color: #ff6b6b; margin: 16px 0; text-align: center; }
.executes-list, .top-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.execute-row, .top-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(32,34,42,0.92);
  border-radius: 10px;
  padding: 8px 12px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  border: 1px solid #23252b;
  animation: fadeInUp 0.5s cubic-bezier(.23,1.01,.32,1) both;
  position: relative;
  cursor: grab;
  user-select: none;
  box-shadow: 0 1px 8px #0002;
}
.execute-row:active, .top-row:active { cursor: grabbing; }
.execute-row:hover, .top-row:hover {
  background: #23252b;
  transform: scale(1.01) translateY(-2px);
  box-shadow: 0 4px 24px #259cd4aa;
  z-index: 2;
}
.drag-handle {
  cursor: grab;
  font-size: 1.2em;
  color: #259cd4;
  margin-right: 8px;
  user-select: none;
  transition: color 0.18s;
}
.execute-row:active .drag-handle { color: #fff; }
.roblox-headshot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #23252b;
  object-fit: cover;
  border: 2px solid #23252b;
  flex-shrink: 0;
  transition: box-shadow 0.18s;
}
.execute-info, .top-info { flex: 1; min-width: 0; }
.execute-user, .top-user {
  font-weight: 500;
  font-size: 1.05em;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.execute-meta, .top-meta {
  font-size: 0.93em;
  color: #aaa;
  margin-top: 2px;
}
.execute-script {
  font-size: 0.93em;
  color: #259cd4;
  margin-top: 2px;
  word-break: break-all;
}
.pagination {
  margin: 14px 0;
  display: flex;
  gap: 6px;
  justify-content: center;
}
.pagination button {
  background: #23252b;
  color: #fff;
  border: 1px solid #23252b;
  border-radius: 5px;
  padding: 3px 10px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.18s, color 0.18s;
}
.pagination button.active {
  background: #259cd4;
  color: #fff;
  font-weight: bold;
}
.empty-message {
  color: #aaa;
  text-align: center;
  margin: 18px 0;
}
.save-layout-btn, .reset-layout-btn {
  background: #23252b;
  color: #fff;
  border: 1px solid #259cd4;
  border-radius: 7px;
  padding: 6px 18px;
  margin: 0 8px 16px 0;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 8px #259cd4aa;
}
.save-layout-btn:hover, .reset-layout-btn:hover {
  background: #259cd4;
  color: #fff;
  box-shadow: 0 4px 24px #259cd4cc;
}
@media (max-width: 900px) {
  .executes-container { flex-direction: column; gap: 18px; padding: 30px 6px 30px 6px; }
  .panel { min-width: 0; }
  .stats-row { flex-direction: column; gap: 16px; }
}
/* --- shadcn-inspired --- */
.shadcn-surface, .panel, .stat-card, .execute-row, .top-row, .top-list, .executes-list {
  background: transparent !important;
  border-radius: 18px;
  box-shadow: 0 2px 24px #000a, 0 1.5px 0 #23252b;
  border: 1.5px solid #23252b;
  backdrop-filter: blur(22px) saturate(1.2);
  transition: box-shadow 0.18s, background 0.18s, border 0.18s, transform 0.18s;
}
.panel, .stat-card {
  box-shadow: 0 2px 24px #000a, 0 1.5px 0 #23252b;
}
.execute-row, .top-row {
  box-shadow: 0 1px 8px #0004;
  cursor: default !important;
}
.top-list, .executes-list {
  background: transparent !important;
  border-radius: 18px;
  box-shadow: 0 2px 24px #000a, 0 1.5px 0 #23252b;
  border: 1.5px solid #23252b;
  backdrop-filter: blur(22px) saturate(1.2);
  padding: 8px 0;
}
.drag-handle {
  display: none !important;
}
.roblox-headshot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #23252b;
  object-fit: cover;
  border: 2px solid #23252b;
  flex-shrink: 0;
  transition: box-shadow 0.18s;
}
.execute-info, .top-info { flex: 1; min-width: 0; }
.execute-user, .top-user {
  font-weight: 500;
  font-size: 1.05em;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.execute-meta, .top-meta {
  font-size: 0.93em;
  color: #aaa;
  margin-top: 2px;
}
.execute-script {
  font-size: 0.93em;
  color: #259cd4;
  margin-top: 2px;
  word-break: break-all;
}

/* --- Script Rating Styles --- */
.script-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px 0;
}
.like-btn, .dislike-btn {
  background: #23252b;
  color: #b6c2d1;
  border: none;
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px #0002;
  outline: none;
  display: flex;
  align-items: center;
}
.like-btn:hover, .like-btn.active {
  background: #259cd4;
  color: #fff;
}
.dislike-btn:hover, .dislike-btn.active {
  background: #ff6b6b;
  color: #fff;
}
.like-count, .dislike-count {
  font-weight: 600;
  color: #b6c2d1;
  min-width: 24px;
  text-align: center;
}
.rating-bar {
  width: 90px;
  height: 12px;
  background: #23252b;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin: 0 6px;
  flex-shrink: 0;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #259cd4 60%, #ff6b6b 100%);
  border-radius: 6px 0 0 6px;
  transition: width 0.25s cubic-bezier(.23,1.01,.32,1);
}
.rating-percentage {
  font-size: 0.98em;
  color: #b6c2d1;
  margin-left: 4px;
  min-width: 36px;
  text-align: right;
}

/* --- Script Meta Row Styles --- */
.script-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.download-count, .view-count {
  color: #b6c2d1;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.game-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #181a20;
  border-radius: 6px;
  padding: 3px 10px 3px 3px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.game-link:hover {
  background: #23252b;
  color: #259cd4;
}
.game-img {
  width: 32px;
  height: 18px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 2px;
  border: 1.5px solid #23252b;
}
.discord-link, .key-link {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #23252b;
  color: #7289da;
  border-radius: 6px;
  padding: 3px 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.discord-link:hover {
  background: #5865F2;
  color: #fff;
}
.key-link {
  color: #ffb300;
}
.key-link:hover {
  background: #ffb300;
  color: #23252b;
}
.premium-badge.gold-flake {
  background: linear-gradient(90deg, #ffe066 60%, #ffd700 100%);
  color: #b8860b;
  border-radius: 7px;
  padding: 3px 12px;
  font-weight: 700;
  box-shadow: 0 2px 12px #ffd70055, 0 1.5px 0 #b8860b;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 1px 6px #fff8, 0 2px 12px #ffd70088;
  border: 1.5px solid #ffd700;
  animation: goldShine 2.5s linear infinite;
}
@keyframes goldShine {
  0% { box-shadow: 0 2px 12px #ffd70055, 0 1.5px 0 #b8860b; }
  50% { box-shadow: 0 4px 24px #ffd700cc, 0 2px 0 #ffd700; }
  100% { box-shadow: 0 2px 12px #ffd70055, 0 1.5px 0 #b8860b; }
}
.paid-badge {
  background: #23252b;
  color: #ff6b6b;
  border-radius: 7px;
  padding: 3px 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #ff6b6b;
}

/* --- Native dark scrollbar globally (Chrome/Edge/Safari/Firefox) --- */
html, body, * {
  scrollbar-width: thin;
  scrollbar-color: #444 #181818;
}
html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar {
  width: 10px;
  background: #181818;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 8px;
  border: 2px solid #181818;
}
html::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb:hover {
  background: #666;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track, *::-webkit-scrollbar-track {
  background: #181818;
}

/* Script Badges Overlay (global) */
.script-badges-overlay {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}
.script-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 3px 12px;
    box-shadow: 0 2px 8px #0006;
    background: rgba(30,30,30,0.92);
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 1px 4px #000a;
    border: 1.5px solid rgba(255,255,255,0.12);
    pointer-events: none;
    user-select: none;
}
.script-badge.premium-badge {
    background: linear-gradient(90deg, #ffe066 60%, #ffd700 100%);
    color: #b8860b;
    border: 1.5px solid #ffd700;
    text-shadow: 0 1px 6px #fff8, 0 2px 12px #ffd70088;
    animation: goldShine 2.5s linear infinite;
}
.script-badge.paid-badge {
    background: linear-gradient(90deg, #ffb347 60%, #ff9900 100%);
    color: #b86b00;
    border: 1.5px solid #ff9900;
    text-shadow: 0 1px 6px #fff8, 0 2px 12px #ff990088;
}
.script-badge.key-badge {
    background: linear-gradient(90deg, #4ecdc4 60%, #44a08d 100%);
    color: #fff;
    border: 1.5px solid #44a08d;
}
.script-badge.patched-badge {
    background: linear-gradient(90deg, #ff6b6b 60%, #ff8e8e 100%);
    color: #fff;
    border: 1.5px solid #ff6b6b;
}
.script-badge.liked-badge {
    background: linear-gradient(90deg, #22c55e 60%, #16a34a 100%);
    color: #fff;
    border: 1.5px solid #16a34a;
}
.script-badge.disliked-badge {
    background: linear-gradient(90deg, #ef4444 60%, #f87171 100%);
    color: #fff;
    border: 1.5px solid #ef4444;
}
.script-badge.guard-badge {
    background: linear-gradient(90deg, #6366f1 60%, #818cf8 100%);
    color: #fff;
    border: 1.5px solid #6366f1;
}
@keyframes goldShine {
    0% { box-shadow: 0 2px 12px #ffd70055, 0 1.5px 0 #b8860b; }
    50% { box-shadow: 0 4px 24px #ffd700cc, 0 2px 0 #ffd700; }
    100% { box-shadow: 0 2px 12px #ffd70055, 0 1.5px 0 #b8860b; }
}

/* --- UNIFIED SCRIPT CARD & BADGE STYLES --- */
.gs-card.script-card {
  background: #181c24;
  border-radius: 16px;
  box-shadow: 0 2px 16px #000a;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  margin-bottom: 24px;
}
.gs-card.script-card:hover {
  box-shadow: 0 6px 32px #000c;
  transform: translateY(-2px) scale(1.02);
}
.script-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #23272e;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
}
.script-badges-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.script-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 3px 12px;
  box-shadow: 0 2px 8px #0006;
  background: rgba(30,30,30,0.92);
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 1px 4px #000a;
  border: 1.5px solid rgba(255,255,255,0.12);
  pointer-events: none;
  user-select: none;
}
.script-badge.premium-badge {
  background: linear-gradient(90deg, #ffe066 60%, #ffd700 100%);
  color: #b8860b;
  border: 1.5px solid #ffd700;
  text-shadow: 0 1px 6px #fff8, 0 2px 12px #ffd70088;
  animation: goldShine 2.5s linear infinite;
}
.script-badge.paid-badge {
  background: linear-gradient(90deg, #fbbf24 60%, #f59e42 100%);
  color: #fff;
  border: 1.5px solid #f59e42;
}
.script-badge.key-badge {
  background: linear-gradient(90deg, #4ecdc4 60%, #44a08d 100%);
  color: #fff;
  border: 1.5px solid #44a08d;
}
.script-badge.patched-badge {
  background: linear-gradient(90deg, #ff6b6b 60%, #ff8e8e 100%);
  color: #fff;
  border: 1.5px solid #ff6b6b;
}
.script-badge.liked-badge {
  background: linear-gradient(90deg, #22c55e 60%, #16a34a 100%);
  color: #fff;
  border: 1.5px solid #16a34a;
}
.script-badge.disliked-badge {
  background: linear-gradient(90deg, #ef4444 60%, #f87171 100%);
  color: #fff;
  border: 1.5px solid #ef4444;
}
.script-badge.guard-badge {
  background: linear-gradient(90deg, #6366f1 60%, #818cf8 100%);
  color: #fff;
  border: 1.5px solid #6366f1;
}
@keyframes goldShine {
  0% { box-shadow: 0 2px 12px #ffd70055, 0 1.5px 0 #b8860b; }
  50% { box-shadow: 0 4px 24px #ffd700cc, 0 2px 0 #ffd700; }
  100% { box-shadow: 0 2px 12px #ffd70055, 0 1.5px 0 #b8860b; }
}
.script-info {
  padding: 18px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.script-meta {
  display: flex;
  gap: 16px;
  font-size: 0.98rem;
  color: #b0b0b0;
  align-items: center;
}
.game-author {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
}
/* --- END UNIFIED SCRIPT CARD & BADGE STYLES --- */

/* --- UNIFIED SCRIPT CARD & BADGE STYLES --- */
.games-grid, .scripts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
  margin: 0 auto 32px auto;
  width: 100%;
  max-width: 1400px;
  padding: 0;
}

/* Responsive breakpoints for script grids */
@media (max-width: 1400px) {
  .games-grid, .scripts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
  }
}

@media (max-width: 1100px) {
  .games-grid, .scripts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 18px;
  }
}

@media (max-width: 768px) {
  .games-grid, .scripts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .games-grid, .scripts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 12px;
  }
}


/* --- UNIFIED SCRIPT CARD & BADGE STYLES --- */
/* Script Page Container - Matching scripts.html exactly */
.scripts-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px 50px 80px;
}

.game-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  min-height: 100vh;
}

/* Page title and description styles from scripts.html */
.page-title {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 0px;
  font-size: 1.1rem;
}
