/* ==========================================================================
   GoatScape - Devil Goat Theme - Hellfire Edition
   Dark, menacing, hellfire aesthetic - Red, Black & Gold
   ========================================================================== */

/* ---------- CSS Variables / Theme ---------- */
:root {
    /* Primary palette - hellfire & brimstone */
    --gs-primary:      #DC2626;
    --gs-primary-rgb:  220, 38, 38;
    --gs-secondary:    #FFD700;
    --gs-secondary-rgb: 255, 215, 0;
    --gs-accent:       #F97316;
    --gs-accent-rgb:   249, 115, 22;
    --gs-success:      #22C55E;
    --gs-warning:      #EAB308;
    --gs-danger:       #EF4444;
    --gs-gold:         #FFD700;

    /* Gradients */
    --gs-gradient:       linear-gradient(135deg, var(--gs-primary), var(--gs-secondary));
    --gs-gradient-accent: linear-gradient(135deg, var(--gs-accent), var(--gs-primary));
    --gs-gradient-gold:  linear-gradient(135deg, #FFD700, #FFA502);

    /* Neutrals - deep abyss blacks */
    --gs-bg:          #0A0A0A;
    --gs-bg-light:    #1A0A0A;
    --gs-bg-card:     #1A1010;
    --gs-border:      #2A1515;
    --gs-text:        #F0E6E6;
    --gs-text-muted:  #8B7575;
    --gs-white:       #FFFFFF;

    /* Typography */
    --gs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --gs-font-display: 'Cinzel', Georgia, serif;

    /* Spacing */
    --gs-radius:    12px;
    --gs-radius-sm: 8px;
    --gs-radius-lg: 20px;

    /* Shadows */
    --gs-shadow:    0 4px 20px rgba(0, 0, 0, 0.4);
    --gs-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --gs-glow:      0 0 20px rgba(var(--gs-primary-rgb), 0.3);
    --gs-glow-accent: 0 0 20px rgba(var(--gs-accent-rgb), 0.3);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gs-font);
    background: var(--gs-bg);
    color: var(--gs-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Page-wide ambient hellfire glow - always visible behind content */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 90%, rgba(185, 28, 28, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--gs-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--gs-primary); }

img { max-width: 100%; height: auto; }

::selection {
    background: rgba(var(--gs-primary-rgb), 0.4);
    color: var(--gs-white);
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gs-bg); }
::-webkit-scrollbar-thumb {
    background: var(--gs-gradient);
    border-radius: 4px;
}

/* Z-index stacking order (root stacking context):
   body::before (ambient glow)          = 0
   hero image (.gs-hero__image)         = 1
   particles / words (pointer-events:none) = 2  (float over images/bg but click-through)
   hero content / sections / cards      = 3  (text & interactive elements on top)
   footer                               = 4
   nav                                  = 1000
   NOTE: main has NO z-index so it doesn't create a stacking context.
         Each child competes in the root stacking context individually.
*/
main {
    position: relative;
}
.gs-footer {
    position: relative;
    z-index: 4;
}

/* ---------- Container ---------- */
.gs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gs-container--sm { max-width: 600px; }
.gs-container--md { max-width: 900px; }

/* ==========================================================================
   NAVIGATION - Glass morphism + animated underlines
   ========================================================================== */
.gs-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.15);
    transition: all 0.3s ease;
}
.gs-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.gs-nav .gs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

.gs-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gs-white);
    text-decoration: none;
    transition: transform 0.3s ease;
}
.gs-nav__logo:hover {
    transform: scale(1.05);
    color: var(--gs-white);
}
.gs-nav__logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(var(--gs-primary-rgb), 0.5));
}

.gs-nav__menu {
    display: flex;
    list-style: none;
    gap: 4px;
}
.gs-nav__menu li { position: relative; }
.gs-nav__menu a {
    display: block;
    padding: 8px 16px;
    border-radius: var(--gs-radius-sm);
    color: var(--gs-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}
.gs-nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gs-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.gs-nav__menu a:hover,
.gs-nav__menu a.active {
    color: var(--gs-white);
}
.gs-nav__menu a:hover::after,
.gs-nav__menu a.active::after {
    width: 60%;
}

.gs-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gs-nav__players {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gs-text-muted);
    padding: 6px 14px;
    background: rgba(var(--gs-primary-rgb), 0.1);
    border-radius: 20px;
    border: 1px solid rgba(var(--gs-primary-rgb), 0.2);
}
.gs-pulse {
    color: var(--gs-success);
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

.gs-nav__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gs-text);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}
.gs-nav__toggle:hover { transform: scale(1.1); }

/* Body padding for fixed nav */
body { padding-top: 70px; }

/* ==========================================================================
   BUTTONS - Glow effects + lift animations
   ========================================================================== */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--gs-radius-sm);
    font-family: var(--gs-font);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.gs-btn::before {
    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.5s ease;
}
.gs-btn:hover::before { left: 100%; }

.gs-btn--primary {
    background: var(--gs-gradient);
    color: var(--gs-white);
    box-shadow: var(--gs-glow);
}
.gs-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(var(--gs-primary-rgb), 0.5);
    color: var(--gs-white);
}

.gs-btn--accent {
    background: var(--gs-gradient-accent);
    color: var(--gs-white);
    box-shadow: var(--gs-glow-accent);
}
.gs-btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(var(--gs-accent-rgb), 0.5);
    color: var(--gs-white);
}

.gs-btn--ghost {
    background: transparent;
    color: var(--gs-text);
    border: 1px solid var(--gs-border);
}
.gs-btn--ghost:hover {
    border-color: var(--gs-primary);
    color: var(--gs-white);
    background: rgba(var(--gs-primary-rgb), 0.1);
}

.gs-btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.gs-btn--lg { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--gs-radius); }
.gs-btn--full { width: 100%; }
.gs-btn--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--gs-border);
    color: var(--gs-text-muted);
}

/* ==========================================================================
   GLASS CARD - Frosted glass effect
   ========================================================================== */
.gs-glass {
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius);
}

/* ==========================================================================
   HERO SECTION - Video background + floating particles + falling words
   ========================================================================== */
.gs-hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.gs-hero--sm {
    padding: 70px 0 40px;
}

/* Homepage hero with background image */
.gs-hero--home {
    min-height: 85vh;
}
.gs-hero--home .gs-hero__image {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
}
.gs-hero--home .gs-hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.45) 0%,
        rgba(10, 10, 10, 0.25) 40%,
        rgba(10, 10, 10, 0.5) 75%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

@media (max-width: 768px) {
    .gs-hero--home .gs-hero__image {
        background-image: url('/assets/images/hero-bg-mobile.jpg');
    }
    .gs-hero--home {
        min-height: 75vh;
    }
}

/* Video Background */
.gs-hero__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.gs-hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gs-hero__video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.6) 100%
    );
}

/* Radial glow - hero-specific extra brightness (above particles) */
.gs-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(var(--gs-primary-rgb), 0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(var(--gs-accent-rgb), 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(var(--gs-secondary-rgb), 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

/* Floating particles - page-wide (z-index 2 = above main, pointer-events:none = click-through) */
.gs-hero__particles,
.gs-page-particles {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.gs-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}
.gs-particle--red {
    background: var(--gs-primary);
    box-shadow: 0 0 10px rgba(var(--gs-primary-rgb), 0.6);
}
.gs-particle--orange {
    background: var(--gs-accent);
    box-shadow: 0 0 10px rgba(var(--gs-accent-rgb), 0.6);
}
.gs-particle--gold {
    background: var(--gs-secondary);
    box-shadow: 0 0 10px rgba(var(--gs-secondary-rgb), 0.6);
}

/* Falling words - page-wide (z-index 2 = above main, pointer-events:none = click-through) */
.gs-hero__words,
.gs-page-words {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.gs-falling-word {
    position: absolute;
    top: -50px;
    color: rgba(var(--gs-primary-rgb), 0.15);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fall-down linear infinite;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(var(--gs-primary-rgb), 0.2);
}

.gs-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.gs-hero__title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gs-hero__subtitle {
    font-size: 1.25rem;
    color: var(--gs-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gs-hero__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.gs-hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}
.gs-hero__stat {
    display: flex;
    flex-direction: column;
    padding: 16px 28px;
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--gs-radius);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.2);
}
.gs-hero__stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gs-hero__stat-label {
    font-size: 0.85rem;
    color: var(--gs-text-muted);
}

/* ==========================================================================
   GRADIENT TEXT
   ========================================================================== */
.gs-gradient-text {
    background: var(--gs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.gs-section {
    padding: 80px 0;
    position: relative;
}
.gs-section--alt {
    background: transparent;
}
.gs-section__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}
.gs-section__subtitle {
    text-align: center;
    color: var(--gs-text-muted);
    max-width: 500px;
    margin: 0 auto 48px;
    font-size: 1rem;
}
.gs-section__action {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   CARDS - Glass morphism with hover glow
   ========================================================================== */
.gs-card {
    background: rgba(26, 16, 16, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius);
    padding: 40px;
    box-shadow: var(--gs-shadow);
    transition: all 0.3s ease;
}
.gs-card:hover {
    border-color: rgba(var(--gs-primary-rgb), 0.3);
}
.gs-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.gs-card__subtitle {
    color: var(--gs-text-muted);
    text-align: center;
    margin-bottom: 24px;
}

/* ==========================================================================
   FEATURE CARDS - Animated icon + hover lift
   ========================================================================== */
.gs-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gs-feature-card {
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius);
    padding: 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.gs-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gs-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.gs-feature-card:hover {
    border-color: rgba(var(--gs-primary-rgb), 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(var(--gs-primary-rgb), 0.2);
}
.gs-feature-card:hover::before {
    transform: scaleX(1);
}
.gs-feature-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: var(--gs-radius-lg);
    background: var(--gs-gradient);
    font-size: 1.6rem;
    color: var(--gs-white);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--gs-primary-rgb), 0.3);
}
.gs-feature-card:hover .gs-feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}
.gs-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.gs-feature-card p {
    color: var(--gs-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   GAME MODE CARDS - Selection cards with icons
   ========================================================================== */
.gs-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.gs-mode-card {
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius-lg);
    padding: 36px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}
.gs-mode-card:hover {
    border-color: var(--gs-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(var(--gs-primary-rgb), 0.15);
}
.gs-mode-card__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.gs-mode-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.gs-mode-card p {
    color: var(--gs-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.gs-mode-card__features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gs-mode-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gs-text-muted);
}
.gs-mode-card__features .fa-check { color: var(--gs-success); }
.gs-mode-card__features .fa-times { color: var(--gs-danger); opacity: 0.5; }

/* ==========================================================================
   NEWS CARDS - Hover image zoom + gradient overlay
   ========================================================================== */
.gs-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.gs-news-card {
    background: rgba(26, 16, 16, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--gs-text);
    text-decoration: none;
    display: block;
}
.gs-news-card:hover {
    border-color: rgba(var(--gs-primary-rgb), 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--gs-text);
}

.gs-news-card__img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--gs-bg-light);
    transition: transform 0.4s ease;
    position: relative;
}
.gs-news-card:hover .gs-news-card__img {
    transform: scale(1.05);
}
.gs-news-card__img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(26, 16, 16, 0.5));
}
.gs-news-card__body {
    padding: 20px;
}
.gs-news-card__body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.gs-news-card__body time {
    font-size: 0.8rem;
    color: var(--gs-text-muted);
}

.gs-news-card--horizontal {
    display: grid;
    grid-template-columns: 220px 1fr;
}
.gs-news-card--horizontal .gs-news-card__img {
    height: 100%;
    min-height: 160px;
}

.gs-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================================================
   FORMS - Focus glow effects
   ========================================================================== */
.gs-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gs-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gs-form__group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gs-text-muted);
}
.gs-form__group input,
.gs-form__group select,
.gs-form__group textarea {
    padding: 14px 18px;
    border-radius: var(--gs-radius-sm);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.15);
    background: rgba(10, 10, 10, 0.4);
    color: var(--gs-text);
    font-family: var(--gs-font);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.gs-form__group input:focus,
.gs-form__group select:focus,
.gs-form__group textarea:focus {
    outline: none;
    border-color: var(--gs-primary);
    box-shadow: 0 0 0 3px rgba(var(--gs-primary-rgb), 0.15),
                0 0 20px rgba(var(--gs-primary-rgb), 0.1);
}

.gs-form__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gs-text-muted);
}

.gs-auth { padding-top: 40px; }

/* ==========================================================================
   ALERTS - Slide in animations
   ========================================================================== */
.gs-alert {
    padding: 16px 0;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease;
}
.gs-alert .gs-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gs-alert--success {
    background: rgba(0, 184, 148, 0.1);
    color: var(--gs-success);
    border-bottom: 1px solid rgba(0, 184, 148, 0.2);
}
.gs-alert--error {
    background: rgba(255, 107, 107, 0.1);
    color: var(--gs-danger);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}
.gs-alert ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ==========================================================================
   TABLES - Gradient header + row hover glow
   ========================================================================== */
.gs-table-wrap {
    overflow-x: auto;
    border-radius: var(--gs-radius);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.gs-table {
    width: 100%;
    border-collapse: collapse;
}
.gs-table th,
.gs-table td {
    padding: 14px 20px;
    text-align: left;
}
.gs-table th {
    background: rgba(var(--gs-primary-rgb), 0.1);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gs-text-muted);
    border-bottom: 2px solid rgba(var(--gs-primary-rgb), 0.3);
}
.gs-table td {
    border-bottom: 1px solid rgba(var(--gs-border), 0.5);
    transition: all 0.2s ease;
}
.gs-table tr:last-child td { border-bottom: none; }
.gs-table tr:hover td {
    background: rgba(var(--gs-primary-rgb), 0.08);
}
.gs-table__rank {
    font-weight: 700;
    background: var(--gs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Top 3 ranks */
.gs-table__rank--gold { color: var(--gs-gold); -webkit-text-fill-color: var(--gs-gold); background: none; }
.gs-table__rank--silver { color: #C0C0C0; -webkit-text-fill-color: #C0C0C0; background: none; }
.gs-table__rank--bronze { color: #CD7F32; -webkit-text-fill-color: #CD7F32; background: none; }

/* ==========================================================================
   SEARCH BAR
   ========================================================================== */
.gs-search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.gs-search-bar input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--gs-radius-sm);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.15);
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gs-text);
    font-family: var(--gs-font);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.gs-search-bar input:focus {
    outline: none;
    border-color: var(--gs-primary);
    box-shadow: 0 0 0 3px rgba(var(--gs-primary-rgb), 0.15);
}

/* ==========================================================================
   STORE - Hover image swap + buy modal + discount badges
   ========================================================================== */
.gs-store-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}
.gs-store-filters .active {
    background: var(--gs-gradient);
    color: var(--gs-white);
    border-color: transparent;
}

.gs-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.gs-store-card {
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.gs-store-card:hover {
    border-color: rgba(var(--gs-primary-rgb), 0.5);
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(var(--gs-primary-rgb), 0.15);
}
.gs-store-card__img {
    padding: 24px;
    background: rgba(10, 10, 10, 0.3);
    position: relative;
    overflow: hidden;
}
.gs-store-card__img img {
    height: 80px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(var(--gs-primary-rgb), 0.3));
}
.gs-store-card:hover .gs-store-card__img img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(var(--gs-primary-rgb), 0.5));
}
.gs-store-card__fallback-icon {
    font-size: 3rem;
    background: var(--gs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(var(--gs-primary-rgb), 0.4));
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gs-store-card:hover .gs-store-card__fallback-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(var(--gs-primary-rgb), 0.6));
}
.gs-store-card__body {
    padding: 20px;
}
.gs-store-card__body h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}
.gs-store-card__body p {
    font-size: 0.85rem;
    color: var(--gs-text-muted);
    margin-bottom: 12px;
}
.gs-store-card__price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gs-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.gs-store-card__price--old {
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.5;
    color: var(--gs-text-muted);
    -webkit-text-fill-color: initial;
}

/* Discount Badge */
.gs-store-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--gs-gradient-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

/* Buy Modal */
.gs-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.gs-modal.active { display: flex; }
.gs-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}
.gs-modal__content {
    position: relative;
    background: rgba(26, 16, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.3);
    border-radius: var(--gs-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: modalIn 0.3s ease;
}
.gs-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gs-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.gs-modal__close:hover {
    transform: rotate(90deg);
    color: var(--gs-white);
    background: rgba(var(--gs-danger), 0.2);
}

/* ==========================================================================
   DOWNLOAD GRID - Platform cards with large icons
   ========================================================================== */
.gs-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.gs-download-card {
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.gs-download-card:hover {
    border-color: var(--gs-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(var(--gs-primary-rgb), 0.15);
}
.gs-download-card__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    background: var(--gs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}
.gs-download-card:hover .gs-download-card__icon {
    transform: scale(1.2);
}
.gs-download-card h3 {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ==========================================================================
   VOTE GRID
   ========================================================================== */
.gs-vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.gs-vote-card {
    background: rgba(26, 16, 16, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.12);
    border-radius: var(--gs-radius);
    padding: 36px;
    text-align: center;
    transition: all 0.4s ease;
    color: var(--gs-text);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}
.gs-vote-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gs-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.gs-vote-card:hover {
    border-color: rgba(var(--gs-primary-rgb), 0.4);
    transform: translateY(-4px);
    color: var(--gs-text);
    box-shadow: 0 12px 40px rgba(var(--gs-primary-rgb), 0.15);
}
.gs-vote-card:hover::after { transform: scaleX(1); }
.gs-vote-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: var(--gs-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gs-vote-card h3 { margin-bottom: 16px; }

.gs-vote-card__reward {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(var(--gs-success), 0.1);
    border: 1px solid rgba(0, 184, 148, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gs-success);
    margin-top: 12px;
}

/* ==========================================================================
   ACCOUNT
   ========================================================================== */
.gs-account-info { margin-bottom: 24px; }
.gs-account-info__row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gs-border);
    transition: all 0.2s ease;
}
.gs-account-info__row:hover {
    padding-left: 8px;
}
.gs-account-info__row:last-child { border-bottom: none; }
.gs-account-info__label { color: var(--gs-text-muted); }
.gs-account-info__value { font-weight: 600; }

.gs-account-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ==========================================================================
   PLAYER STATS
   ========================================================================== */
.gs-player-stats__overview {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}
.gs-stat-block { text-align: center; }
.gs-stat-block__value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gs-stat-block__label {
    font-size: 0.85rem;
    color: var(--gs-text-muted);
}

/* Skill Progress Bars */
.gs-skill-bar {
    height: 6px;
    background: rgba(var(--gs-border), 0.5);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}
.gs-skill-bar__fill {
    height: 100%;
    background: var(--gs-gradient);
    border-radius: 3px;
    transition: width 1s ease;
    position: relative;
}
.gs-skill-bar__fill--maxed {
    background: var(--gs-gradient-gold);
}
.gs-skill-bar__fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

/* ==========================================================================
   ARTICLES
   ========================================================================== */
.gs-article { padding: 40px 0; }
.gs-article__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}
.gs-article__back:hover { gap: 10px; }
.gs-article__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.gs-article__meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--gs-text-muted);
    margin-bottom: 32px;
}
.gs-article__img {
    border-radius: var(--gs-radius);
    margin-bottom: 32px;
}
.gs-article__content { line-height: 1.8; }
.gs-article__content h2 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
}
.gs-article__content p { margin-bottom: 16px; }

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */
.gs-empty {
    text-align: center;
    color: var(--gs-text-muted);
    padding: 60px 0;
    font-size: 1rem;
}
.gs-empty i {
    display: block;
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.gs-toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.gs-toast {
    padding: 16px 20px;
    border-radius: var(--gs-radius-sm);
    background: rgba(26, 16, 16, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--gs-primary-rgb), 0.15);
    color: var(--gs-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    box-shadow: var(--gs-shadow-lg);
    animation: slideInRight 0.3s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}
.gs-toast--success { border-left: 3px solid var(--gs-success); }
.gs-toast--error { border-left: 3px solid var(--gs-danger); }
.gs-toast--warning { border-left: 3px solid var(--gs-warning); }
.gs-toast--info { border-left: 3px solid var(--gs-secondary); }

.gs-toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gs-gradient);
    animation: toastProgress 4s linear forwards;
}
.gs-toast.removing {
    animation: slideOutRight 0.3s ease forwards;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.gs-footer {
    background: var(--gs-bg-light);
    border-top: 1px solid var(--gs-border);
    padding: 60px 0 30px;
    position: relative;
}
.gs-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gs-gradient);
    opacity: 0.5;
}
.gs-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.gs-footer__logo {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.gs-footer__brand p {
    color: var(--gs-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.gs-footer__links h4,
.gs-footer__social h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--gs-text);
}
.gs-footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gs-footer__links a {
    color: var(--gs-text-muted);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.gs-footer__links a:hover {
    color: var(--gs-white);
    padding-left: 4px;
}
.gs-footer__social-icons {
    display: flex;
    gap: 12px;
}
.gs-footer__social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gs-radius-sm);
    background: rgba(10, 10, 10, 0.5);
    color: var(--gs-text-muted);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid var(--gs-border);
}
.gs-footer__social-icons a:hover {
    background: var(--gs-gradient);
    color: var(--gs-white);
    border-color: transparent;
    transform: translateY(-2px);
}

.gs-footer__bottom {
    border-top: 1px solid var(--gs-border);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gs-text-muted);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

@keyframes float-up {
    0%   { transform: translateY(100vh); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-100px); opacity: 0; }
}

@keyframes fall-down {
    0%   { transform: translateY(-50px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(110vh); opacity: 0; }
}

@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(100px); opacity: 0; }
}

@keyframes modalIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes toastProgress {
    from { width: 100%; }
    to   { width: 0%; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Scroll reveal utility */
.gs-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.gs-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .gs-hero__title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .gs-nav__menu,
    .gs-nav__actions {
        display: none;
    }
    .gs-nav__toggle { display: block; }

    .gs-nav.open .gs-nav__menu,
    .gs-nav.open .gs-nav__actions { display: flex; }
    .gs-nav.open .gs-container { flex-wrap: wrap; }
    .gs-nav.open .gs-nav__menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid var(--gs-border);
    }
    .gs-nav.open .gs-nav__actions {
        order: 4;
        width: 100%;
        justify-content: center;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }

    .gs-hero {
        padding: 60px 0 40px;
    }
    .gs-hero__title { font-size: 2.2rem; }
    .gs-hero__video { display: none; }
    .gs-hero__stats { gap: 16px; flex-wrap: wrap; }
    .gs-hero__stat { padding: 12px 20px; }

    .gs-section { padding: 60px 0; }
    .gs-section__title { font-size: 1.8rem; }

    .gs-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gs-news-card--horizontal {
        grid-template-columns: 1fr;
    }

    .gs-card { padding: 24px; }

    .gs-toast-container {
        right: 12px;
        left: 12px;
    }
    .gs-toast { min-width: auto; }
}

@media (max-width: 480px) {
    .gs-hero__title { font-size: 1.8rem; }
    .gs-hero__cta { flex-direction: column; align-items: center; }
    .gs-btn--lg { width: 100%; }
}

/* ==========================================================================
   CART - Navbar badge, cart page, quantity controls
   ========================================================================== */

/* --- Cart Button & Badge --- */
.gs-cart-btn {
    position: relative;
}
.gs-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gs-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 8px rgba(var(--gs-primary-rgb), 0.5);
}
.gs-cart-badge--bounce {
    animation: cartBounce 0.4s ease;
}
@keyframes cartBounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* --- Add to Cart button on store cards --- */
.gs-store-card .gs-add-to-cart {
    margin-top: 12px;
}

/* --- Cart Page --- */
.gs-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    background: var(--gs-bg-card);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius);
    margin-bottom: 12px;
    transition: opacity 0.3s, transform 0.3s;
}
.gs-cart-item__info {
    flex: 1;
    min-width: 0;
}
.gs-cart-item__info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gs-cart-item__price {
    font-size: 0.85rem;
    color: var(--gs-text-muted);
}
.gs-cart-item__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.gs-cart-item__subtotal {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gs-gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
    min-width: 70px;
    text-align: right;
}
.gs-cart-item__remove {
    background: none;
    border: none;
    color: var(--gs-text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}
.gs-cart-item__remove:hover {
    color: var(--gs-danger);
    background: rgba(239, 68, 68, 0.1);
}

/* --- Quantity Controls --- */
.gs-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius-sm);
    overflow: hidden;
}
.gs-qty__btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 16, 16, 0.6);
    border: none;
    color: var(--gs-text);
    cursor: pointer;
    font-size: 0.75rem;
    transition: background 0.2s, color 0.2s;
}
.gs-qty__btn:hover {
    background: rgba(var(--gs-primary-rgb), 0.2);
    color: var(--gs-primary);
}
.gs-qty__value {
    width: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(10, 10, 10, 0.4);
    line-height: 32px;
}

/* --- Cart Footer --- */
.gs-cart-footer {
    margin-top: 24px;
    padding: 24px;
    background: var(--gs-bg-card);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius);
}
.gs-cart-footer__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--gs-font-display);
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.gs-cart-footer__amount {
    font-weight: 800;
    font-size: 2rem;
    color: var(--gs-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.gs-cart-footer__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.gs-cart-footer__actions .gs-btn--primary {
    margin-left: auto;
}

/* --- Cart responsive --- */
@media (max-width: 640px) {
    .gs-cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .gs-cart-item__controls {
        width: 100%;
        justify-content: space-between;
    }
    .gs-cart-footer__actions {
        flex-direction: column;
    }
    .gs-cart-footer__actions .gs-btn--primary {
        margin-left: 0;
        width: 100%;
    }
}
