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

:root {
    --bg-primary:    #080c14;
    --bg-secondary:  #0b1120;
    --bg-card:       #0f1826;
    --bg-card-hover: #152030;
    --text-primary:  #e8f0ff;
    --text-secondary: #5a7090;
    --accent:        #2563eb;
    --accent-2:      #1d4ed8;
    --accent-grad:   linear-gradient(135deg, #3b82f6 0%, #2563eb 60%, #1e40af 100%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(37, 99, 235, 0.2);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(8, 8, 15, 0.6);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    padding: 14px 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background: rgba(8, 8, 15, 0.96);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.8);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.logo:hover { opacity: 0.8; }

.logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.logo-light  { color: #f0f0ff; }
.logo-discord {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.93rem;
    padding: 7px 14px;
    border-radius: 9px;
    transition: color 0.2s, background 0.2s;
}

.nav-download-btn {
    margin-left: 10px;
    padding: 8px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    height: auto;
    border-radius: 10px;
    white-space: nowrap;
    text-decoration: none;
    background: var(--accent-grad);
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(37, 99, 235, 0.12);
}

.nav-actions { display: flex; gap: 12px; align-items: center; }

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.github-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px;
    transition: opacity 0.2s;
}

.mobile-menu-btn:hover { opacity: 0.7; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 62px;
    left: 0; right: 0;
    background: rgba(8, 8, 15, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 20px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    animation: slideDown 0.25s ease;
}

.mobile-nav.active { display: flex; }

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    background: rgba(37, 99, 235, 0.12);
}

.mobile-github {
    margin-top: 8px;
    border: 1px solid var(--border-subtle);
}

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

/* ─── Hero ─── */
.hero {
    padding: 165px 0 115px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 65%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation: glow1Pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 65%);
    bottom: -50px;
    right: 5%;
    animation: glow2Pulse 8s ease-in-out infinite;
}

@keyframes glow1Pulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scale(1.12); }
}

@keyframes glow2Pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 0.9; transform: scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.28);
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 30px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge i { color: #fbbf24; font-size: 0.78rem; }

.hero-title {
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: var(--text-primary);
    animation: fadeUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 46px;
    line-height: 1.8;
    animation: fadeUp 0.6s ease 0.2s both;
}

.download-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
}

.download-btn.primary {
    background: var(--accent-grad);
    color: #fff;
    box-shadow: 0 0 28px rgba(37, 99, 235, 0.4);
}

.download-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.6);
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(37, 99, 235, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn-badge {
    background: rgba(255, 255, 255, 0.22);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    margin-top: 56px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    animation: fadeUp 0.6s ease 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    gap: 3px;
}

.hero-stat strong {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Section commons ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.24);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-action {
    text-align: center;
    margin-top: 48px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    background: rgba(37, 99, 235, 0.06);
    transition: background 0.25s, border-color 0.25s, transform 0.25s, gap 0.25s;
}

.view-all-btn:hover {
    background: rgba(37, 99, 235, 0.14);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
    gap: 14px;
}

/* ─── Features ─── */
.features {
    padding: 114px 0;
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.45), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border-subtle);
    transition: border-color 0.3s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(37, 99, 235, 0.07), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(37, 99, 235, 0.32);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 58px;
    height: 58px;
    background: rgba(37, 99, 235, 0.13);
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #60a5fa;
    margin-bottom: 22px;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(37, 99, 235, 0.22);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.3);
    transform: scale(1.08);
}

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

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

/* ─── Themes ─── */
.themes {
    padding: 114px 0;
    background: var(--bg-primary);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.theme-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    transition: border-color 0.35s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}

.theme-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.92) 100%);
}

.theme-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px 24px;
    z-index: 2;
}

.theme-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.theme-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.theme-downloads {
    color: #60a5fa;
    font-size: 0.86rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.theme-btn {
    padding: 6px 16px;
    background: var(--accent-grad);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s;
}

.theme-btn:hover { box-shadow: 0 0 16px rgba(37, 99, 235, 0.5); }

.theme-card:hover .theme-preview { transform: scale(1.06); }

.theme-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
}

.theme-card:hover .theme-info p,
.theme-card:hover .theme-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Plugins ─── */
.plugins {
    padding: 114px 0;
    background: var(--bg-secondary);
    position: relative;
}

.plugins::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.45), transparent);
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.plugin-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.plugin-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.plugin-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.11);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #60a5fa;
    transition: background 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.plugin-card:hover .plugin-icon {
    background: rgba(37, 99, 235, 0.22);
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.3);
}

.plugin-content { flex: 1; }

.plugin-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.plugin-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

.plugin-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.83rem;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.plugin-meta i { color: #60a5fa; margin-right: 3px; }

.plugin-install-btn {
    margin-left: auto;
    padding: 6px 15px;
    background: rgba(37, 99, 235, 0.13);
    border: 1px solid rgba(37, 99, 235, 0.28);
    border-radius: 8px;
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.plugin-install-btn:hover {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.5);
    color: #fff;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── CTA ─── */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid rgba(37, 99, 235, 0.12);
}

.cta-glow {
    position: absolute;
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.14) 0%, transparent 68%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta .container { position: relative; z-index: 1; }

.cta-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 0 auto 46px;
    max-width: 460px;
    line-height: 1.75;
}

/* ─── Footer ─── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 2.4fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-socials { display: flex; gap: 8px; }

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.social-icon:hover {
    background: rgba(37, 99, 235, 0.14);
    border-color: rgba(37, 99, 235, 0.35);
    color: #60a5fa;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 11px;
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-column a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.footer-legal { display: flex; gap: 22px; }

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ─── Scroll animations ─── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .nav-center {
        position: static;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav           { display: none; }
    .nav-actions   { display: none; }
    .mobile-menu-btn { display: block; }

    .hero { padding: 130px 0 80px; }

    .hero-stats { padding: 14px 18px; }
    .hero-stat  { padding: 0 14px; }

    .themes-grid,
    .features-grid,
    .plugins-grid { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 36px; }
    .footer-links   { grid-template-columns: repeat(2, 1fr); }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .hero-stats {
        flex-direction: column;
        gap: 14px;
        padding: 18px 24px;
    }

    .hero-stat-divider {
        width: 50px;
        height: 1px;
    }

    .download-buttons { flex-direction: column; align-items: center; }
    .download-btn     { width: 100%; justify-content: center; max-width: 300px; }

    .footer-links { grid-template-columns: 1fr; }
}
