/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a1a;
  color: #e4e4e7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
code {
  background: rgba(87, 242, 135, 0.12);
  color: #57f287;
  padding: 0.15em 0.45em;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 600;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ==================== NAV ==================== */
.nav-wrapper {
  position: sticky; top: 0; z-index: 100;
  padding: 0.75rem 1.5rem;
}
.nav {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(12, 12, 28, 0.85);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.875rem;
  padding: 0.55rem 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 1.1rem; z-index: 50;
  text-decoration: none;
}
.nav-logo-img {
  width: 32px; height: 32px; border-radius: 0.5rem;
  object-fit: cover;
}
.nav-logo-text { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.85rem; border-radius: 0.5rem;
  font-size: 0.85rem; font-weight: 500;
  color: #71717a; transition: all 0.2s; cursor: pointer;
  border: none; background: none; font-family: inherit;
  text-decoration: none; position: relative;
}
.nav-link svg { opacity: 0.6; transition: opacity 0.2s; }
.nav-link:hover { color: #e4e4e7; background: rgba(255,255,255,0.04); }
.nav-link:hover svg { opacity: 1; }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active svg { opacity: 1; color: #57f287; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -0.15rem; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px; background: #57f287; border-radius: 1px;
}
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle { display: none; background: none; border: none; color: #e4e4e7; cursor: pointer; padding: 0.5rem; border-radius: 0.5rem; }
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.btn-discord { background: #5865F2; color: #fff; }
.btn-discord:hover { background: #4752c4; transform: translateY(-1px); }

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-height: 100vh; gap: 0.5rem; padding: 2rem;
}
.mobile-link {
  font-size: 1.25rem; font-weight: 600; padding: 1rem 2rem;
  border-radius: 0.75rem; transition: all 0.2s;
}
.mobile-link:hover { background: rgba(255,255,255,0.06); }
.mobile-link.active { color: #57f287; }
.mobile-actions { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; max-width: 300px; margin-top: 2rem; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; border-radius: 0.75rem; cursor: pointer;
  transition: all 0.25s; border: none; font-family: inherit;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: #57f287; color: #000; }
.btn-primary:hover { background: #45e075; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(87,242,135,0.25); }
.btn-outline { background: transparent; color: #e4e4e7; border: 2px solid rgba(255,255,255,0.12); }
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.btn-white { background: #fff; color: #0a0a1a; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-nav { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg, .btn-xl { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
.btn-xl { padding: 0.9rem 2rem; font-size: 1.05rem; border-radius: 0.875rem; }
@media (min-width: 768px) { .btn-xl { padding: 1rem 2.25rem; font-size: 1.1rem; } }

/* ==================== PAGES ==================== */
.main-content { min-height: 50vh; }
.page { display: none; animation: pageIn 0.3s ease; }
.page.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==================== HERO ==================== */
.hero {
  position: relative; padding: 5rem 0 4rem; text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(87,242,135,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 2rem;
  background: rgba(87,242,135,0.08); border: 1px solid rgba(87,242,135,0.2);
  font-size: 0.8rem; font-weight: 600; color: #57f287;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #57f287; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, #57f287, #3498db, #9b59b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: #a1a1aa; max-width: 600px;
  margin: 0 auto 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: #71717a; }
.hero-stat-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.1); }
.hero-update { margin-top: 1rem; font-size: 0.75rem; color: #52525b; }

/* ==================== SECTIONS ==================== */
.section { padding: 4rem 0; }
.section-alt { background: rgba(255,255,255,0.015); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-sub { font-size: 1.05rem; color: #71717a; }

/* ==================== ACTIVITY ==================== */
.activity-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.activity-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.25rem;
}
.activity-panel h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.feed-list {
  display: flex; flex-direction: column; gap: 0.5rem; max-height: 320px;
  overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(87,242,135,0.3) transparent;
}
.feed-list::-webkit-scrollbar { width: 6px; }
.feed-list::-webkit-scrollbar-track { background: transparent; }
.feed-list::-webkit-scrollbar-thumb { background: rgba(87,242,135,0.3); border-radius: 3px; }
.feed-list::-webkit-scrollbar-thumb:hover { background: rgba(87,242,135,0.5); }
.feed-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0.75rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.02);
  font-size: 0.85rem;
  flex-direction: column;
  transition: all 0.3s ease;
}
.feed-item:hover {
  background: rgba(255,255,255,0.04);
}
.feed-item-new {
  animation: newFeedItem 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(87, 242, 135, 0.08);
  border: 1px solid rgba(87, 242, 135, 0.15);
}
.feed-item-new:hover {
  background: rgba(87, 242, 135, 0.12);
}
@keyframes newFeedItem {
  from { opacity: 0; transform: translateY(-15px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.feed-header {
  display: flex; align-items: center; gap: 0.5rem; width: 100%;
}
.feed-icon { font-size: 1rem; flex-shrink: 0; }
.feed-club-emoji { width: 20px; height: 20px; border-radius: 4px; flex-shrink: 0; }
.feed-text { color: #e4e4e7; font-weight: 500; flex: 1; }
.feed-time { color: #52525b; font-size: 0.7rem; font-weight: 500; white-space: nowrap; }
.feed-details { color: #71717a; font-size: 0.75rem; padding-left: 2rem; }
.top-players-list { display: flex; flex-direction: column; gap: 0.5rem; }
.top-player {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.75rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.02);
  font-size: 0.85rem; transition: all 0.2s;
}
.top-player:hover { background: rgba(255,255,255,0.04); }
.top-player.loading { color: #52525b; font-style: italic; }
.top-rank { font-weight: 800; color: #57f287; min-width: 2rem; }
.top-name { flex: 1; font-weight: 600; }
.top-ovr { color: #a1a1aa; font-weight: 600; font-size: 0.8rem; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==================== STEPS ==================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 2rem;
  position: relative; transition: all 0.3s;
}
.step-card:hover {
  border-color: rgba(87,242,135,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.step-number {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.step-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: #a1a1aa; font-size: 0.95rem; line-height: 1.6; }

/* ==================== FEATURES ==================== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.75rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.feature-card li { color: #a1a1aa; font-size: 0.9rem; padding-left: 1.2rem; position: relative; }
.feature-card li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; border-radius: 50%; background: #57f287; }

/* ==================== COMMANDS ==================== */
.cmd-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 2rem;
  align-items: start;
}
.cmd-sidebar {
  position: sticky; top: 5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.25rem;
}
.cmd-search-box {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.5rem; padding: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
}
.cmd-search-box svg { color: #71717a; flex-shrink: 0; }
.cmd-search {
  background: none; border: none; outline: none;
  color: #e4e4e7; font-size: 0.85rem; width: 100%;
  font-family: inherit;
}
.cmd-search::placeholder { color: #52525b; }
.cmd-cat-label {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #52525b; margin-bottom: 0.75rem; padding-left: 0.25rem;
}
.cmd-categories { display: flex; flex-direction: column; gap: 0.25rem; }
.cmd-cat-btn {
  display: flex; align-items: center; gap: 0.6rem;
  width: 100%; padding: 0.6rem 0.75rem; border-radius: 0.5rem;
  background: transparent; border: none; color: #a1a1aa;
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; font-family: inherit; text-align: left;
}
.cmd-cat-btn:hover { color: #fff; background: rgba(255,255,255,0.04); }
.cmd-cat-btn.active { color: #fff; background: rgba(87,242,135,0.1); }
.cmd-cat-icon { font-size: 1rem; width: 1.25rem; text-align: center; }
.cmd-cat-count {
  margin-left: auto; font-size: 0.7rem; font-weight: 700;
  background: rgba(255,255,255,0.06); padding: 0.15rem 0.45rem;
  border-radius: 0.3rem; color: #71717a;
}
.cmd-cat-btn.active .cmd-cat-count { background: rgba(87,242,135,0.15); color: #57f287; }

.cmd-main { min-width: 0; }
.cmd-grid {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.cmd-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem; padding: 1.25rem 1.5rem;
  transition: all 0.25s;
}
.cmd-card:hover { border-color: rgba(87,242,135,0.2); }
.cmd-card-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem;
}
.cmd-emoji { font-size: 1.5rem; }
.cmd-title-row {
  display: flex; align-items: center; gap: 0.6rem; flex: 1; flex-wrap: wrap;
}
.cmd-name {
  background: rgba(87,242,135,0.1); color: #57f287;
  padding: 0.2em 0.6em; border-radius: 0.4rem;
  font-size: 0.9rem; font-weight: 700; font-family: 'SF Mono', Consolas, monospace;
}
.cmd-cat-tag {
  padding: 0.15rem 0.5rem; border-radius: 1rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cmd-desc {
  color: #a1a1aa; font-size: 0.88rem; margin-bottom: 0.75rem;
  padding-left: 2.25rem;
}
.cmd-examples {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  padding-left: 2.25rem;
}
.cmd-example {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.5rem; padding: 0.6rem 0.85rem;
}
.cmd-example-label {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: #71717a; margin-bottom: 0.3rem;
}
.cmd-example code {
  background: none; color: #e4e4e7; font-size: 0.82rem;
  padding: 0; border-radius: 0; font-weight: 500;
}

/* ==================== ACTIVITY ==================== */
.activity-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem;
}
.activity-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.5rem;
}
.activity-panel h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.activity-panel h3::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
.feed-list {
  display: flex; flex-direction: column; gap: 0.4rem; max-height: 480px;
  overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(87,242,135,0.3) transparent;
}
.feed-list::-webkit-scrollbar { width: 5px; }
.feed-list::-webkit-scrollbar-track { background: transparent; }
.feed-list::-webkit-scrollbar-thumb { background: rgba(87,242,135,0.25); border-radius: 3px; }
.feed-list::-webkit-scrollbar-thumb:hover { background: rgba(87,242,135,0.4); }
.feed-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.55rem 0.7rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.02);
  font-size: 0.82rem;
  flex-direction: column;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}
.feed-item:hover { background: rgba(255,255,255,0.04); border-left-color: rgba(87,242,135,0.3); }
.feed-item[data-type="match"] { border-left-color: rgba(88,101,242,0.3); }
.feed-item[data-type="train"] { border-left-color: rgba(87,242,135,0.3); }
.feed-item[data-type="contract"] { border-left-color: rgba(241,196,15,0.3); }
.feed-item-new {
  animation: newFeedItem 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(87, 242, 135, 0.06);
  border: 1px solid rgba(87, 242, 135, 0.12);
  border-left: 2px solid #57f287;
}
.feed-item-new:hover {
  background: rgba(87, 242, 135, 0.1);
}
@keyframes newFeedItem {
  from { opacity: 0; transform: translateY(-12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.feed-header {
  display: flex; align-items: center; gap: 0.4rem; width: 100%;
}
.feed-icon { font-size: 0.95rem; flex-shrink: 0; }
.feed-club-emoji { width: 18px; height: 18px; border-radius: 3px; flex-shrink: 0; }
.feed-text { color: #e4e4e7; font-weight: 500; flex: 1; line-height: 1.35; }
.feed-time { color: #52525b; font-size: 0.68rem; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.feed-details { color: #71717a; font-size: 0.73rem; padding-left: 1.8rem; line-height: 1.4; }

/* Top Players */
.top-players-list { display: flex; flex-direction: column; gap: 0.4rem; }
.top-player {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.75rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.02);
  font-size: 0.85rem; transition: all 0.2s;
  border-left: 2px solid transparent;
}
.top-player:hover { background: rgba(255,255,255,0.04); }
.top-player:nth-child(1) { border-left-color: #FFD700; }
.top-player:nth-child(2) { border-left-color: #C0C0C0; }
.top-player:nth-child(3) { border-left-color: #CD7F32; }
.top-player.loading { color: #52525b; font-style: italic; }
.top-rank { font-weight: 800; color: #57f287; min-width: 2rem; font-size: 0.85rem; }
.top-player:nth-child(1) .top-rank { color: #FFD700; }
.top-player:nth-child(2) .top-rank { color: #C0C0C0; }
.top-player:nth-child(3) .top-rank { color: #CD7F32; }
.top-name { flex: 1; font-weight: 600; }
.top-ovr { color: #a1a1aa; font-weight: 600; font-size: 0.78rem; background: rgba(255,255,255,0.04); padding: 0.15rem 0.5rem; border-radius: 0.3rem; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==================== POSITIONS ==================== */
.positions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.position-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem; padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: all 0.2s;
}
.position-card:hover { border-color: rgba(87,242,135,0.2); transform: translateY(-1px); }
.position-emoji { font-size: 2rem; flex-shrink: 0; }
.position-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.position-info p { color: #71717a; font-size: 0.8rem; }
.position-skill { color: #57f287; font-size: 0.75rem; font-weight: 600; margin-top: 0.3rem; }
.formations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.formation-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.6rem; padding: 0.85rem 1rem;
  transition: all 0.2s;
}
.formation-card:hover { border-color: rgba(255,255,255,0.1); }
.formation-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
.formation-desc { color: #71717a; font-size: 0.75rem; margin-bottom: 0.3rem; }
.formation-bonus { font-size: 0.7rem; color: #57f287; font-weight: 600; }

/* ==================== SHOP ==================== */
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.shop-category {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.5rem;
}
.shop-cat-title {
  font-size: 1rem; font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.shop-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.shop-item:last-child { border-bottom: none; }
.shop-item-info { flex: 1; }
.shop-item-name { font-weight: 600; font-size: 0.85rem; }
.shop-item-desc { color: #71717a; font-size: 0.75rem; }
.shop-item-price {
  background: rgba(87,242,135,0.1); color: #57f287;
  padding: 0.2rem 0.6rem; border-radius: 0.4rem;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}

/* ==================== PARTNERS ==================== */
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.partner-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 1.75rem;
  display: flex; align-items: center; gap: 1.25rem;
  transition: all 0.3s;
  text-decoration: none;
}
.partner-card:hover {
  border-color: rgba(88,101,242,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(88,101,242,0.15);
}
.partner-icon {
  width: 72px; height: 72px; border-radius: 1rem;
  background: linear-gradient(135deg, #5865F2, #7289DA);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.partner-icon img {
  width: 100%; height: 100%; object-fit: cover;
}
.partner-icon svg {
  width: 36px; height: 36px; color: #fff;
}
.partner-info { flex: 1; }
.partner-name {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.25rem;
}
.partner-desc {
  font-size: 0.85rem; color: #a1a1aa; line-height: 1.5;
  margin-bottom: 0.75rem;
}
.partner-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem; border-radius: 2rem;
  background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.25);
  font-size: 0.75rem; font-weight: 600; color: #7289DA;
}
.partner-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #57f287; animation: pulse-dot 2s infinite;
}
.partner-cta {
  text-align: center; padding: 2.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
}
.partner-cta p {
  color: #71717a; font-size: 1rem; margin-bottom: 1.25rem;
}

/* ==================== CTA ==================== */
.cta-section {
  position: relative; padding: 5rem 0; text-align: center;
  background: linear-gradient(135deg, #0f3443 0%, #34e89e 50%, #0f3443 100%);
  overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(87,242,135,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900; color: #fff; margin-bottom: 0.75rem;
}
.cta-content p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-logo { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.footer-brand p { color: #52525b; font-size: 0.85rem; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; color: #52525b; font-size: 0.85rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer-col a:hover { color: #57f287; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 1.25rem; text-align: center;
}
.footer-bottom p { color: #3f3f46; font-size: 0.8rem; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { padding: 4rem 0 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-divider { display: none; }
  .section { padding: 3rem 0; }
  .activity-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cmd-layout { grid-template-columns: 1fr; }
  .cmd-sidebar { position: static; display: flex; flex-direction: column; gap: 1rem; }
  .cmd-categories { flex-direction: row; flex-wrap: wrap; gap: 0.25rem; }
  .cmd-cat-btn { width: auto; }
  .cmd-examples { grid-template-columns: 1fr; }
  .cmd-desc, .cmd-examples { padding-left: 0; }
  .positions-grid { grid-template-columns: 1fr; }
  .formations-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .shop-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
