* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
html, body {
  width: 100%;
  min-height: 100vh;
}
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(ellipse 80% 50% at 20% -20%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 100%, rgba(129, 140, 248, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h2::before {
  display: none;
}
h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--text-primary);
}
p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.7;
}
ol {
  margin: 12px 0;
  padding-left: 18px;
  color: var(--text-secondary);
}
ol li {
  margin-bottom: 6px;
  font-size: 13px;
}
code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.link {
  color: var(--accent-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.link:hover {
  opacity: 0.8;
}
.divider {
  height: 1px;
  background: var(--glass-border);
  margin: 32px 0;
}
.quote {
  padding: 14px 16px;
  margin: 10px 0;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--accent-primary);
  font-size: 13px;
  color: var(--text-secondary);
}
.quote.quote-blue {
  border-left-color: var(--info);
}
.quote.quote-green {
  border-left-color: var(--success);
}
.quote.quote-orange {
  border-left-color: #fb923c;
}
.quote.quote-yellow {
  border-left-color: var(--warning);
}
::selection {
  background: rgba(167, 139, 250, 0.3);
  color: var(--text-primary);
}
ul {
  list-style: disc;
  padding-left: 28px;
  margin: 12px 0;
}

ul li {
  padding-left: 12px;
  margin-bottom: 8px;
}

ol {
  list-style: decimal;
  padding-left: 28px;
  margin: 12px 0;
}

ol li {
  padding-left: 8px;
  margin-bottom: 8px;
}

ol li::marker {
  font-weight: 500;
  color: var(--text-secondary);
}
/* Account page game-specific visibility */
.callout.account-fortnite-only,
.accordion.account-fortnite-only {
    display: none !important;
}

.callout.account-other-only,
.accordion.account-other-only {
    display: none !important;
}

body.game-fortnite .callout.account-fortnite-only,
body.game-fortnite .accordion.account-fortnite-only {
    display: flex !important;
}

body.game-fortnite .accordion.account-fortnite-only {
    display: block !important;
}

body.game-other .callout.account-other-only,
body.game-other .accordion.account-other-only {
    display: flex !important;
}

body.game-other .accordion.account-other-only {
    display: block !important;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

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

/* Model List */
.model-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.model-list li {
    padding: 10px 14px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.model-list li strong {
    color: var(--text-primary);
    font-weight: 500;
}