@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-primary: #060a18;
    --bg-secondary: #0c1129;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-purple: #8d4acd;
    --accent-blue: #0066FF;
    --accent-cyan: #00E5FF;
    --accent-magenta: #c746ff;
    --text-primary: #FFFFFF;
    --text-secondary: #8892B0;
    --text-muted: #5a6380;
    --glow-purple: 0 0 60px rgba(141, 74, 205, 0.3);
    --glow-cyan: 0 0 40px rgba(0, 229, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ============ HEADER ============ */
.gs-header {
    position: fixed;
    top: 16px;
    left: 24px;
    right: 24px;
    z-index: 1000;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 10, 24, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(141, 74, 205, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.gs-header.scrolled {
    top: 10px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: rgba(6, 10, 24, 0.92);
    border-color: rgba(141, 74, 205, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(141, 74, 205, 0.08);
}

.gs-header .logo img {
    height: 44px;
    width: auto;
    transition: height 0.3s;
}

.gs-header.scrolled .logo img {
    height: 36px;
}

.gs-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.gs-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s;
}

.gs-nav a:hover {
    color: var(--text-primary);
}

.gs-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s;
    border-radius: 2px;
}

.gs-nav a:hover::after {
    width: 100%;
}

.gs-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

/* Mobile menu overlay */
.gs-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gs-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============ HERO ============ */
.gs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.gs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(141, 74, 205, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(0, 102, 255, 0.1), transparent),
        radial-gradient(ellipse 40% 40% at 50% 80%, rgba(0, 229, 255, 0.05), transparent);
}

.gs-hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.gs-hero-bg-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(141, 74, 205, 0.12);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.gs-hero-bg-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 255, 0.1);
    bottom: 20%;
    left: 10%;
    animation-delay: -3s;
}

.gs-hero-bg-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 229, 255, 0.08);
    top: 50%;
    left: 50%;
    animation-delay: -1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

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

.gs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    font-size: 13px;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
}

.gs-hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.gs-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.gs-hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gs-hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gs-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gs-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.5);
}

.gs-hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.gs-hero-cta:hover svg {
    transform: translateX(4px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STATS STRIP */
.gs-stats-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 56px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    flex-wrap: wrap;
}

.gs-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.gs-stat-card .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.gs-stat-card .stat-icon.purple {
    background: rgba(141, 74, 205, 0.15);
    color: var(--accent-purple);
}

.gs-stat-card .stat-icon.cyan {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
}

.gs-stat-card .stat-icon.blue {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
}

.gs-stat-card .stat-value {
    font-size: 18px;
    font-weight: 700;
}

.gs-stat-card .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============ SECTION TITLES ============ */
.gs-section {
    padding: 100px 40px;
    position: relative;
}

.gs-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gs-section-header .overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.gs-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
}

.gs-section-header p {
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ FEATURED GAMES ============ */
.gs-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gs-game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

a.gs-game-card,
a.gs-game-card:link,
a.gs-game-card:visited,
a.gs-game-card:hover,
a.gs-game-card:active {
    color: #e8eaf0 !important;
    text-decoration: none !important;
}

a.gs-game-card h3,
a.gs-game-card:visited h3 {
    color: #e8eaf0 !important;
}

a.gs-game-card .from,
a.gs-game-card:visited .from {
    color: rgba(255, 255, 255, 0.4) !important;
}

.gs-game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(141, 74, 205, 0.3);
    box-shadow: var(--glow-purple);
}

.gs-game-card .card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.gs-game-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gs-game-card:hover .card-image img {
    transform: scale(1.08);
}

.gs-game-card .platform-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
}

.gs-game-card .badges-group {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.gs-game-card .badges-group .platform-badge {
    position: static;
}

.gs-game-card .platform-badge.ps5 {
    background: rgba(0, 102, 255, 0.8);
    color: #fff;
}

.gs-game-card .platform-badge.ps4 {
    background: rgba(141, 74, 205, 0.8);
    color: #fff;
}

.gs-game-card .card-info {
    padding: 16px 20px 20px;
}

.gs-game-card .card-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary) !important;
}

.gs-game-card .card-info .price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.gs-game-card .card-info .price .from {
    font-size: 12px;
    color: var(--text-muted);
}

.gs-game-card .card-info .price .amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
}

/* ============ FEATURES ============ */
.gs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.gs-feature-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.gs-feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(141, 74, 205, 0.2);
}

.gs-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gs-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.gs-feature-card:nth-child(1) .feature-icon {
    background: rgba(141, 74, 205, 0.12);
    color: var(--accent-purple);
}

.gs-feature-card:nth-child(2) .feature-icon {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
}

.gs-feature-card:nth-child(3) .feature-icon {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
}

.gs-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gs-feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============ TRUST / TRUSTPILOT ============ */
.gs-trust {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.gs-trustpilot-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.gs-trustpilot-header .tp-logo {
    height: 36px;
}

.gs-trustpilot-header .tp-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.gs-trustpilot-header .tp-rating {
    font-size: 48px;
    font-weight: 800;
}

.gs-trustpilot-header .tp-stars {
    display: flex;
    gap: 4px;
}

.gs-trustpilot-header .tp-stars .star {
    width: 32px;
    height: 32px;
    background: #00B67A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.gs-trustpilot-header .tp-stars .star svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.gs-trustpilot-header .tp-text {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    max-width: 450px;
}

.gs-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gs-review-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.gs-review-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.gs-review-card .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.gs-review-card .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.gs-review-card .reviewer-name {
    font-size: 14px;
    font-weight: 600;
}

.gs-review-card .reviewer-badge {
    font-size: 11px;
    color: #00B67A;
    font-weight: 500;
}

.gs-review-card .review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.gs-review-card .review-stars .star {
    color: #00B67A;
    font-size: 14px;
}

.gs-review-card .review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gs-review-card .review-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

/* ============ PURCHASE PROCESS ============ */
.gs-process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.gs-process-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.3s;
}

.gs-process-step:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(141,74,205,0.2);
}

.gs-process-step .step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.gs-process-step .step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 20px;
  background: rgba(141,74,205,0.1);
  color: var(--accent-purple);
}

.gs-process-step:nth-child(3) .step-icon { background: rgba(0,229,255,0.1); color: var(--accent-cyan); }
.gs-process-step:nth-child(5) .step-icon { background: rgba(0,102,255,0.1); color: var(--accent-blue); }
.gs-process-step:nth-child(7) .step-icon { background: rgba(0,229,255,0.08); color: var(--accent-cyan); }

.gs-process-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gs-process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gs-process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  padding-top: 60px;
  flex-shrink: 0;
  width: 56px;
}

/* ============ REVIEW DATE & EXTRAS ============ */
.gs-review-card .review-date {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.gs-review-card .review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.gs-review-card .review-stars svg {
  color: #00B67A;
  fill: #00B67A;
}

.gs-review-card .reviewer-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #00B67A;
  font-weight: 500;
}

.gs-review-card .reviewer-badge svg {
  color: #00B67A;
  flex-shrink: 0;
}

.gs-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gs-reviews-cta {
  text-align: center;
  margin-top: 36px;
}

.gs-link-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.gs-link-trustpilot:hover {
  color: var(--text-primary);
}

.gs-link-trustpilot svg {
  transition: transform 0.3s;
}

.gs-link-trustpilot:hover svg {
  transform: translateX(4px);
}

/* ============ CTA FINAL ============ */
.gs-final-cta {
    text-align: center;
    padding: 100px 40px;
    position: relative;
}

.gs-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(141, 74, 205, 0.08), transparent);
}

.gs-final-cta .content {
    position: relative;
    z-index: 2;
}

.gs-final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.gs-final-cta p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.gs-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.3);
}

.gs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.5);
}

.gs-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.3);
}

.gs-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

/* ============ FOOTER ============ */
.gs-footer {
    padding: 48px 40px 24px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.gs-footer .footer-logo {
    height: 48px;
    margin-bottom: 24px;
}

.gs-footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.gs-footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.gs-footer-nav a:hover {
    color: var(--accent-purple);
}

.gs-footer .tagline {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.gs-footer .copyright {
    color: var(--text-muted);
    font-size: 12px;
}

.gs-footer .copyright a {
    color: var(--text-secondary);
    text-decoration: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .gs-header {
        top: 10px;
        left: 14px;
        right: 14px;
        padding: 0 18px;
        height: 60px;
        border-radius: 16px;
    }

    .gs-header.scrolled {
        top: 8px;
        left: 12px;
        right: 12px;
        height: 54px;
    }

    .gs-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(6, 10, 24, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1001;
        border-left: 1px solid rgba(141, 74, 205, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 0 40px;
    }

    .gs-nav.open {
        right: 0;
    }

    .gs-nav li {
        width: 100%;
        text-align: center;
    }

    .gs-nav a {
        display: block;
        padding: 20px 32px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
        letter-spacing: 0.01em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: background 0.2s, color 0.2s;
    }

    .gs-nav a:hover {
        background: rgba(141, 74, 205, 0.1);
        color: var(--accent-cyan);
    }

    .gs-nav a::after {
        display: none;
    }

    .gs-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.2s;
    }

    .gs-mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .gs-hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .gs-hero h1 {
        font-size: 2rem;
    }

    .gs-stats-strip {
        gap: 10px;
    }

    .gs-stat-card {
        padding: 10px 16px;
    }

    .gs-stat-card .stat-value {
        font-size: 15px;
    }

    .gs-section {
        padding: 60px 20px;
    }

    .gs-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gs-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gs-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gs-process-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .gs-process-step {
        max-width: 100%;
        width: 100%;
    }

    .gs-process-connector {
        padding-top: 0;
        padding: 8px 0;
        transform: rotate(90deg);
        width: 40px;
    }

    .gs-final-cta {
        padding: 60px 20px;
    }

    .gs-footer {
        padding: 32px 20px 16px;
    }
}

@media (max-width: 480px) {
    .gs-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gs-game-card .card-info {
        padding: 10px 12px 14px;
    }

    .gs-game-card .card-info h3 {
        font-size: 13px;
    }

    .gs-game-card .card-info .price .amount {
        font-size: 16px;
    }
}

/* ============ SCROLL ANIMATIONS ============ */
.gs-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gs-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* DIVIDER */
.gs-divider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}