/* ==========================================================================
   GAMEOSOPHY HOMEPAGE - MODERN MARKETPLACE DESIGN SYSTEM
   ========================================================================== */

:root {
  --gm-primary: #6a11cb;
  --gm-primary-dark: #5008a3;
  --gm-primary-light: #8338ec;
  --gm-secondary: #2575fc;
  --gm-accent: #ff4757;
  --gm-accent-hover: #ee3747;
  --gm-gold: #f59e0b;
  --gm-success: #10b981;
  --gm-cyan: #06b6d4;
  
  --gm-dark: #0a1026;
  --gm-dark-card: #121833;
  --gm-text-main: #0f172a;
  --gm-text-body: #334155;
  --gm-text-muted: #64748b;
  --gm-text-light: #94a3b8;
  
  --gm-border: #e2e8f0;
  --gm-border-light: #f1f5f9;
  --gm-border-focus: #c7d2fe;
  
  --gm-bg-page: #f8fafc;
  --gm-bg-card: #ffffff;
  --gm-bg-subtle: #f1f5f9;
  
  --gm-gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --gm-gradient-dark: linear-gradient(135deg, #0a1026 0%, #1e293b 100%);
  --gm-gradient-accent: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
  --gm-gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gm-gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --gm-gradient-hero: radial-gradient(circle at 80% 50%, rgba(37, 117, 252, 0.22) 0%, rgba(10, 16, 38, 0.98) 70%);
  
  --gm-shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
  --gm-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --gm-shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.04);
  --gm-shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --gm-shadow-glow: 0 10px 30px rgba(106, 17, 203, 0.25);
  
  --gm-radius-sm: 10px;
  --gm-radius-md: 16px;
  --gm-radius-lg: 24px;
  --gm-radius-xl: 32px;
  --gm-radius-pill: 9999px;
  
  --gm-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --gm-transition-fast: all 0.15s ease;
}

/* Base Homepage Layout Overrides */
body {
  background-color: var(--gm-bg-page) !important;
  color: var(--gm-text-body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.gm-home-wrapper {
  overflow-x: hidden;
  width: 100%;
  background-color: var(--gm-bg-page);
}

.gm-container {
  width: 94%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ==========================================================================
   1. HERO PROMOTIONAL SLIDER
   ========================================================================== */
.gm-hero-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.gm-hero-carousel-container {
  position: relative;
  background: var(--gm-dark);
  border-radius: var(--gm-radius-lg);
  overflow: hidden;
  box-shadow: var(--gm-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gm-slider-viewport {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

.gm-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gm-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  background: var(--gm-gradient-hero);
}

.gm-slide-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 48px 56px;
  z-index: 2;
}

.gm-slide-content {
  color: #ffffff;
  max-width: 620px;
}

.gm-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--gm-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #e0e7ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 18px;
}

.gm-slide-badge i {
  color: #38bdf8;
  font-size: 13px;
}

.gm-slide-badge.badge-sale {
  background: rgba(255, 71, 87, 0.2);
  color: #ff9aa2;
  border-color: rgba(255, 71, 87, 0.3);
}
.gm-slide-badge.badge-sale i {
  color: #ff4757;
}

.gm-slide-badge.badge-reskin {
  background: rgba(236, 72, 153, 0.2);
  color: #fbcfe8;
  border-color: rgba(236, 72, 153, 0.3);
}
.gm-slide-badge.badge-reskin i {
  color: #f472b6;
}

.gm-slide-badge.badge-dev {
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  border-color: rgba(16, 185, 129, 0.3);
}
.gm-slide-badge.badge-dev i {
  color: #10b981;
}

.gm-slide-badge.badge-free {
  background: rgba(6, 182, 212, 0.2);
  color: #cffafe;
  border-color: rgba(6, 182, 212, 0.3);
}
.gm-slide-badge.badge-free i {
  color: #06b6d4;
}

.gm-slide-title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 14px;
}

.gm-slide-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 12px;
}

.gm-slide-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 28px;
  max-width: 520px;
}

.gm-slide-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gm-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gm-gradient-primary);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--gm-radius-pill);
  box-shadow: 0 8px 24px rgba(106, 17, 203, 0.4);
  transition: var(--gm-transition);
  text-decoration: none !important;
  border: none;
}

.gm-btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(106, 17, 203, 0.6);
  color: #ffffff !important;
}

.gm-btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9 !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--gm-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: var(--gm-transition);
  text-decoration: none !important;
}

.gm-btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.gm-slide-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gm-slide-image-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--gm-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #121833;
}

.gm-slide-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gm-slide:hover .gm-slide-image-card img {
  transform: scale(1.03);
}

/* Slider Nav Controls */
.gm-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 16, 38, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--gm-transition);
  font-size: 16px;
}

.gm-slider-arrow:hover {
  background: var(--gm-primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
}

.gm-slider-arrow.prev {
  left: 18px;
}

.gm-slider-arrow.next {
  right: 18px;
}

.gm-slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: rgba(10, 16, 38, 0.6);
  padding: 6px 14px;
  border-radius: var(--gm-radius-pill);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.gm-dot.active {
  width: 28px;
  border-radius: 6px;
  background: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

/* ==========================================================================
   2. TOP TRUST & VALUE BAR
   ========================================================================== */
.gm-trust-bar-section {
  padding-bottom: 24px;
}

.gm-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--gm-bg-card);
  padding: 22px 28px;
  border-radius: var(--gm-radius-md);
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow-sm);
}

.gm-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gm-trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(106, 17, 203, 0.08);
  color: var(--gm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--gm-transition);
}

.gm-trust-item:hover .gm-trust-icon {
  background: var(--gm-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.gm-trust-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gm-text-main);
  margin: 0 0 2px 0;
}

.gm-trust-text p {
  font-size: 13px;
  color: var(--gm-text-muted);
  margin: 0;
}

/* ==========================================================================
   3. MODERN CATEGORY SECTION ("Explore Gameosophy")
   ========================================================================== */
.gm-categories-section {
  padding: 36px 0;
}

.gm-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}

.gm-section-title-wrap h2,
.gm-section-title-wrap h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gm-text-main);
  margin: 0 0 6px 0;
}

.gm-section-title-wrap p {
  font-size: 15px;
  color: var(--gm-text-muted);
  margin: 0;
}

.gm-btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--gm-primary) !important;
  border: 1.5px solid var(--gm-border);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--gm-radius-pill);
  transition: var(--gm-transition);
  text-decoration: none !important;
  white-space: nowrap;
}

.gm-btn-view-all:hover {
  background: var(--gm-primary);
  color: #ffffff !important;
  border-color: var(--gm-primary);
  box-shadow: 0 6px 18px rgba(106, 17, 203, 0.25);
  transform: translateY(-2px);
}

.gm-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gm-category-card {
  position: relative;
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-md);
  padding: 24px 20px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--gm-transition);
  box-shadow: var(--gm-shadow-xs);
}

.gm-category-card:hover {
  transform: translateY(-6px);
  border-color: var(--gm-primary-light);
  box-shadow: var(--gm-shadow-md);
}

.gm-cat-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gm-gradient-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--gm-transition);
}

.gm-category-card:hover .gm-cat-icon-wrapper {
  transform: scale(1.1) rotate(4deg);
  box-shadow: var(--gm-shadow-glow);
}

.gm-category-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gm-text-main);
  margin: 0 0 6px 0;
  transition: color 0.2s ease;
}

.gm-category-card:hover h3 {
  color: var(--gm-primary);
}

.gm-category-card p {
  font-size: 13px;
  color: var(--gm-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Specific category icon gradient themes */
.gm-cat-games .gm-cat-icon-wrapper { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.gm-cat-gui .gm-cat-icon-wrapper { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.gm-cat-plugin .gm-cat-icon-wrapper { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.gm-cat-reskin .gm-cat-icon-wrapper { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.gm-cat-hire .gm-cat-icon-wrapper { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.gm-cat-services .gm-cat-icon-wrapper { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }

/* ==========================================================================
   4. PRODUCT SECTIONS & CARDS
   ========================================================================== */
.gm-product-section {
  padding: 36px 0;
}

.gm-product-section.bg-subtle {
  background-color: var(--gm-bg-subtle);
  border-top: 1px solid var(--gm-border-light);
  border-bottom: 1px solid var(--gm-border-light);
}

.gm-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Modernized Product Card */
.gm-product-card {
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--gm-transition);
  box-shadow: var(--gm-shadow-xs);
  position: relative;
}

.gm-product-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: var(--gm-shadow-md);
}

.gm-card-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0f172a;
  overflow: hidden;
}

.gm-card-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gm-card-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gm-product-card:hover .gm-card-thumb-link img {
  transform: scale(1.05);
}

/* Badges */
.gm-badge-flash {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gm-gradient-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--gm-radius-pill);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gm-badge-free {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gm-success);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--gm-radius-pill);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Wishlist Button */
.gm-wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--gm-transition-fast);
  z-index: 2;
  backdrop-filter: blur(4px);
  text-decoration: none !important;
}

.gm-wish-btn:hover {
  background: #ffffff;
  color: #ff4757;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.2);
}

.gm-wish-btn.active, .gm-wish-btn i.fa-heart {
  color: #ff4757;
}

/* Card Body */
.gm-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gm-card-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--gm-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-decoration: none !important;
}

.gm-card-cat:hover {
  color: var(--gm-primary-dark);
}

.gm-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gm-text-main);
  line-height: 1.4;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.gm-card-title a {
  color: inherit;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.gm-card-title a:hover {
  color: var(--gm-primary);
}

/* Meta rating and sold */
.gm-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gm-border-light);
  font-size: 13px;
}

.gm-rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--gm-gold);
  font-size: 12px;
}

.gm-rating-val {
  color: var(--gm-text-muted);
  font-weight: 600;
  margin-left: 4px;
  font-size: 12px;
}

.gm-downloads-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gm-text-muted);
  background: var(--gm-bg-subtle);
  padding: 3px 8px;
  border-radius: var(--gm-radius-sm);
}

/* Card Price Row */
.gm-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.gm-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.gm-price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--gm-text-main);
}

.gm-price-current.flash-sale {
  color: var(--gm-accent);
}

.gm-price-current.is-free {
  color: var(--gm-success);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gm-price-old {
  font-size: 14px;
  color: var(--gm-text-light);
  text-decoration: line-through;
  font-weight: 500;
}

.gm-btn-view-product {
  padding: 7px 14px;
  border-radius: var(--gm-radius-pill);
  font-size: 13px;
  font-weight: 700;
  background: rgba(106, 17, 203, 0.08);
  color: var(--gm-primary) !important;
  text-decoration: none !important;
  transition: var(--gm-transition-fast);
}

.gm-btn-view-product:hover {
  background: var(--gm-primary);
  color: #ffffff !important;
}

/* ==========================================================================
   5. PROMOTIONAL BANNERS
   ========================================================================== */
.gm-promo-banner-section {
  padding: 24px 0;
}

.gm-promo-banner {
  position: relative;
  background: var(--gm-gradient-dark);
  border-radius: var(--gm-radius-lg);
  padding: 44px 50px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: var(--gm-shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.gm-promo-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 117, 252, 0.25) 0%, rgba(106, 17, 203, 0) 70%);
  pointer-events: none;
}

.gm-promo-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.gm-promo-banner-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 10px;
}

.gm-promo-banner-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.gm-promo-banner-desc {
  font-size: 15px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

.gm-promo-banner-cta {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* ==========================================================================
   6. HIRE UNITY DEVELOPER SECTION
   ========================================================================== */
.gm-hire-dev-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border-top: 1px solid var(--gm-border);
  border-bottom: 1px solid var(--gm-border);
}

.gm-hire-dev-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
  background: #ffffff;
  padding: 48px 56px;
  border-radius: var(--gm-radius-xl);
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow-lg);
}

.gm-hire-dev-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gm-text-main);
  margin-bottom: 16px;
  line-height: 1.2;
}

.gm-hire-dev-content p.lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gm-text-body);
  margin-bottom: 28px;
}

.gm-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 32px;
}

.gm-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gm-text-main);
}

.gm-check-item i {
  color: var(--gm-success);
  font-size: 16px;
  flex-shrink: 0;
}

.gm-hire-dev-media {
  position: relative;
}

.gm-hire-dev-img-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--gm-radius-lg);
  overflow: hidden;
  box-shadow: var(--gm-shadow-lg);
  border: 1px solid var(--gm-border);
}

.gm-hire-dev-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-floating-stat-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: rgba(10, 16, 38, 0.9);
  color: #ffffff;
  border-radius: var(--gm-radius-md);
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.gm-floating-stat-badge i {
  font-size: 24px;
  color: #38bdf8;
}

.gm-floating-stat-badge .stat-num {
  font-size: 18px;
  font-weight: 800;
  display: block;
  line-height: 1.1;
}

.gm-floating-stat-badge .stat-lbl {
  font-size: 12px;
  color: #94a3b8;
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.gm-services-section {
  padding: 48px 0;
}

.gm-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gm-service-card {
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-md);
  padding: 28px 24px;
  transition: var(--gm-transition);
  box-shadow: var(--gm-shadow-xs);
  display: flex;
  flex-direction: column;
}

.gm-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gm-primary-light);
  box-shadow: var(--gm-shadow-md);
}

.gm-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(106, 17, 203, 0.08);
  color: var(--gm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--gm-transition);
}

.gm-service-card:hover .gm-service-icon {
  background: var(--gm-primary);
  color: #ffffff;
  transform: scale(1.08);
}

.gm-service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gm-text-main);
  margin-bottom: 8px;
}

.gm-service-card p {
  font-size: 14px;
  color: var(--gm-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   8. WHY GAMEOSOPHY SECTION
   ========================================================================== */
.gm-why-section {
  padding: 48px 0;
  background: var(--gm-bg-card);
  border-top: 1px solid var(--gm-border);
  border-bottom: 1px solid var(--gm-border);
}

.gm-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gm-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--gm-radius-md);
  background: var(--gm-bg-page);
  border: 1px solid var(--gm-border-light);
  transition: var(--gm-transition);
}

.gm-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gm-shadow-sm);
  border-color: var(--gm-primary-light);
}

.gm-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gm-gradient-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: var(--gm-transition);
}

.gm-why-card:hover .gm-why-icon {
  transform: scale(1.1) rotate(4deg);
}

.gm-why-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gm-text-main);
  margin: 0 0 8px 0;
}

.gm-why-text p {
  font-size: 13.5px;
  color: var(--gm-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   9. TESTIMONIALS, BLOG & METRICS
   ========================================================================== */
.gm-testimonials-section {
  padding: 48px 0;
  background: var(--gm-bg-subtle);
}

.gm-testimonial-card {
  background: #ffffff;
  border-radius: var(--gm-radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gm-border);
  box-shadow: var(--gm-shadow-sm);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gm-testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.gm-testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gm-text-main);
  margin-bottom: 4px;
}

.gm-testimonial-role {
  font-size: 13px;
  color: var(--gm-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.gm-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: var(--gm-gold);
  font-size: 14px;
  margin-bottom: 18px;
}

.gm-testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gm-text-body);
  font-style: italic;
  margin: 0;
}

/* Metrics / Counters */
.gm-metrics-section {
  padding: 40px 0;
}

.gm-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gm-metric-card {
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--gm-shadow-xs);
  transition: var(--gm-transition);
}

.gm-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gm-shadow-md);
}

.gm-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(106, 17, 203, 0.08);
  color: var(--gm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.gm-metric-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gm-text-main);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.gm-metric-label {
  font-size: 14px;
  color: var(--gm-text-muted);
  font-weight: 600;
  margin: 0;
}

/* Blog Grid */
.gm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gm-blog-card {
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-md);
  overflow: hidden;
  transition: var(--gm-transition);
  box-shadow: var(--gm-shadow-xs);
  display: flex;
  flex-direction: column;
}

.gm-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gm-shadow-md);
  border-color: #cbd5e1;
}

.gm-blog-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f172a;
}

.gm-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gm-blog-card:hover .gm-blog-img-wrap img {
  transform: scale(1.05);
}

.gm-blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gm-blog-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--gm-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gm-blog-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gm-text-main);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gm-blog-title a {
  color: inherit;
  text-decoration: none !important;
}

.gm-blog-title a:hover {
  color: var(--gm-primary);
}

.gm-blog-desc {
  font-size: 13.5px;
  color: var(--gm-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gm-blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gm-border-light);
}

.gm-blog-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.gm-blog-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gm-text-main);
}

/* ==========================================================================
   10. RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================================================== */

/* Large screens / 1440px+ */
@media (min-width: 1440px) {
  .gm-container {
    max-width: 1400px;
  }
}

/* Desktop & Laptop / 1024px to 1280px */
@media (max-width: 1200px) {
  .gm-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gm-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gm-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gm-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gm-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / 768px to 1023px */
@media (max-width: 1023px) {
  .gm-slide-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 30px;
  }
  .gm-slide-content {
    max-width: 100%;
  }
  .gm-slide-image-card {
    max-height: 320px;
  }
  .gm-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gm-hire-dev-grid {
    grid-template-columns: 1fr;
    padding: 36px 30px;
    gap: 32px;
  }
  .gm-floating-stat-badge {
    position: static;
    margin-top: 16px;
  }
  .gm-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gm-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices / Below 768px */
@media (max-width: 767px) {
  .gm-container {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .gm-hero-section {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .gm-hero-carousel-container {
    border-radius: var(--gm-radius-md);
  }
  .gm-slider-viewport {
    min-height: auto;
  }
  .gm-slide {
    min-height: auto;
  }
  .gm-slide-grid {
    padding: 28px 18px;
    gap: 20px;
  }
  .gm-slide-title {
    font-size: 24px;
  }
  .gm-slide-desc {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
  .gm-slide-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .gm-btn-hero-primary,
  .gm-btn-hero-secondary {
    justify-content: center;
    width: 100%;
  }
  .gm-slider-arrow {
    display: none; /* Swipe on mobile */
  }
  .gm-trust-bar {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 12px;
  }
  .gm-trust-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .gm-trust-text h4 {
    font-size: 13px;
  }
  .gm-trust-text p {
    font-size: 11px;
  }
  .gm-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gm-category-card {
    padding: 16px 12px;
  }
  .gm-cat-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .gm-category-card h3 {
    font-size: 14px;
  }
  .gm-category-card p {
    font-size: 11.5px;
  }
  .gm-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gm-services-grid {
    grid-template-columns: 1fr;
  }
  .gm-why-grid {
    grid-template-columns: 1fr;
  }
  .gm-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gm-blog-grid {
    grid-template-columns: 1fr;
  }
  .gm-promo-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }
  .gm-promo-banner-cta {
    width: 100%;
  }
  .gm-promo-banner-cta .gm-btn-hero-primary {
    width: 100%;
    justify-content: center;
  }
  .gm-checklist-grid {
    grid-template-columns: 1fr;
  }
  .gm-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .gm-slider-track,
  .gm-product-card,
  .gm-category-card,
  .gm-btn-hero-primary,
  .gm-card-thumb-link img {
    transition: none !important;
    animation: none !important;
  }
}
