@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a2e;
  --bg-card: rgba(20, 20, 32, 0.8);
  --bg-card-hover: rgba(30, 30, 50, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);

  --text-primary: #f0f0f5;
  --text-secondary: #9898b0;
  --text-tertiary: #5e5e74;
  --text-accent: #b8b0ff;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(108, 92, 231, 0.35);

  --nav-bg: rgba(10, 10, 15, 0.88);

  --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a855f7 50%, #06b6d4 100%);
  --gradient-accent: linear-gradient(135deg, #6c5ce7 0%, #a855f7 100%);
  --gradient-hero: radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", Consolas, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(108, 92, 231, 0.12);
  --shadow-glow-hover: 0 0 50px rgba(108, 92, 231, 0.22);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --max-width: 1200px;
  --nav-height: 64px;
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f3f4f6;
  --bg-tertiary: #e5e7eb;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass: rgba(0, 0, 0, 0.04);
  --bg-glass-hover: rgba(0, 0, 0, 0.08);

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;
  --text-accent: #6c5ce7;

  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.12);
  --border-accent: rgba(108, 92, 231, 0.4);

  --nav-bg: rgba(255, 255, 255, 0.88);

  --shadow-glow: 0 0 25px rgba(108, 92, 231, 0.15);
  --shadow-glow-hover: 0 0 40px rgba(108, 92, 231, 0.3);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
code, pre { font-family: var(--font-mono); }

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.navbar-scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.navbar-logo-text {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(108, 92, 231, 0.45);
}

.btn-primary:active { transform: translateY(0); }

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

.btn-ghost {
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-4);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-free {
  background: rgba(0, 184, 148, 0.12);
  color: #00d9a7;
  border: 1px solid rgba(0, 184, 148, 0.18);
}

.badge-hot {
  background: rgba(255, 107, 53, 0.15);
  color: #ff8a56;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.badge-category-color {
  text-transform: capitalize;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.hero-section {
  padding: var(--space-16) 0 var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.typewriter-hero {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.typewriter-heading {
  font-size: var(--text-5xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}

.typewriter-static {
  color: var(--text-secondary);
}

.typewriter-tool {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter-role-line {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typewriter-role {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--text-tertiary);
  font-size: var(--text-lg);
  margin-top: var(--space-4);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.filters-section {
  padding: var(--space-6) 0 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: var(--space-4);
}

.search-row {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  align-items: center;
}

.sort-toggle-btn {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-glass);
  min-width: 130px;
  justify-content: center;
  flex-shrink: 0;
}

.search-main {
  flex: 1;
  position: relative;
}

.search-wrapper .search-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.search-wrapper .input {
  padding-left: var(--space-12);
}

.input {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  width: 100%;
  transition: all var(--transition-fast);
  outline: none;
}

.input:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
  background: var(--bg-glass-hover);
}

.input::placeholder {
  color: var(--text-tertiary);
}

.input-lg {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pill {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.pill:hover {
  color: var(--text-primary);
  border-color: var(--border-medium);
  background: var(--bg-glass-hover);
}

.pill.active {
  background: rgba(108, 92, 231, 0.15);
  border-color: rgba(108, 92, 231, 0.35);
  color: var(--text-accent);
}

.skills-section {
  padding: var(--space-6) 0 var(--space-16);
}

.skills-count {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

.skills-count strong {
  color: var(--text-secondary);
}

.grid-skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
}

.no-results {
  text-align: center;
  padding: var(--space-16) 0;
  color: var(--text-tertiary);
}

.load-more-row {
  display: flex;
  justify-content: center;
  padding: var(--space-8) 0 var(--space-4);
}

.load-more-btn {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  transition: all var(--transition-base);
}

.load-more-btn:hover {
  border-color: rgba(108, 92, 231, 0.4);
  color: var(--text-accent);
  background: rgba(108, 92, 231, 0.08);
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.skill-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

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

.skill-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-card-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.skill-card-cat-icon {
  font-size: 16px;
}

.skill-card-cat-name {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: capitalize;
  font-weight: 500;
}

.skill-card-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.skill-card-downloads {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 500;
}

.skill-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.skill-card-tagline {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.skill-card-compat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-2);
  gap: var(--space-2);
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  font-family: var(--font-sans);
}

.card-action-download {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.25);
  margin-left: auto; 
}

.card-action-download:hover {
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.45);
  transform: translateY(-1px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-6);
  animation: fadeIn 200ms ease;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-scroll {
  overflow-y: auto;
  flex: 1;
  padding: var(--space-8);
  padding-top: calc(var(--space-4) + 36px + var(--space-3));
  scrollbar-width: thin;
  scrollbar-color: var(--border-medium) transparent;
}

.modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  margin: var(--space-3) 0;
}

.modal-scroll::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 3px;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  transition: all var(--transition-fast);
  font-size: var(--text-2xl);
  z-index: 10;
}

.modal-close:hover {
  background: var(--bg-glass);
  color: var(--text-primary);
}

.detail-header {
  margin-bottom: var(--space-5);
}

.detail-meta-row {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.detail-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.detail-tagline {
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.detail-stats {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-5);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.detail-stat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.detail-description {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.detail-outcome {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.detail-outcome strong {
  color: var(--text-accent);
}

.detail-preview-toggle {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-4);
  cursor: pointer;
  transition: color var(--transition-fast);
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--space-2) 0;
}

.detail-preview-toggle:hover {
  color: var(--text-accent);
}

.skill-preview {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: pre-wrap;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: var(--space-5);
}

.detail-download-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-5);
}

.detail-download-btn {
  width: 100%;
  justify-content: center;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-6);
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  padding: var(--space-8) 0 var(--space-6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-logo-text {
  font-size: var(--text-base);
  font-weight: 700;
}

.footer-tagline {
  color: var(--text-tertiary);
  font-size: var(--text-xs);
  margin-top: var(--space-1);
}

.footer-right {
  display: flex;
  gap: var(--space-4);
}

.footer-link {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-4);
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: var(--text-xs);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse-fire {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-3xl: 1.5rem;
    --space-16: 40px;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .hero-section {
    padding: var(--space-10) 0 var(--space-6);
  }

  .typewriter-hero {
    min-height: 90px;
  }

  .typewriter-heading {
    font-size: var(--text-3xl);
  }

  .typewriter-role {
    font-size: var(--text-xl);
  }

  .grid-skills {
    grid-template-columns: 1fr;
  }

  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .pill {
    flex-shrink: 0;
  }

  .sort-toggle-btn {
    min-width: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
  }

  .sort-label {
    display: none;
  }

  .modal-content {
    margin: var(--space-3);
    max-height: 90vh;
  }

  .modal-scroll {
    padding: var(--space-5);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .skill-card-top {
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .grid-skills {
    grid-template-columns: 1fr;
  }

  .navbar-coffee-label {
    display: none;
  }

  .navbar-coffee-btn {
    padding: 8px 10px;
  }
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

::selection {
  background: rgba(108, 92, 231, 0.3);
  color: var(--text-primary);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.detail-tag {
  font-size: var(--text-xs);
  color: var(--text-accent);
  background: rgba(108, 92, 231, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.search-clear-btn {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 5;
}

.search-clear-btn:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.search-main .input-lg {
  padding-right: var(--space-12);
}

.navbar-coffee-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  font-family: var(--font-sans);
}

.navbar-coffee-btn:hover {
  color: #f5c842;
  border-color: rgba(245, 200, 66, 0.4);
  background: rgba(245, 200, 66, 0.08);
  box-shadow: 0 0 18px rgba(245, 200, 66, 0.12);
  transform: translateY(-1px);
}

.support-modal-overlay {
  z-index: 1100;
}

.support-modal {
  max-width: 440px;
  text-align: center;
  border: 1px solid rgba(245, 200, 66, 0.18);
  background: var(--bg-secondary);
  overflow: visible;
}

.support-modal-body {
  padding: var(--space-12) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.support-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.support-icon {
  font-size: 48px;
  position: relative;
  z-index: 1;
  display: block;
  animation: coffee-wobble 3s ease-in-out infinite;
}

@keyframes coffee-wobble {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  25% { transform: rotate(4deg) scale(1.06); }
  50% { transform: rotate(-2deg) scale(1.02); }
  75% { transform: rotate(3deg) scale(1.05); }
}

.support-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.22) 0%, transparent 70%);
  animation: coffee-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes coffee-glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
}

.support-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.support-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

.support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 700;
  color: #1a1000;
  background: linear-gradient(135deg, #f5c842 0%, #f59542 100%);
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.35);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  margin-top: var(--space-2);
}

.support-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 200, 66, 0.5);
  background: linear-gradient(135deg, #fcd44a 0%, #f8a04a 100%);
}

.support-skip-btn {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color var(--transition-fast);
  padding: var(--space-1) var(--space-2);
}

.support-skip-btn:hover {
  color: var(--text-secondary);
}
