/* ===== RESET & VARIABLES ===== */
:root {
    --primary: #B5A6FF;
    --secondary: #7054FF;
    --primary-dark: #5a3fcc;
    --primary-glow: rgba(112, 84, 255, 0.4);

    --bg-dark: #0a0612;
    --bg-darker: #050309;
    --bg-card: #14101f;
    --bg-card-hover: #1a1530;
    --border: rgba(181, 166, 255, 0.15);
    --border-hover: rgba(181, 166, 255, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #c8c0e0;
    --text-muted: #8a82a0;

    --yteria: #4ade80;
    --yteria-dark: #22c55e;
    --yteria-glow: rgba(74, 222, 128, 0.4);

    --hardcore: #ef4444;
    --hardcore-dark: #b91c1c;
    --hardcore-glow: rgba(239, 68, 68, 0.4);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* ===== BACKGROUND EFFECTS ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 10%, rgba(112, 84, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(181, 166, 255, 0.1), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(112, 84, 255, 0.05), transparent 60%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(181, 166, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181, 166, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0;
    box-shadow: 0 0 10px var(--primary);
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(180deg);
        opacity: 0;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: balance;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pixel-font {
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 0.05em;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(112, 84, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 6, 18, 0.4);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, padding, background;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 6, 18, 0.85);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(112, 84, 255, 0.08);
}

.navbar.hidden {
    transform: translateY(-110%);
}

/* Scroll progress bar */
.nav-progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    box-shadow: 0 0 12px var(--primary-glow), 0 0 24px var(--primary-glow);
    border-radius: 2px;
    transition: width 0.1s linear;
    animation: progress-shine 3s linear infinite;
}

@keyframes progress-shine {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.nav-logo::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(8px);
}

.nav-logo:hover {
    transform: scale(1.06) rotate(-2deg);
}

.nav-logo:hover::before {
    opacity: 1;
}

.nav-logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--primary-glow));
    transition: filter var(--transition), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.navbar.scrolled .nav-logo img {
    height: 36px;
    filter: drop-shadow(0 0 16px var(--primary-glow));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    position: relative;
}

/* Magnetic sliding indicator */
.nav-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 42px;
    background: linear-gradient(135deg, rgba(112, 84, 255, 0.2) 0%, rgba(181, 166, 255, 0.12) 100%);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease,
                background 0.3s ease;
    z-index: 0;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(112, 84, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.nav-indicator::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary);
}

.nav-indicator.visible {
    opacity: 1;
}

.nav-links li {
    position: relative;
    z-index: 1;
}

.nav-links a {
    display: inline-block;
    padding: 11px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    background: transparent;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-cta {
    margin-left: 16px;
    position: relative;
    overflow: hidden;
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.nav-cta:hover::after {
    opacity: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background: rgba(181, 166, 255, 0.15);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(112, 84, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fade-in-up 0.8s ease-out;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--yteria);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--yteria);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 24px;
    animation: fade-in-up 0.8s ease-out 0.1s backwards;
    filter: drop-shadow(0 0 40px var(--primary-glow));
}

.hero h1 {
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    animation: fade-in-up 0.8s ease-out 0.3s backwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease-out 0.4s backwards;
}

.hero-stats {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fade-in-up 0.8s ease-out 0.5s backwards;
}

.stat {
    padding: 24px;
    background: rgba(20, 16, 31, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.stat:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative blocks (Minecraft style) */
.floating-blocks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-block {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    border-radius: 8px;
    opacity: 0.1;
    animation: float-block 20s ease-in-out infinite;
    box-shadow: 0 8px 32px var(--primary-glow);
}

.floating-block:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-block:nth-child(2) { top: 70%; left: 85%; animation-delay: -5s; width: 40px; height: 40px; }
.floating-block:nth-child(3) { top: 30%; left: 80%; animation-delay: -10s; width: 80px; height: 80px; }
.floating-block:nth-child(4) { top: 80%; left: 15%; animation-delay: -15s; width: 50px; height: 50px; }

@keyframes float-block {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(15deg);
    }
    50% {
        transform: translate(-20px, -50px) rotate(-15deg);
    }
    75% {
        transform: translate(-40px, 20px) rotate(10deg);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(181, 166, 255, 0.15), rgba(112, 84, 255, 0.15));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== SERVER CARDS ===== */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    display: flex;
    flex-direction: column;
}

.server-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.server-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-color, var(--border-hover));
    box-shadow: var(--shadow-lg), 0 0 60px var(--card-glow, var(--primary-glow));
}

.server-banner {
    height: 180px;
    background: linear-gradient(135deg, var(--card-color, var(--secondary)), var(--card-color-dark, var(--primary-dark)));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, transparent, rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.server-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.server-logo {
    max-width: 240px;
    max-height: 140px;
    width: auto;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition);
}

.server-card:hover .server-logo {
    transform: scale(1.08);
}

.server-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.server-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--card-color, var(--primary));
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    width: fit-content;
}

.server-card h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.server-card .description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex: 1;
    font-size: 0.98rem;
}

.server-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.server-features span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.server-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.server-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    background: var(--card-color, var(--secondary));
    color: white;
    border: 1px solid var(--card-color, var(--secondary));
}

.server-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--card-glow, var(--primary-glow));
}

.server-btn-outline {
    background: transparent;
    color: var(--card-color, var(--primary));
    border-color: var(--card-color, var(--border));
}

.server-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Server card themes */
.server-card.theme-purple {
    --card-color: var(--primary);
    --card-color-dark: var(--secondary);
    --card-glow: var(--primary-glow);
}

.server-card.theme-green {
    --card-color: var(--yteria);
    --card-color-dark: var(--yteria-dark);
    --card-glow: var(--yteria-glow);
}

.server-card.theme-red {
    --card-color: var(--hardcore);
    --card-color-dark: var(--hardcore-dark);
    --card-glow: var(--hardcore-glow);
}

/* ===== PLUGINS ===== */
.plugins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.plugin-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.plugin-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.plugin-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.plugin-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.plugin-logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(181, 166, 255, 0.1), rgba(112, 84, 255, 0.1));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px;
    overflow: hidden;
}

.plugin-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plugin-logo-wrapper.coming-soon {
    background: repeating-linear-gradient(
        45deg,
        rgba(181, 166, 255, 0.05),
        rgba(181, 166, 255, 0.05) 10px,
        rgba(112, 84, 255, 0.05) 10px,
        rgba(112, 84, 255, 0.05) 20px
    );
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}

.plugin-info h3 {
    margin-bottom: 8px;
}

.plugin-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plugin-status.available {
    background: rgba(74, 222, 128, 0.15);
    color: var(--yteria);
}

.plugin-status.coming-soon {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
}

.plugin-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

.plugin-description {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.plugin-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.plugin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(181, 166, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition);
}

.plugin-link:hover {
    background: rgba(181, 166, 255, 0.15);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    color: var(--primary);
}

.plugin-link svg {
    width: 18px;
    height: 18px;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(112, 84, 255, 0.15), transparent);
    pointer-events: none;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    position: relative;
    border: 3px solid var(--bg-card);
    box-shadow: 0 0 30px var(--primary-glow);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.team-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.team-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.team-badge {
    padding: 4px 12px;
    background: rgba(181, 166, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(112, 84, 255, 0.15) 0%, rgba(181, 166, 255, 0.05) 100%);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(112, 84, 255, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
    position: relative;
}

.cta-box .btn {
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(181, 166, 255, 0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(181, 166, 255, 0.15);
    border-color: var(--border-hover);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== PAGE HEADERS ===== */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(112, 84, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--primary);
    transition: opacity var(--transition);
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */

/* Large desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero-stats {
        gap: 20px;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

    .features-grid {
        gap: 20px;
    }

    .servers-grid {
        gap: 24px;
    }

    .plugins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Tablet */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(10, 6, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform var(--transition);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .nav-links a.active {
        background: rgba(112, 84, 255, 0.15);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-indicator {
        display: none;
    }

    .navbar {
        padding: 14px 0;
    }

    .hero {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .hero-logo {
        max-width: 420px;
    }

    .hero-stats {
        margin-top: 48px;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .stat {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .server-banner {
        height: 160px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

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

    .page-header {
        padding: 130px 0 60px;
    }

    .cta-box {
        padding: 52px 32px;
    }
}

/* Small tablet / large mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    section {
        padding: 60px 0;
    }

    .features,
    .cta-section {
        padding: 60px 0;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    h2 {
        font-size: clamp(1.7rem, 6vw, 2.6rem);
    }

    h3 {
        font-size: clamp(1.3rem, 4vw, 1.7rem);
    }

    p {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .hero-logo {
        max-width: 340px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-stats {
        margin-top: 40px;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat {
        padding: 16px 10px;
    }

    .floating-block {
        opacity: 0.05;
    }

    .servers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .server-content {
        padding: 24px;
    }

    .plugins-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plugin-card {
        padding: 24px;
    }

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

    .team-card {
        padding: 32px 24px;
    }

    .page-header {
        padding: 110px 0 40px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .cta-section {
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .plugin-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .plugin-logo-wrapper {
        margin: 0 auto;
        width: 88px;
        height: 88px;
    }

    .plugin-header > div:last-child {
        text-align: center;
        width: 100%;
    }

    .plugin-links {
        justify-content: center;
    }

    .server-banner {
        height: 140px;
        padding: 16px;
    }

    .server-logo {
        max-width: 180px;
        max-height: 100px;
    }

    .server-content {
        padding: 20px;
    }

    .server-card h3 {
        font-size: 1.4rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .team-card {
        padding: 28px 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 1.7rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .page-header {
        padding: 100px 0 30px;
    }

    .footer {
        padding: 48px 0 20px;
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .nav-logo {
        justify-content: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .nav-logo img {
        height: 36px;
    }

    .navbar.scrolled .nav-logo img {
        height: 32px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    h1 {
        font-size: clamp(1.7rem, 9vw, 2.4rem);
    }

    .hero {
        padding: 90px 0 30px;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-badge span:last-child {
        max-width: 200px;
        white-space: normal;
        text-align: center;
    }

    .hero-logo {
        max-width: 240px;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .stat {
        padding: 14px 8px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .server-actions {
        flex-direction: column;
    }

    .server-actions .server-btn {
        width: 100%;
        justify-content: center;
    }

    .server-card {
        border-radius: var(--radius-md);
    }

    .plugin-card {
        padding: 22px 18px;
        border-radius: var(--radius-md);
    }

    .plugin-links {
        flex-direction: column;
        width: 100%;
    }

    .plugin-link {
        width: 100%;
        justify-content: center;
    }

    .team-card {
        padding: 28px 18px;
        border-radius: var(--radius-md);
    }

    .team-badges {
        gap: 6px;
    }

    .team-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .cta-box {
        padding: 32px 18px;
        border-radius: var(--radius-md);
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .breadcrumbs {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

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

/* Extra small mobile */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .nav-logo img {
        height: 32px;
    }

    .navbar.scrolled .nav-logo img {
        height: 28px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .btn {
        padding: 11px 18px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 13px 20px;
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-stats {
        margin-top: 32px;
    }

    .floating-block {
        display: none;
    }
}

/* Touch devices — disable hover lifts that feel laggy */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .server-card:hover,
    .plugin-card:hover,
    .team-card:hover,
    .stat:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-block,
    .particle {
        display: none !important;
    }
}

/* ===== UTILITIES ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

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

::selection {
    background: var(--secondary);
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary), var(--primary-dark));
    border-radius: 5px;
}

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

/* ===== PREMIUM ENHANCEMENTS ===== */

/* Aurora animated mesh background */
.aurora {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.aurora::before,
.aurora::after {
    content: '';
    position: absolute;
    width: 80vmax;
    height: 80vmax;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    will-change: transform;
}

.aurora::before {
    top: -30vmax;
    left: -20vmax;
    background: radial-gradient(circle, var(--secondary), transparent 60%);
    animation: aurora-1 28s ease-in-out infinite alternate;
}

.aurora::after {
    bottom: -30vmax;
    right: -20vmax;
    background: radial-gradient(circle, var(--primary), transparent 60%);
    animation: aurora-2 32s ease-in-out infinite alternate;
}

.aurora-blob {
    position: absolute;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(112, 84, 255, 0.5), transparent 60%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    top: 30%;
    left: 40%;
    animation: aurora-3 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    50%  { transform: translate(20vmax, 10vmax) rotate(90deg) scale(1.2); }
    100% { transform: translate(10vmax, 30vmax) rotate(180deg) scale(0.9); }
}

@keyframes aurora-2 {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    50%  { transform: translate(-15vmax, -20vmax) rotate(-90deg) scale(1.1); }
    100% { transform: translate(-25vmax, -5vmax) rotate(-180deg) scale(0.95); }
}

@keyframes aurora-3 {
    0%   { transform: translate(-50%, -50%) scale(1); }
    50%  { transform: translate(-30%, -70%) scale(1.3); }
    100% { transform: translate(-70%, -30%) scale(0.85); }
}

/* Subtle noise grain on aurora */
.aurora-grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ===== LOADING SCREEN ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 200px;
    max-width: 60vw;
    filter: drop-shadow(0 0 32px var(--primary-glow));
    animation: loader-pulse 1.6s ease-in-out infinite;
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--primary-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 40px var(--primary-glow)); }
}

.loader-bar {
    width: 220px;
    max-width: 60vw;
    height: 3px;
    background: rgba(181, 166, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    animation: loader-shine 1.4s ease-in-out infinite;
}

@keyframes loader-shine {
    0% { left: -40%; }
    100% { left: 100%; }
}

.loader-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ===== CUSTOM CURSOR (desktop only) ===== */
@media (hover: hover) and (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9998;
        will-change: transform;
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background: var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 12px var(--primary);
        transition: width 0.2s, height 0.2s, opacity 0.2s;
    }

    .cursor-ring {
        width: 36px;
        height: 36px;
        border: 1.5px solid var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
        opacity: 0.6;
    }

    .cursor-ring.hover {
        width: 60px;
        height: 60px;
        background: rgba(181, 166, 255, 0.1);
        border-color: var(--primary);
        opacity: 1;
    }

    .cursor-ring.click {
        width: 20px;
        height: 20px;
        background: var(--primary);
    }

    body.cursor-enabled {
        cursor: none;
    }

    body.cursor-enabled a,
    body.cursor-enabled button,
    body.cursor-enabled .btn,
    body.cursor-enabled input,
    body.cursor-enabled .server-card,
    body.cursor-enabled .feature-card,
    body.cursor-enabled .plugin-card,
    body.cursor-enabled .team-card {
        cursor: none;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    border: 2px solid var(--border-hover);
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px var(--primary-glow);
}

.scroll-top svg.arrow {
    width: 20px;
    height: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.scroll-top svg.ring {
    position: absolute;
    inset: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    transform: rotate(-90deg);
}

.scroll-top svg.ring circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: butt;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    transition: stroke-dashoffset 0.1s linear;
    filter: drop-shadow(0 0 6px var(--primary));
}

/* ===== MARQUEE ===== */
.marquee {
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(112, 84, 255, 0.04), rgba(181, 166, 255, 0.02));
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.marquee-item:hover {
    color: var(--primary);
}

.marquee-item span.dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--primary);
    transform: rotate(45deg);
}

.marquee-item.accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 32px)); }
}

/* ===== FAQ ===== */
.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);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.faq-item.open {
    background: linear-gradient(135deg, rgba(112, 84, 255, 0.08), rgba(181, 166, 255, 0.03));
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(112, 84, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.open .faq-question {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(112, 84, 255, 0.15);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.open .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(180deg);
}

.faq-item.open .faq-icon svg {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ===== CARD MOUSE GLOW (lights follow cursor inside card) ===== */
.feature-card,
.server-card,
.plugin-card,
.team-card,
.faq-item,
.stat {
    position: relative;
}

.feature-card::after,
.plugin-card::after,
.team-card::after,
.stat::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(181, 166, 255, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover::after,
.plugin-card:hover::after,
.team-card:hover::after,
.stat:hover::after {
    opacity: 1;
}

.feature-card > *,
.plugin-card > *,
.team-card > *,
.stat > * {
    position: relative;
    z-index: 2;
}

/* ===== TITLE LETTER REVEAL ===== */
.reveal-letters {
    display: inline-block;
}

.reveal-letters .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotate(8deg);
    transition: opacity 0.5s, transform 0.5s;
}

.reveal-letters .char.space {
    width: 0.3em;
}

.reveal-letters.visible .char {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* ===== HERO WORD ROTATOR ===== */
.word-rotator {
    display: inline-block;
    position: relative;
    color: var(--primary);
    min-width: 1ch;
    text-align: left;
}

.word-rotator::after {
    content: '|';
    color: var(--primary);
    animation: caret 1s steps(1) infinite;
    margin-left: 2px;
    font-weight: 400;
}

@keyframes caret {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ===== MAGNETIC BUTTONS ===== */
.btn {
    will-change: transform;
}

.btn-magnetic {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, background 0.3s;
}

/* ===== SERVER IP COPY BUTTON ===== */
.server-ip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 16px;
    width: 100%;
    user-select: all;
}

.server-ip:hover {
    border-color: var(--card-color, var(--border-hover));
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.4);
}

.server-ip.copied {
    border-color: var(--yteria);
    color: var(--yteria);
}

.server-ip-icon {
    margin-left: auto;
    color: var(--card-color, var(--primary));
    flex-shrink: 0;
}

/* ===== PAGE TRANSITION ===== */
.page-content {
    animation: page-fade-in 0.6s ease-out;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved focus visible */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus,
a:focus {
    outline: none;
}

/* ===== ENHANCED HOVER GLOW on server cards ===== */
.server-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
}

.server-card .server-banner img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s;
}

.server-card:hover .server-banner img {
    transform: scale(1.12) translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.6));
}

/* ===== BADGE FLOATING DOTS ===== */
.hero-badge .pulse {
    position: relative;
}

.hero-badge .pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--yteria);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ===== 3D MINECRAFT CUBE ===== */
.cube-scene {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    perspective: 800px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.cube-scene.left {
    right: auto;
    left: 8%;
    top: 65%;
    width: 90px;
    height: 90px;
    opacity: 0.5;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cube-rotate 18s linear infinite;
}

.cube-scene.left .cube {
    animation-duration: 22s;
    animation-direction: reverse;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(181, 166, 255, 0.6);
    background: linear-gradient(135deg, rgba(112, 84, 255, 0.4), rgba(181, 166, 255, 0.2));
    box-shadow: inset 0 0 30px rgba(112, 84, 255, 0.3), 0 0 20px rgba(112, 84, 255, 0.4);
    backdrop-filter: blur(2px);
}

.cube-face::before {
    content: '';
    position: absolute;
    inset: 8px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.cube-face.front  { transform: translateZ(60px); }
.cube-face.back   { transform: translateZ(-60px) rotateY(180deg); }
.cube-face.right  { transform: rotateY(90deg) translateZ(60px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(60px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(60px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(60px); }

.cube-scene.left .cube-face.front  { transform: translateZ(45px); }
.cube-scene.left .cube-face.back   { transform: translateZ(-45px) rotateY(180deg); }
.cube-scene.left .cube-face.right  { transform: rotateY(90deg) translateZ(45px); }
.cube-scene.left .cube-face.left   { transform: rotateY(-90deg) translateZ(45px); }
.cube-scene.left .cube-face.top    { transform: rotateX(90deg) translateZ(45px); }
.cube-scene.left .cube-face.bottom { transform: rotateX(-90deg) translateZ(45px); }

@keyframes cube-rotate {
    0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(0deg); }
}

/* ===== PIXEL WAVE SECTION DIVIDER ===== */
.pixel-divider {
    width: 100%;
    height: 60px;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.pixel-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pixel-divider svg path {
    fill: var(--bg-card);
    opacity: 0.4;
}

/* ===== GLITCH TEXT EFFECT ===== */
.glitch-hover {
    position: relative;
    display: inline-block;
    cursor: default;
}

.glitch-hover::before,
.glitch-hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    opacity: 0;
    pointer-events: none;
    -webkit-background-clip: text;
    background-clip: text;
}

.glitch-hover:hover::before,
.glitch-hover:hover::after {
    opacity: 1;
}

.glitch-hover:hover::before {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    animation: glitch-1 0.5s infinite linear alternate-reverse;
    text-shadow: 2px 0 var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-hover:hover::after {
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
    animation: glitch-2 0.7s infinite linear alternate-reverse;
    text-shadow: -2px 0 var(--secondary);
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%   { transform: translate(0); }
    20%  { transform: translate(-3px, 1px); }
    40%  { transform: translate(2px, -1px); }
    60%  { transform: translate(-1px, 2px); }
    80%  { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0%   { transform: translate(0); }
    25%  { transform: translate(2px, 0); }
    50%  { transform: translate(-2px, 1px); }
    75%  { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

/* ===== DISCORD FLOATING BUTTON ===== */
.discord-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 997;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 14px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    transform: translateY(80px);
    opacity: 0;
}

.discord-fab.visible {
    transform: translateY(0);
    opacity: 1;
}

.discord-fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.6);
    gap: 10px;
    padding-right: 20px;
}

.discord-fab svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.discord-fab-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease;
}

.discord-fab:hover .discord-fab-label {
    max-width: 120px;
}

.discord-fab-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ===== ROADMAP TIMELINE ===== */
.roadmap {
    position: relative;
    margin-top: 64px;
    padding-left: 32px;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 13px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary), rgba(112, 84, 255, 0.1));
    border-radius: 2px;
}

.roadmap-item {
    position: relative;
    padding: 0 0 40px 32px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s, transform 0.6s;
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -28px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    box-shadow: 0 0 16px var(--primary-glow);
    z-index: 2;
}

.roadmap-item.done::before {
    background: var(--primary);
    border-color: var(--primary);
}

.roadmap-item.current::before {
    background: var(--bg-dark);
    border-color: var(--yteria);
    box-shadow: 0 0 16px var(--yteria-glow);
    animation: pulse-glow 2s infinite;
}

.roadmap-item.upcoming::before {
    background: var(--bg-dark);
    border-color: var(--text-muted);
    box-shadow: none;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 16px var(--yteria-glow); }
    50% { box-shadow: 0 0 32px var(--yteria), 0 0 48px var(--yteria-glow); }
}

.roadmap-date {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(112, 84, 255, 0.15);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roadmap-item.done .roadmap-date {
    background: rgba(74, 222, 128, 0.15);
    color: var(--yteria);
    border-color: rgba(74, 222, 128, 0.3);
}

.roadmap-item.current .roadmap-date {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.3);
}

.roadmap-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.roadmap-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrapper {
    overflow-x: auto;
    margin-top: 64px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(112, 84, 255, 0.15), rgba(181, 166, 255, 0.05));
    border-bottom: 1px solid var(--border-hover);
}

.comparison-table th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.comparison-table th:first-child {
    text-align: left;
    width: 32%;
}

.comparison-table th.col-purple { color: var(--primary); }
.comparison-table th.col-green { color: var(--yteria); }
.comparison-table th.col-red { color: var(--hardcore); }

.comparison-table td {
    padding: 16px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: background var(--transition);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tbody tr:hover td {
    background: rgba(181, 166, 255, 0.04);
}

.check-icon, .x-icon, .partial-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 0 auto;
}

.check-icon {
    background: rgba(74, 222, 128, 0.15);
    color: var(--yteria);
}

.x-icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--hardcore);
}

.partial-icon {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
}

/* ===== STATUS BADGE WITH PULSE ===== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--yteria);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yteria);
    position: relative;
}

.status-badge .status-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--yteria);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-ring 2s ease-out infinite;
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--hardcore);
}

.status-badge.offline .status-dot {
    background: var(--hardcore);
}

.status-badge.offline .status-dot::before {
    background: var(--hardcore);
}

/* ===== CLICK PARTICLES ===== */
.click-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 2px;
    pointer-events: none;
    z-index: 9997;
    box-shadow: 0 0 8px var(--primary);
}

/* ===== KEYBOARD HINT ===== */
.keyboard-hint {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    padding: 12px 20px;
    background: rgba(20, 16, 31, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    z-index: 9996;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.keyboard-hint.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.kbd {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(181, 166, 255, 0.15);
    border: 1px solid var(--border-hover);
    border-radius: 4px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: var(--primary);
}

/* ===== KONAMI MODE ===== */
.konami-falling {
    position: fixed;
    top: -50px;
    width: 40px;
    height: 40px;
    z-index: 9999;
    pointer-events: none;
    animation: konami-fall linear forwards;
}

@keyframes konami-fall {
    0% {
        top: -50px;
        transform: rotate(0deg);
    }
    100% {
        top: 105vh;
        transform: rotate(720deg);
    }
}

/* ===== BUTTON RIPPLE ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transform: scale(0);
    animation: ripple-expand 0.6s ease-out;
}

@keyframes ripple-expand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ACHIEVEMENT TOAST (Minecraft-style) ===== */
.achievement {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 9995;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 14px;
    background: rgba(20, 16, 31, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 32px var(--primary-glow);
    color: var(--text-primary);
    transform: translateX(420px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 360px;
}

.achievement.visible {
    transform: translateX(0);
    opacity: 1;
}

.achievement-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.achievement-content small {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 2px;
}

.achievement-content strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Responsive tweaks for new elements */
@media (max-width: 768px) {
    .marquee {
        padding: 24px 0;
    }

    .marquee-track {
        gap: 40px;
    }

    .marquee-item {
        font-size: 1.15rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.98rem;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
        font-size: 0.93rem;
    }

    .scroll-top {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .loader-logo {
        width: 160px;
    }

    .cube-scene {
        width: 80px;
        height: 80px;
        top: 8%;
        right: 4%;
    }

    .cube-scene.left {
        display: none;
    }

    .cube-scene .cube-face.front  { transform: translateZ(40px); }
    .cube-scene .cube-face.back   { transform: translateZ(-40px) rotateY(180deg); }
    .cube-scene .cube-face.right  { transform: rotateY(90deg) translateZ(40px); }
    .cube-scene .cube-face.left   { transform: rotateY(-90deg) translateZ(40px); }
    .cube-scene .cube-face.top    { transform: rotateX(90deg) translateZ(40px); }
    .cube-scene .cube-face.bottom { transform: rotateX(-90deg) translateZ(40px); }

    .discord-fab {
        bottom: 16px;
        left: 16px;
        padding: 10px 12px;
    }

    .discord-fab svg {
        width: 22px;
        height: 22px;
    }

    .achievement {
        right: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
    }

    .roadmap-item h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        font-size: 1rem;
    }

    .marquee-track {
        gap: 28px;
    }

    .cube-scene {
        display: none;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

/* =========================================================
   ADDITIONS — Data-driven UI: pricing, filters, search, tags
   ========================================================= */

/* ----- Utility helpers used by renderers ----- */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }

.section-tight { padding-top: 40px; }

/* ----- Friendly error banner if JSON can't load (file:// case) ----- */
.data-error-banner {
    position: relative;
    z-index: 2000;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(112, 84, 255, 0.08));
    border-bottom: 1px solid rgba(239, 68, 68, 0.35);
    padding: 16px 24px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 920px;
    margin: 0 auto;
    border-radius: 0 0 16px 16px;
}
.data-error-banner strong { color: var(--hardcore); }
.data-error-banner code,
.data-error-banner pre {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2px 8px;
    font-family: 'Menlo', 'Consolas', monospace;
    font-size: 0.9em;
}
.data-error-banner pre {
    padding: 10px 14px;
    margin: 8px 0;
    overflow-x: auto;
}

/* ----- Unified pill metrics — every badge in a meta row uses the same box -----
   Original .server-badge had margin-bottom + width: fit-content; we reset those
   here so all badges (server-badge, status-badge, server-version, server-edition)
   share an identical baseline, height, padding and font-size. */
.server-badge,
.status-badge,
.server-version,
.server-edition {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 26px;
    padding: 0 12px;
    margin: 0;
    width: auto;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    box-sizing: border-box;
}

/* server-badge keeps its themed color */
.server-badge {
    color: var(--card-color, var(--primary));
    background: rgba(255, 255, 255, 0.06);
}

/* ----- Status badge variants ----- */
.status-badge {
    background: rgba(74, 222, 128, 0.12);
    color: var(--yteria);
    border-color: rgba(74, 222, 128, 0.3);
}
.status-badge .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
.status-badge.status-development {
    background: rgba(181, 166, 255, 0.12);
    color: var(--primary);
    border-color: var(--border-hover);
}
.status-badge.status-maintenance {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    border-color: rgba(250, 204, 21, 0.35);
}
.status-badge.status-offline {
    background: rgba(239, 68, 68, 0.1);
    color: var(--hardcore);
    border-color: rgba(239, 68, 68, 0.3);
}

/* ----- Meta rows: ensure badges sit on the same line ----- */
.server-meta-row,
.server-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}
.server-meta-row { margin-bottom: 12px; }

/* ----- Server IP copy button ----- */
.server-ip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 16, 31, 0.7);
    border: 1px dashed var(--border-hover);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: 'Menlo', 'Consolas', monospace;
    cursor: pointer;
    transition: all var(--transition);
}
.server-ip:hover {
    background: rgba(112, 84, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-1px);
}
.server-ip.copied {
    background: rgba(74, 222, 128, 0.12);
    border-color: var(--yteria);
    color: var(--yteria);
}
.server-ip svg { opacity: 0.7; }
.server-ip-text { font-weight: 600; }

/* ----- Pricing badges (plugins) ----- */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    white-space: nowrap;
}
.pricing-badge svg { width: 14px; height: 14px; }
.pricing-badge.pricing-free {
    background: rgba(74, 222, 128, 0.12);
    color: var(--yteria);
    border-color: rgba(74, 222, 128, 0.3);
}
.pricing-badge.pricing-paid {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(245, 158, 11, 0.12));
    color: #fbbf24;
    border-color: rgba(250, 204, 21, 0.45);
    box-shadow: 0 0 16px rgba(250, 204, 21, 0.18);
}
.pricing-badge.pricing-freemium {
    background: rgba(112, 84, 255, 0.12);
    color: var(--primary);
    border-color: var(--border-hover);
}
.pricing-badge.pricing-coming-soon {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-color: var(--border);
}

/* ----- Pricing tiers (premium plugins) ----- */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 20px 0 4px;
}
.pricing-tier {
    border: 1px solid var(--border);
    background: rgba(20, 16, 31, 0.5);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    transition: all var(--transition);
}
.pricing-tier:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.pricing-tier.highlight {
    border-color: rgba(250, 204, 21, 0.45);
    background: linear-gradient(160deg, rgba(250, 204, 21, 0.06), rgba(20, 16, 31, 0.6));
    box-shadow: 0 0 24px rgba(250, 204, 21, 0.12);
}
.pricing-tier.highlight::before {
    content: '★ Recommandé';
    position: absolute;
    top: -10px;
    right: 12px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #1a1530;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}
.pricing-tier-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.pricing-tier-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 12px;
}
.pricing-tier-price strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-tier-price span {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}
.pricing-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pricing-tier li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.pricing-tier li svg {
    flex-shrink: 0;
    color: var(--yteria);
    margin-top: 2px;
    width: 14px;
    height: 14px;
}

/* ----- Tag pills ----- */
.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 16px;
}
.tag-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(181, 166, 255, 0.08);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s;
}
.tag-pill:hover {
    color: var(--primary);
    border-color: var(--border-hover);
    background: rgba(181, 166, 255, 0.14);
}

/* ----- Plugin tagline, title block, status row ----- */
.plugin-title-block { flex: 1; min-width: 0; }
.plugin-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 4px 0 8px;
}
.plugin-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

/* ----- Plugin highlights list ----- */
.plugin-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.plugin-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}
.plugin-highlights li svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

/* ----- Plugin meta footer (rating, downloads, version) ----- */
.plugin-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 12px 0 16px;
    padding: 12px 0;
    border-top: 1px dashed var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.plugin-meta:empty { display: none; }
.plugin-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.plugin-meta-item svg { opacity: 0.7; }
.plugin-version {
    font-family: 'Menlo', 'Consolas', monospace;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.78rem;
}

.plugin-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}
.plugin-rating .star {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    line-height: 1;
}
.plugin-rating .star.full {
    color: #facc15;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
}
.plugin-rating .star.half {
    background: linear-gradient(90deg, #facc15 50%, rgba(255, 255, 255, 0.15) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.plugin-rating small { color: var(--text-muted); }

/* ----- Plugin link disabled state ----- */
.plugin-link.plugin-link-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}
.plugin-logo-placeholder {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    padding: 8px;
}

/* ----- Plugins toolbar (search + filters) ----- */
.plugins-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 28px;
    padding: 16px;
    background: rgba(20, 16, 31, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.plugins-search {
    flex: 1 1 240px;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(10, 6, 18, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.plugins-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(112, 84, 255, 0.15);
}
.plugins-search svg { color: var(--text-muted); flex-shrink: 0; }
.plugins-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
}
.plugins-search input::placeholder { color: var(--text-muted); }

.plugins-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.filter-chip {
    background: rgba(181, 166, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    position: relative;
}
.filter-chip:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(181, 166, 255, 0.12);
    transform: translateY(-1px);
}
.filter-chip.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px var(--primary-glow);
}

/* ----- Plugin card hidden state (filter) ----- */
.plugin-card.is-hidden {
    display: none !important;
}

/* ----- Empty state ----- */
.plugins-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ----- Featured plugin (à la une) ----- */
.featured-plugin {
    margin-bottom: 40px;
    position: relative;
}
.featured-plugin-inner {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.08), transparent 60%),
        linear-gradient(160deg, rgba(112, 84, 255, 0.12) 0%, rgba(20, 16, 31, 0.8) 60%);
    border: 1px solid var(--border-hover);
    box-shadow: 0 8px 40px rgba(112, 84, 255, 0.15);
    overflow: hidden;
}
.featured-plugin-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.4), transparent 30%, transparent 70%, rgba(112, 84, 255, 0.4));
    border-radius: var(--radius-lg);
    opacity: 0.35;
    z-index: -1;
}
.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #1a1530;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(250, 204, 21, 0.3);
}
.featured-tag svg { width: 14px; height: 14px; }
.featured-plugin-grid .plugin-card.is-featured {
    border-color: var(--border-hover);
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.featured-plugin-grid .plugin-card.is-featured::after { display: none; }

/* ----- Team avatar initial fallback ----- */
.team-avatar[data-initial]::after {
    content: attr(data-initial);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.team-avatar-initial {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----- Team social icons ----- */
.team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.team-socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(181, 166, 255, 0.08);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}
.team-socials a:hover {
    color: var(--primary);
    background: rgba(181, 166, 255, 0.16);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.team-socials a svg { width: 16px; height: 16px; }

/* ----- Roadmap centered helper ----- */
.roadmap-centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Server detail visual & layout (re-declared so serveurs.html
   doesn't need its inline <style>) ----- */
.server-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 120px;
}
.server-detail:last-child { margin-bottom: 0; }
.server-detail.reverse { direction: rtl; }
.server-detail.reverse > * { direction: ltr; }

.server-visual {
    position: relative;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--card-color, var(--secondary)), var(--card-color-dark, var(--primary-dark)));
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--card-glow, var(--primary-glow));
}
.server-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(0, 0, 0, 0.4));
    z-index: 1;
}
.server-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
    animation: grid-move 20s linear infinite;
}
@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}
.server-visual img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
    animation: float-soft 4s ease-in-out infinite;
}
@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.server-info h2 { margin-bottom: 20px; margin-top: 4px; }
.server-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.server-features-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.server-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}
.server-features-list li svg {
    color: var(--card-color, var(--primary));
    flex-shrink: 0;
    margin-top: 3px;
}
.server-detail.theme-purple { --card-color: var(--primary); --card-color-dark: var(--secondary); --card-glow: var(--primary-glow); }
.server-detail.theme-green  { --card-color: var(--yteria); --card-color-dark: var(--yteria-dark); --card-glow: var(--yteria-glow); }
.server-detail.theme-red    { --card-color: var(--hardcore); --card-color-dark: var(--hardcore-dark); --card-glow: var(--hardcore-glow); }
.server-detail .server-badge { color: var(--card-color); }
.server-detail .gradient-text-themed {
    background: linear-gradient(135deg, var(--card-color), var(--card-color-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.server-detail .server-btn {
    background: var(--card-color);
    border-color: var(--card-color);
}

@media (max-width: 968px) {
    .server-detail,
    .server-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
        margin-bottom: 80px;
    }
    .server-visual {
        min-height: 280px;
        padding: 40px 20px;
    }
    .server-visual img { max-height: 240px; }
}

@media (max-width: 640px) {
    .server-detail,
    .server-detail.reverse {
        gap: 24px;
        margin-bottom: 60px;
    }
    .server-visual {
        min-height: 220px;
        padding: 32px 16px;
        border-radius: var(--radius-md);
    }
    .server-visual img { max-height: 180px; }
    .server-info p { font-size: 1rem; }
    .server-features-list li { font-size: 0.95rem; }
    .server-actions .server-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .server-detail { margin-bottom: 48px; }
    .server-visual {
        min-height: 180px;
        padding: 24px 12px;
    }
    .server-visual img { max-height: 140px; }
    .server-features-list { gap: 10px; }
}

/* ----- Team avatar pixelated (was in equipe.html) ----- */
.team-avatar-mc {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    position: relative;
}
.team-avatar-mc img {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* ----- Team quote (was in equipe.html) ----- */
.team-quote {
    margin-top: 80px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(112, 84, 255, 0.08), rgba(181, 166, 255, 0.04));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.team-quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 24px;
    font-size: 12rem;
    font-family: 'Georgia', serif;
    color: var(--primary);
    opacity: 0.1;
    font-weight: 700;
}
.team-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.team-quote cite {
    display: block;
    margin-top: 16px;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .team-quote { margin-top: 60px; padding: 36px 28px; }
    .team-quote p { font-size: 1.15rem; }
    .team-quote::before { font-size: 9rem; top: -28px; left: 16px; }
}
@media (max-width: 640px) {
    .team-quote {
        padding: 32px 20px;
        margin-top: 48px;
        border-radius: var(--radius-md);
    }
    .team-quote p { font-size: 1.05rem; }
    .team-quote::before { font-size: 7rem; top: -20px; left: 12px; }
    .team-quote cite { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .team-quote { padding: 28px 16px; }
    .team-quote p { font-size: 0.98rem; }
}

/* ----- Plugin-card padding for the rebuilt template ----- */
.plugin-card .plugin-status-row {
    margin-top: 6px;
}

/* ----- Responsive niceties ----- */
@media (max-width: 640px) {
    .plugins-toolbar {
        padding: 12px;
        gap: 10px;
    }
    .plugins-filters { gap: 4px; }
    .filter-chip { padding: 6px 12px; font-size: 0.8rem; }
    .pricing-tiers { grid-template-columns: 1fr; }
    .server-meta-row,
    .server-detail-meta { gap: 6px; }
}
