:root {
    --bg: #050607; /* Space black background */
    --text: #ffffff;
    --text-muted: #9ca8aa;
    --border: rgba(158, 200, 202, 0.08);
    --border-hover: rgba(158, 200, 202, 0.20);
    --card-bg: rgba(13, 19, 22, 0.65);
    --brand-glow: rgba(158, 200, 202, 0.08);
    --accent: #9ec8ca; /* Soft teal highlight matching the image */
    --font: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --mouse-x: 50vw;
    --mouse-y: 50vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Interactive Ambient Glow mapped to Mouse via JS */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(calc(var(--mouse-x) - 50%), calc(var(--mouse-y) - 50%));
    pointer-events: none;
    z-index: -2;
    filter: blur(80px);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.3"/%3E%3C/svg%3E');
    opacity: 0.05;
}

/* Animated background using the evil.bot asset - absolute position to stay at the top */
.bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -4;
    pointer-events: none;
    overflow: hidden;
    background: #050607;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.bg-animated::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.3) brightness(1.25);
    mix-blend-mode: screen;
    animation: slowSway 28s ease-in-out infinite alternate;
}

@keyframes slowSway {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-1.5%, -1.5%) scale(1.04);
    }
}

/* Scattered star particles */
.bg-grid {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    display: block;
    z-index: -3;
    pointer-events: none;
    opacity: 0.3;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 12%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 65%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 72% 38%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 88% 72%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 8% 82%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 92% 15%, rgba(255,255,255,0.7) 0%, transparent 100%);
    background-size: 400px 400px;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(32px); }
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2% 1.5rem;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo::after {
    content: '.';
    color: var(--accent);
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-center a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-center a:hover,
.nav-center a.active {
    color: #fff;
}

.nav-right {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-invite,
.btn-purchase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 0.8rem;
}

.btn-invite {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-invite:hover {
    transform: translateY(-3px);
    background: var(--text);
    box-shadow: 0 10px 30px rgba(158, 200, 202, 0.4), 0 0 0 2px rgba(158, 200, 202, 0.3);
}

.btn-purchase {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}

.btn-purchase:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-invite svg, .btn-purchase svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
}

.btn-invite:hover svg {
    transform: scale(1.15) rotate(15deg);
}

.btn-purchase:hover svg {
    transform: translateX(4px);
}

/* Views */
.view {
    display: none;
    opacity: 0;
}

.view.active {
    display: block;
    animation: viewEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes viewEnter {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Split */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 12rem 4% 10rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    gap: 5rem;
}



.hero-left {
    flex: 1;
    max-width: 750px;
    z-index: 2;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(158, 200, 202, 0.05);
    border: 1px solid rgba(158, 200, 202, 0.2);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.badge:hover {
    background: rgba(158, 200, 202, 0.1);
    border-color: rgba(158, 200, 202, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(158, 200, 202, 0.2);
}

.badge .arrow {
    transition: transform 0.3s;
}

.badge:hover .arrow {
    transform: translateX(4px);
}

.shine-text {
    background: linear-gradient(to right, #fff 20%, #e0e5e7 40%, #ffffff 60%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-left h1 {
    font-size: clamp(4.5rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.8rem;
}

.hero-left p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 680px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

/* Server Ticker Section */
.ticker-section {
    padding: 2rem 0 6rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.ticker-stats {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-family: var(--mono);
}

.stat-highlight {
    color: #fff;
    font-weight: 600;
}

.server-ticker-container {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
}

.server-ticker-track {
    display: flex;
    gap: 5.5rem;
    width: max-content;
    animation: scrollServers 35s linear infinite;
    align-items: center;
    justify-content: center;
}

.server-ticker-track:hover {
    animation-play-state: paused;
}

.server-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.2rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    transition: transform 0.25s ease;
    cursor: default;
}

.server-card:hover {
    background: transparent;
    border: none;
    transform: translateY(-2px);
    box-shadow: none;
}

.server-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.server-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.server-name-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.server-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.server-members {
    font-size: 0.85rem;
    color: #64748b;
}

.verified-badge {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

@keyframes scrollServers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ultra-Premium Hero Dashboard Mockup */
.hero-dashboard-wrapper {
    width: 100%;
    max-width: 800px;
    position: relative;
    perspective: 1000px;
    margin-top: 2rem;
}

.hero-dashboard {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transform: rotateX(15deg) translateY(0) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
    overflow: hidden;
    text-align: left;
}

.hero-dashboard-wrapper:hover .hero-dashboard {
    transform: rotateX(0deg) translateY(-10px) scale(1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.dash-dots {
    position: absolute;
    left: 1rem;
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.dash-dots span:nth-child(1) {
    background: #ff5f56;
}

.dash-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dash-dots span:nth-child(3) {
    background: #27c93f;
}

.dash-title {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.dash-body {
    padding: 1.5rem;
    font-family: var(--mono);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.code-line {
    display: flex;
    flex-wrap: wrap;
}

.code-line.indent {
    padding-left: 2rem;
}

.token-keyword {
    color: #60a5fa;
}

.token-string {
    color: #98c379;
}

.token-comment {
    color: #5c6370;
    font-style: italic;
}

.token-boolean {
    color: #d19a66;
}

.dash-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.4) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
    transform: translateZ(-50px);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.6s;
}

.hero-dashboard-wrapper:hover .dash-glow {
    opacity: 0.8;
}

/* Interactive Cards with Glowing Conic Borders */
.steps,
.models {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.steps-header,
.models-header {
    margin-bottom: 4rem;
    text-align: center;
}

.steps-header h2,
.models-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.steps-header p,
.models-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps-grid,
.models-grid {
    display: grid;
    gap: 1.5rem;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.models-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.magic-card {
    position: relative;
    padding: 1px;
    /* border thickness */
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    /* subtle base border */
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.magic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(400px circle at calc(var(--mouse-x) - var(--card-x, 0px)) calc(var(--mouse-y) - var(--card-y, 0px)), rgba(255, 255, 255, 0.3), transparent 40%);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s;
}

.magic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.magic-card:hover::before {
    opacity: 1;
}

.card-inner {
    background: var(--card-bg);
    border-radius: 15px;
    height: 100%;
    padding: 2.5rem 2rem;
    z-index: -1;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 20px 40px rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

/* Internal Card Spotlights & Graphics */
.card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at calc(var(--mouse-x) - var(--card-x, 0px)) calc(var(--mouse-y) - var(--card-y, 0px)), rgba(255, 255, 255, 0.08), transparent 40%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 15px;
}

.magic-card:hover .card-inner::after {
    opacity: 1;
}

.card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(ellipse at 50% 0%, rgba(111, 163, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Gorgeous Widget Visuals */
.widget-visual {
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Mockups inside Step Cards */
.discord-mockup {
    display: flex;
    gap: 8px;
}

.dm-server {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.dm-server.active {
    background: var(--accent);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
    transform: scale(1.1);
}

.magic-card:hover .dm-server {
    transform: scale(1.05);
}

.magic-card:hover .dm-server.active {
    transform: scale(1.2);
}

.widget-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.magic-card:hover .widget-icon {
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.code-mockup {
    width: 80%;
}

.cm-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 8px;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.magic-card:hover .cm-line {
    background: rgba(255, 255, 255, 0.3);
}

/* Background graphics in Model Cards */
.widget-bg-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s;
}

.magic-card:hover .widget-bg-graphic {
    opacity: 0.3;
    transform: scale(1.1);
}

.shield-pulse {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite alternate;
}

.wave-anim {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 20px;
}

.wave-anim span {
    width: 8px;
    background: #fff;
    border-radius: 4px;
    animation: bounce 1s infinite alternate;
}

.wave-anim span:nth-child(2) {
    animation-delay: 0.2s;
}

.wave-anim span:nth-child(3) {
    animation-delay: 0.4s;
}

.wave-anim span:nth-child(4) {
    animation-delay: 0.6s;
}

.grid-anim {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle, black, transparent);
    -webkit-mask-image: radial-gradient(circle, black, transparent);
}

.node {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.node.n1 {
    top: 40px;
    left: 40px;
    box-shadow: 0 0 10px #fff;
}

.node.n2 {
    top: 80px;
    left: 100px;
    box-shadow: 0 0 10px #fff;
}

.line {
    position: absolute;
    top: 46px;
    left: 46px;
    width: 70px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform-origin: left;
    transform: rotate(30deg);
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.05;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes bounce {
    0% {
        height: 20%;
    }

    100% {
        height: 80%;
    }
}

/* Step Card Specifics */
.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.magic-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.magic-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.step-link::after {
    content: '→';
    transition: transform 0.3s;
}

.step-link:hover::after {
    transform: translateX(4px);
}

.code-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-family: var(--mono);
    font-size: 0.85rem;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
}

.code-block:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.copy-btn {
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Model Card Specifics */
.model-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.model-icon {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.magic-card:hover .model-icon {
    color: #fff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.magic-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.model-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

/* Fluid Scroll-Linked Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* Revamped Commands Page */
.evil-commands-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 11.5rem 2% 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header & Search */
.commands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.commands-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.commands-title .icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.commands-title .icon-box svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    flex-shrink: 0;
}

.commands-title h1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.commands-search {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.commands-search .search-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

#cmd-search-trigger {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cmd-search-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#cmd-search-trigger svg {
    width: 18px;
    height: 18px;
}

/* Categories Bar */
.commands-categories-bar-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #151515;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.commands-categories-bar {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    scroll-behavior: smooth;
    padding: 0.1rem 0.2rem;
}

.commands-categories-bar::-webkit-scrollbar {
    display: none;
}

/* Scroll arrow buttons */
.cat-scroll-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.cat-scroll-btn:hover {
    background: transparent;
    color: #fff;
    transform: scale(1.2);
}

.cat-scroll-btn:active {
    transform: scale(0.95);
}

.cat-scroll-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Category button scroll animation */
@keyframes catScrollIn {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.evil-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0.95rem 0.5rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
    animation: catScrollIn 0.35s ease both;
}

/* Minimalist icon container inside each category button */
.evil-cat-btn .cat-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.evil-cat-btn .cat-icon-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.evil-cat-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.evil-cat-btn:hover .cat-icon-badge {
    color: #fff;
}

.evil-cat-btn:hover .cat-icon-badge svg {
    transform: scale(1.1);
}

.evil-cat-btn.active {
    color: #fff;
    background: rgba(111, 163, 166, 0.06);
}

.evil-cat-btn.active .cat-icon-badge {
    color: var(--accent);
}

.cat-count {
    background: rgba(128, 138, 148, 0.18);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.evil-cat-btn.active .cat-count {
    background: rgba(111, 163, 166, 0.15);
    color: var(--accent);
}

/* Commands Grid */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.cmd-card {
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color 0.2s;
}

.cmd-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.cmd-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cmd-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.cmd-card-title svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.copy-icon {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.copy-icon:hover {
    color: #fff;
}

.cmd-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 2.85rem;
}

.cmd-card-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cmd-card-section h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill-list .pill {
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: #ccc;
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-family: var(--mono);
}

.pill-list .plain-text {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

/* FAQ Integration */
.standalone-page-wrapper {
    min-height: 100vh;
    padding: 11.5rem 2% 4rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.faq-section {
    max-width: 900px;
    width: 100%;
}

.faq-header {
    margin-bottom: 5rem;
    text-align: center;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.faq-header p {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    position: relative;
    padding: 1px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(400px circle at calc(var(--mouse-x) - var(--card-x, 0px)) calc(var(--mouse-y) - var(--card-y, 0px)), rgba(255, 255, 255, 0.3), transparent 40%);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item-inner {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    z-index: -1;
    height: 100%;
    position: relative;
}

.faq-item-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at calc(var(--mouse-x) - var(--card-x, 0px)) calc(var(--mouse-y) - var(--card-y, 0px)), rgba(255, 255, 255, 0.05), transparent 40%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 15px;
}

.faq-item:hover .faq-item-inner::after {
    opacity: 1;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-trigger svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-item.active .faq-trigger svg {
    transform: rotate(180deg);
    color: #fff;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

/* Security Section styling */
.security {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.security-header {
    margin-bottom: 5rem;
    text-align: center;
}

.security-badge-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(15, 18, 20, 0.8);
    border: 1px solid rgba(111, 163, 166, 0.18);
    box-shadow:
        0 0 40px rgba(111, 163, 166, 0.08),
        0 0 80px rgba(111, 163, 166, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Faint inner ring */
.security-badge-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px solid rgba(111, 163, 166, 0.08);
    pointer-events: none;
}

/* Soft ambient glow behind */
.security-badge-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 163, 166, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.security-badge-icon:hover {
    border-color: rgba(111, 163, 166, 0.3);
    box-shadow:
        0 0 50px rgba(111, 163, 166, 0.12),
        0 0 100px rgba(111, 163, 166, 0.06);
}

.security-badge-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 1px 3px rgba(111, 163, 166, 0.3));
}

.security-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.security-header h2 .highlight {
    color: #fff;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.security-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.security-grid .magic-card {
    min-height: 480px;
}

.security-grid .card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2.5rem;
    gap: 2rem;
}

.security-grid .text-container {
    z-index: 2;
}

.security-grid h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.security-grid p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Visual Containers */
.visual-container {
    height: 220px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1. Filters Visual */
.filters-visual {
    background: none;
}

.node-connections {
    position: relative;
    width: 360px;
    height: 180px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.filter-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(10, 13, 14, 0.85);
    border: 1px solid rgba(111, 163, 166, 0.1);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.filter-tag svg {
    color: var(--accent);
    opacity: 0.8;
}

.magic-card:hover .filter-tag {
    border-color: rgba(111, 163, 166, 0.3);
    background: rgba(111, 163, 166, 0.08);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(111, 163, 166, 0.2);
}

.central-plus {
    position: absolute;
    font-size: 18px;
    color: rgba(111, 163, 166, 0.4);
    font-weight: 300;
    z-index: 2;
    transition: color 0.3s;
}

.magic-card:hover .central-plus {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

/* 2. Fake Permissions Visual */
.permission-visual {
    background: none;
}

.crosshair-box {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reticle-corners {
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    pointer-events: none;
    z-index: 1;
}

.reticle-corners::before,
.reticle-corners::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(111, 163, 166, 0.15);
    transition: border-color 0.3s;
}

.reticle-corners::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.reticle-corners::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.magic-card:hover .reticle-corners::before,
.magic-card:hover .reticle-corners::after {
    border-color: var(--accent);
}

.shield-container {
    position: relative;
    width: 140px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.shield-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(111, 163, 166, 0.15);
    transition: all 0.4s ease;
}

.shield-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(111, 163, 166, 0.25) 0%, transparent 70%);
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.4s ease;
}

.key-svg {
    position: absolute;
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.magic-card:hover .shield-svg {
    color: rgba(111, 163, 166, 0.3);
    filter: drop-shadow(0 0 20px rgba(111, 163, 166, 0.25));
}

.magic-card:hover .shield-glow {
    opacity: 0.8;
}

.magic-card:hover .key-svg {
    color: #ffffff;
    transform: translate(-50%, -50%) rotate(-15deg) scale(1.15);
    filter: drop-shadow(0 0 10px rgba(111, 163, 166, 0.45));
}

/* 3. Anti-Nuke Visual (Radar) */
.nuke-visual {
    background: none;
}

.radar-screen {
    position: relative;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rc-1 {
    width: 33%;
    height: 33%;
}

.rc-2 {
    width: 66%;
    height: 66%;
}

.rc-3 {
    width: 100%;
    height: 100%;
}

.radar-line-x {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.03);
}

.radar-line-y {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(111, 163, 166, 0.15) 0deg, transparent 90deg, transparent 360deg);
    border-radius: 50%;
    transform-origin: center;
    animation: radar-sweep-rotate 4s linear infinite;
}

.radar-blip {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.blip-1 {
    top: 30%;
    left: 40%;
    opacity: 0.6;
}

.blip-2 {
    top: 60%;
    left: 70%;
    opacity: 0.3;
}

.blip-threat {
    top: 70%;
    left: 35%;
    width: 6px;
    height: 6px;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: radar-pulse 1.5s infinite alternate;
}

@keyframes radar-sweep-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes radar-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
        box-shadow: 0 0 5px #ef4444;
    }

    100% {
        transform: scale(1.6);
        opacity: 1;
        box-shadow: 0 0 15px #ef4444, 0 0 30px rgba(239, 68, 68, 0.3);
    }
}

/* 4. Anti-Raid Visual (Scanner) */
.raid-visual {
    background: none;
}

.scanner-box {
    position: relative;
    width: 140px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanner-bracket {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.scanner-bracket.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.scanner-bracket.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.scanner-bracket.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.scanner-bracket.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.magic-card:hover .scanner-bracket {
    border-color: var(--accent);
}

.scan-card {
    width: 90px;
    height: 130px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s;
}

.magic-card:hover .scan-card {
    border-color: rgba(111, 163, 166, 0.3);
}

.avatar-icon {
    width: 44px;
    height: 44px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.magic-card:hover .avatar-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(111, 163, 166, 0.3));
}

.scan-glow-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 163, 166, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.magic-card:hover .scan-glow-ring {
    opacity: 1;
}

.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 8px var(--accent);
    animation: scanner-move 2.5s ease-in-out infinite;
}

@keyframes scanner-move {

    0%,
    100% {
        top: 5%;
    }

    50% {
        top: 95%;
    }
}

.security-more-container,
.voicemaster-more-container,
.music-more-container {
    display: flex;
    justify-content: center;
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 3.5rem;
    position: relative;
    z-index: 15;
}

.btn-more-commands {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background: rgba(10, 13, 14, 0.4);
    border: 1px solid rgba(111, 163, 166, 0.12);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-more-commands .console-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    opacity: 0.85;
    transition: transform 0.3s ease;
}

.btn-more-commands .arrow-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn-more-commands:hover {
    border-color: rgba(111, 163, 166, 0.4);
    background: rgba(111, 163, 166, 0.08);
    box-shadow: 0 0 25px rgba(111, 163, 166, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateY(-2px);
}

.btn-more-commands:hover .arrow-icon {
    transform: translateX(4px);
    color: var(--accent);
}

.btn-more-commands:hover .console-icon {
    transform: scale(1.05);
}

/* Integrations Marquee Section */
.integrations {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.integrations-header {
    margin-bottom: 4rem;
    text-align: center;
    padding: 0 2rem;
}

.integrations-badge-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(15, 18, 20, 0.8);
    border: 1px solid rgba(111, 163, 166, 0.18);
    box-shadow:
        0 0 40px rgba(111, 163, 166, 0.08),
        0 0 80px rgba(111, 163, 166, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Faint inner ring */
.integrations-badge-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px solid rgba(111, 163, 166, 0.08);
    pointer-events: none;
}

/* Soft ambient glow behind */
.integrations-badge-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 163, 166, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.integrations-badge-icon:hover {
    border-color: rgba(111, 163, 166, 0.3);
    box-shadow:
        0 0 50px rgba(111, 163, 166, 0.12),
        0 0 100px rgba(111, 163, 166, 0.06);
}

.integrations-badge-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 1px 3px rgba(111, 163, 166, 0.3));
}

.integrations-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.integrations-header h2 .highlight {
    color: #fff;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.integrations-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Marquee Scroll */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Integration Cards styling */
.integration-card {
    width: 320px;
    background: rgba(10, 13, 14, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.integration-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.integration-card:hover::before {
    opacity: 1;
}

.integration-card.pinterest::before {
    background: radial-gradient(circle at 80% 20%, rgba(230, 0, 35, 0.15) 0%, transparent 60%);
}

.integration-card.soundcloud::before {
    background: radial-gradient(circle at 20% 80%, rgba(255, 85, 0, 0.12) 0%, transparent 60%);
}

.integration-card.tiktok::before {
    background: radial-gradient(circle at 85% 15%, rgba(145, 70, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(0, 242, 254, 0.08) 0%, transparent 50%);
}

.integration-card.twitter::before {
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
}

.integration-card.youtube::before {
    background: radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.12) 0%, transparent 60%);
}

.integration-card.twitch::before {
    background: radial-gradient(circle at 80% 20%, rgba(145, 70, 255, 0.12) 0%, transparent 60%);
}

.ic-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.ic-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    background: #111112;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ic-icon svg,
.ic-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    z-index: 2;
}

.integration-card:hover .ic-icon {
    transform: scale(1.06);
}

.ic-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.ic-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    z-index: 2;
}

/* Individual Platform Accents & Outlines */
.integration-card.pinterest .ic-icon {
    border: 1px solid #E60023;
    box-shadow: inset 0 0 0 2px #111112, inset 0 0 0 3.5px #E60023;
}

.integration-card.pinterest .hl-red {
    color: #ff4f62;
    font-weight: 600;
}

.integration-card.soundcloud .ic-icon {
    border: 1px solid #FF5500;
    box-shadow: inset 0 0 0 2px #111112, inset 0 0 0 3.5px #FF5500;
}

.integration-card.soundcloud .hl-orange {
    color: #ff9f43;
    font-weight: 600;
}

.integration-card.tiktok .ic-icon {
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 2px #111112, inset 0 0 0 3.5px rgba(255, 255, 255, 0.7);
}

.integration-card.tiktok .hl-cyan {
    color: #00d2ff;
    font-weight: 600;
}

.integration-card.twitter .ic-icon {
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 2px #111112, inset 0 0 0 3.5px rgba(255, 255, 255, 0.7);
}

.integration-card.twitter .hl-blue {
    color: #54a0ff;
    font-weight: 600;
}

.integration-card.youtube .ic-icon {
    border: 1px solid #FF0000;
    box-shadow: inset 0 0 0 2px #111112, inset 0 0 0 3.5px #FF0000;
}

.integration-card.youtube .hl-red {
    color: #ff4d4d;
    font-weight: 600;
}

.integration-card.twitch .ic-icon {
    border: 1px solid #9146FF;
    box-shadow: inset 0 0 0 2px #111112, inset 0 0 0 3.5px #9146FF;
}

.integration-card.twitch .hl-purple {
    color: #a29bfe;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .security-grid {
        grid-template-columns: 1fr;
    }

    .evil-commands-container {
        flex-direction: column;
        gap: 2rem;
    }

    .evil-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

    .sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .evil-cmd-row,
    .evil-table-header {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .evil-table-header {
        display: none;
    }

    .cursor-glow {
        display: none;
    }
}

/* Integration Card Styling (Frosted Premium Dark Theme) */
.integration-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    width: 320px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.ic-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    z-index: 2;
}

.ic-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.3px;
}

.ic-desc {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
    z-index: 2;
}

.integrations-scroll {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.integrations-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.integrations-track {
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    margin-left: -50vw;
    left: 50%;
}

.integrations-track::before,
.integrations-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.integrations-track::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.integrations-track::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* Decorative Section Divider */
.section-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 40px 0;
    pointer-events: none;
    position: relative;
    z-index: 10;
}

.section-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

.section-divider path {
    fill: none;
}

.section-divider path:nth-child(1) { stroke: rgba(111, 163, 166, 0.32) !important; stroke-width: 1.5px !important; }
.section-divider path:nth-child(2) { stroke: rgba(111, 163, 166, 0.28) !important; stroke-width: 1.5px !important; }
.section-divider path:nth-child(3) { stroke: rgba(111, 163, 166, 0.24) !important; stroke-width: 1.5px !important; }
.section-divider path:nth-child(4) { stroke: rgba(111, 163, 166, 0.20) !important; stroke-width: 1.5px !important; }
.section-divider path:nth-child(5) { stroke: rgba(111, 163, 166, 0.16) !important; stroke-width: 1.5px !important; }
.section-divider path:nth-child(6) { stroke: rgba(111, 163, 166, 0.12) !important; stroke-width: 1.5px !important; }
.section-divider path:nth-child(7) { stroke: rgba(111, 163, 166, 0.08) !important; stroke-width: 1.5px !important; }
.section-divider path:nth-child(8) { stroke: rgba(111, 163, 166, 0.04) !important; stroke-width: 1.5px !important; }

/* ==============================
   VOICEMASTER SECTION
   ============================== */

.voicemaster {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.voicemaster-header {
    margin-bottom: 4rem;
    text-align: center;
    padding: 0 2rem;
}

/* Badge — same premium treatment as security & integrations */
.voicemaster-badge-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(15, 18, 20, 0.8);
    border: 1px solid rgba(111, 163, 166, 0.18);
    box-shadow:
        0 0 40px rgba(111, 163, 166, 0.08),
        0 0 80px rgba(111, 163, 166, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.voicemaster-badge-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px solid rgba(111, 163, 166, 0.08);
    pointer-events: none;
}

.voicemaster-badge-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 163, 166, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.voicemaster-badge-icon:hover {
    border-color: rgba(111, 163, 166, 0.3);
    box-shadow:
        0 0 50px rgba(111, 163, 166, 0.12),
        0 0 100px rgba(111, 163, 166, 0.06);
}

.voicemaster-badge-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 1px 3px rgba(111, 163, 166, 0.3));
}

.voicemaster-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.voicemaster-header h2 .highlight {
    color: var(--accent);
}

.voicemaster-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid layout */
.voicemaster-grid {
    max-width: 960px;
    margin: 0 auto;
}

/* Main interface card */
.vm-main-card {
    margin-bottom: 1.5rem;
}

.vm-interface-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.vm-text {
    flex: 1;
    min-width: 220px;
}

.vm-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.vm-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Icon grid (5 columns x 2 rows) */
.vm-controls-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    flex-shrink: 0;
}

.vm-control-btn {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(15, 18, 20, 0.9);
    border: 1px solid rgba(111, 163, 166, 0.15);
    box-shadow:
        0 0 20px rgba(111, 163, 166, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vm-control-btn::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 11px;
    border: 1px solid rgba(111, 163, 166, 0.06);
    pointer-events: none;
}

.vm-control-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at center, rgba(111, 163, 166, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vm-control-btn:hover {
    border-color: rgba(111, 163, 166, 0.35);
    box-shadow: 0 0 20px rgba(111, 163, 166, 0.1);
    transform: translateY(-2px);
}

.vm-control-btn:hover::after {
    opacity: 1;
}

.vm-control-btn svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 3px rgba(111, 163, 166, 0.25));
}

/* Sub cards row */
.vm-sub-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}


/* Easy Setup visual */
.vm-setup-visual {
    margin-top: 1.5rem;
    position: relative;
}

/* Command embed */
.vm-cmd-embed {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(18, 23, 25, 0.8);
    border: 1px solid rgba(111, 163, 166, 0.05);
    margin-bottom: 35px;
    width: fit-content;
}

.vm-cmd-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(111, 163, 166, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vm-cmd-icon svg {
    width: 18px;
    height: 18px;
}

.vm-cmd-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Timeline */
.vm-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 5px;
}

/* Connecting dashed line */
.vm-timeline::before {
    content: '';
    position: absolute;
    left: 56px; /* center of the nodes */
    top: 12px; /* starts at the center of the first node */
    bottom: 14px; /* center of the last node */
    width: 1px;
    border-left: 2px dashed rgba(111, 163, 166, 0.55);
    background: none;
}

.vm-timeline-diagonal {
    position: absolute;
    top: -35px;
    left: 0;
    width: 100px;
    height: 47px;
    pointer-events: none;
}

.vm-timeline-diagonal svg {
    width: 100%;
    height: 100%;
}

.vm-timeline-item {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.vm-timeline-node {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(15, 20, 22, 0.9);
    border: 1px solid rgba(111, 163, 166, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 44px; /* aligned with diagonal path (56px center) */
    flex-shrink: 0;
}

.vm-timeline-node-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(111, 163, 166, 0.35);
}

.vm-timeline-text {
    font-size: 0.95rem;
    color: rgba(111, 163, 166, 0.45);
    font-weight: 500;
}

.vm-timeline-done .vm-timeline-node {
    background: var(--accent);
    border-color: var(--accent);
    color: #080d0e;
}

.vm-timeline-done .vm-timeline-text {
    color: #80b3b5;
}

/* Roles visual — Discord voice channel tree */
.vm-roles-visual {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vm-vc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 0;
    margin-bottom: 4px;
}

.vm-vc-channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s ease;
}

.vm-vc-channel:hover {
    background: rgba(255, 255, 255, 0.04);
}

.vm-vc-active {
    color: #fff;
    font-weight: 500;
}

.vm-vc-users {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
}

.vm-vc-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #d1d5db;
    padding: 3px 0;
}

.vm-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-interface-layout {
        flex-direction: column;
        text-align: center;
    }

    .vm-controls-grid {
        justify-items: center;
    }

    .vm-sub-cards {
        grid-template-columns: 1fr;
    }

    .voicemaster-header h2 {
        font-size: 2rem;
    }
}

/* ==============================
   MUSIC SECTION
   ============================== */

.music {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.music-header {
    margin-bottom: 4rem;
    text-align: center;
    padding: 0 2rem;
}

/* Badge — same premium treatment as other cogs */
.music-badge-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(15, 18, 20, 0.8);
    border: 1px solid rgba(111, 163, 166, 0.18);
    box-shadow:
        0 0 40px rgba(111, 163, 166, 0.08),
        0 0 80px rgba(111, 163, 166, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.music-badge-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px solid rgba(111, 163, 166, 0.08);
    pointer-events: none;
}

.music-badge-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 163, 166, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.music-badge-icon:hover {
    border-color: rgba(111, 163, 166, 0.3);
    box-shadow:
        0 0 50px rgba(111, 163, 166, 0.12),
        0 0 100px rgba(111, 163, 166, 0.06);
}

.music-badge-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 1px 3px rgba(111, 163, 166, 0.3));
}

.music-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.music-header h2 .highlight {
    color: var(--accent);
}

.music-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid layout */
.music-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.music-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.music-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sub cards column */
.music-sub-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Visual Containers */
.preset-card .card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preset-visual {
    margin-top: 1.5rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.queue-visual {
    margin-top: 1.5rem;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spotify-card .card-inner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.spotify-card .text-container {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.spotify-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}


/* 1. Preset Filters (8D Soundwave) */
.audio-waves {
    display: flex;
    align-items: center; /* Center them vertically relative to the active line */
    justify-content: center;
    gap: 7px;
    height: 100%;
    min-height: 250px;
    width: 100%;
    position: relative;
    padding: 30px 0;
}

.wave-bar {
    width: 2px;
    background: rgba(111, 163, 166, 0.18);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.wave-bar:nth-child(1) { height: 60px; }
.wave-bar:nth-child(2) { height: 85px; }
.wave-bar:nth-child(3) { height: 65px; }
.wave-bar:nth-child(4) { height: 120px; }
.wave-bar:nth-child(5) { height: 90px; }
.wave-bar:nth-child(6) { height: 140px; }
.wave-bar:nth-child(7) { height: 105px; }
.wave-bar:nth-child(8) { height: 75px; }
.wave-bar:nth-child(9) { height: 130px; }
.wave-bar:nth-child(10) { height: 95px; }
.wave-bar:nth-child(11) { height: 70px; }
.wave-bar:nth-child(12) { height: 110px; }
.wave-bar:nth-child(13) { height: 80px; }
.wave-bar:nth-child(14) { height: 65px; }
.wave-bar:nth-child(15) { height: 90px; }
.wave-bar:nth-child(16) { height: 60px; }
.wave-bar:nth-child(17) { height: 75px; }
.wave-bar:nth-child(18) { height: 50px; }
.wave-bar:nth-child(19) { height: 45px; }
.wave-bar:nth-child(20) { height: 40px; }
.wave-bar:nth-child(21) { height: 210px; } /* active wave */
.wave-bar:nth-child(22) { height: 45px; }
.wave-bar:nth-child(23) { height: 50px; }
.wave-bar:nth-child(24) { height: 75px; }
.wave-bar:nth-child(25) { height: 60px; }
.wave-bar:nth-child(26) { height: 95px; }
.wave-bar:nth-child(27) { height: 130px; }
.wave-bar:nth-child(28) { height: 105px; }
.wave-bar:nth-child(29) { height: 80px; }
.wave-bar:nth-child(30) { height: 145px; }
.wave-bar:nth-child(31) { height: 110px; }
.wave-bar:nth-child(32) { height: 150px; }
.wave-bar:nth-child(33) { height: 125px; }
.wave-bar:nth-child(34) { height: 90px; }
.wave-bar:nth-child(35) { height: 135px; }
.wave-bar:nth-child(36) { height: 100px; }
.wave-bar:nth-child(37) { height: 140px; }
.wave-bar:nth-child(38) { height: 115px; }
.wave-bar:nth-child(39) { height: 130px; }
.wave-bar:nth-child(40) { height: 90px; }
.wave-bar:nth-child(41) { height: 110px; }

.magic-card:hover .wave-bar {
    background: rgba(111, 163, 166, 0.28);
}

.wave-bar.active-wave {
    background: var(--accent);
    position: relative;
    box-shadow: 0 0 15px var(--accent);
    height: 210px !important;
}

.wave-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(111, 163, 166, 0.5);
}

.wave-label.top {
    top: -26px;
    font-size: 0.9rem;
    color: var(--accent);
}

.wave-label.bottom {
    bottom: -26px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.wave-glow {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(111, 163, 166, 0.4) 0%, transparent 70%);
    filter: blur(4px);
    z-index: -1;
}

/* 2. Queue Stack Visual */
.queue-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 180px;
}

.queue-track {
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.track-front {
    width: 100%;
    height: 130px;
    background: rgba(18, 23, 25, 0.95);
    border: 1px solid rgba(111, 163, 166, 0.12);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.track-skip {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(111, 163, 166, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.track-skip:hover {
    background: rgba(111, 163, 166, 0.25);
    transform: scale(1.05);
}

.track-body {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 10px 0;
    width: 100%;
}

.track-cover-main {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.cover-art {
    position: absolute;
    inset: 0;
    border-radius: 2px;
}

.track-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.track-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.track-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.track-progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.track-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    position: relative;
}

.track-progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    position: relative;
}

.track-progress-handle {
    position: absolute;
    right: -4px;
    top: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px rgba(111, 163, 166, 0.8);
}

.track-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.track-back-1 {
    width: 100%;
    height: 130px;
    background: rgba(18, 23, 25, 0.95);
    border: 1px solid rgba(111, 163, 166, 0.08);
    position: absolute;
    bottom: -15px;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 18px;
    opacity: 0.45;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    gap: 10px;
}

.track-back-2 {
    width: 100%;
    height: 130px;
    background: rgba(18, 23, 25, 0.95);
    border: 1px solid rgba(111, 163, 166, 0.04);
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 18px;
    opacity: 0.18;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    gap: 10px;
}

.track-back-1 .track-meta,
.track-back-2 .track-meta {
    display: none !important;
}

.track-back-1 .track-body,
.track-back-2 .track-body {
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
}

.track-back-1 .track-progress-container,
.track-back-2 .track-progress-container {
    width: 100%;
}

.magic-card:hover .track-front {
    transform: translateY(-4px);
    border-color: rgba(111, 163, 166, 0.25);
}

.magic-card:hover .track-back-1 {
    transform: translateY(-2px);
    opacity: 0.65;
}

.magic-card:hover .track-back-2 {
    transform: translateY(0px);
    opacity: 0.35;
}

/* 3. Spotify Radar Visual */
.spotify-radar {
    position: absolute;
    top: 60%; /* Centered vertically (adjusted slightly for the text container header) */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-ring {
    position: absolute;
    border-style: solid;
    border-width: 1px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.radar-ring.r1 { 
    width: 140px; 
    height: 140px; 
    border-color: rgba(29, 185, 84, 0.28); 
}
.radar-ring.r2 { 
    width: 240px; 
    height: 240px; 
    border-color: rgba(29, 185, 84, 0.15); 
}
.radar-ring.r3 { 
    width: 340px; 
    height: 340px; 
    border-color: rgba(29, 185, 84, 0.05); 
}

.spotify-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #090c0d; /* Solid color matching card background */
    border: 1px solid rgba(29, 185, 84, 0.45); /* Outer green border around the logo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.15); /* Soft outer aura */
}

.spotify-logo-center svg {
    width: 48px;
    height: 48px;
    color: #1DB954;
    display: block;
    filter: none; /* Keep SVG crisp */
}

.spotify-logo-center::before {
    content: '';
    position: absolute;
    width: 160px; /* Aura width spans exactly across 2 circles (r2 is 170px) */
    height: 160px;
    background: radial-gradient(circle, rgba(29, 185, 84, 0.28) 0%, rgba(29, 185, 84, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.magic-card:hover .spotify-logo-center {
    transform: translate(-50%, -50%) scale(1.04);
    border-color: rgba(29, 185, 84, 0.65);
    box-shadow: 0 0 25px rgba(29, 185, 84, 0.25);
}

.magic-card:hover .spotify-logo-center::before {
    background: radial-gradient(circle, rgba(29, 185, 84, 0.38) 0%, rgba(29, 185, 84, 0.12) 50%, transparent 70%);
}

.magic-card:hover .radar-ring.r1 { 
    border-color: rgba(29, 185, 84, 0.4); 
    transform: translate(-50%, -50%) scale(1.03); 
}
.magic-card:hover .radar-ring.r2 { 
    border-color: rgba(29, 185, 84, 0.25); 
    transform: translate(-50%, -50%) scale(1.05); 
}
.magic-card:hover .radar-ring.r3 { 
    border-color: rgba(29, 185, 84, 0.1); 
    transform: translate(-50%, -50%) scale(1.07); 
}

/* Particles */
.radar-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #1DB954;
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 4px #1DB954;
    pointer-events: none;
}
.radar-particle.p1 { top: 20%; left: 30%; width: 3px; height: 3px; }
.radar-particle.p2 { top: 38%; left: 15%; opacity: 0.5; }
.radar-particle.p3 { top: 15%; left: 75%; }
.radar-particle.p4 { top: 35%; left: 85%; width: 3px; height: 3px; opacity: 0.6; }
.radar-particle.p5 { top: 48%; left: 25%; }
.radar-particle.p6 { top: 45%; left: 70%; opacity: 0.4; }
.radar-particle.p7 { top: 28%; left: 45%; opacity: 0.5; }
.radar-particle.p8 { top: 32%; left: 55%; opacity: 0.3; }

.wave-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    box-shadow: 0 0 4px var(--accent);
    pointer-events: none;
}
.wave-particle.wp1 { top: 28%; left: 22%; }
.wave-particle.wp2 { top: 62%; left: 34%; width: 3px; height: 3px; opacity: 0.35; }
.wave-particle.wp3 { top: 20%; left: 72%; }
.wave-particle.wp4 { top: 58%; left: 78%; opacity: 0.4; }
.wave-particle.wp5 { top: 42%; left: 56%; width: 3px; height: 3px; opacity: 0.25; }
.wave-particle.wp6 { top: 70%; left: 62%; }
.wave-particle.wp7 { top: 30%; left: 42%; opacity: 0.3; }
.wave-particle.wp8 { top: 48%; left: 12%; }

/* Responsive Grid stacking for Music Section */
@media (max-width: 768px) {
    .music-grid {
        grid-template-columns: 1fr;
    }
}

/* Countless More Features Section */
.more-features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.features-header {
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.features-header h2 .highlight {
    color: var(--accent);
}

.features-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Arch Visual */
.features-arch-container {
    position: relative;
    height: 180px;
    max-width: 580px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.arch-glow-bg {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 180px;
    background: radial-gradient(ellipse at bottom, rgba(111, 163, 166, 0.15) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 0;
    pointer-events: none;
}

.arch-item {
    position: absolute;
    width: 54px;
    height: 54px;
    background: rgba(18, 23, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.arch-item svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Circular Coordinates for 7 items */
.arch-item.item-1 { left: 5.9%; bottom: 15px; transform: scale(0.85); opacity: 0.45; }
.arch-item.item-2 { left: 17.2%; bottom: 70px; transform: scale(0.92); opacity: 0.65; }
.arch-item.item-3 { left: 30.7%; bottom: 105px; transform: scale(0.98); opacity: 0.85; }
.arch-item.item-4 { left: 50%; bottom: 117px; transform: translateX(-50%) scale(1.15); opacity: 1; color: var(--accent); border-color: rgba(111, 163, 166, 0.35); box-shadow: 0 0 25px rgba(111, 163, 166, 0.25); background: rgba(18, 23, 25, 0.9); } /* Center Active */
.arch-item.item-5 { right: 30.7%; bottom: 105px; transform: scale(0.98); opacity: 0.85; }
.arch-item.item-6 { right: 17.2%; bottom: 70px; transform: scale(0.92); opacity: 0.65; }
.arch-item.item-7 { right: 5.9%; bottom: 15px; transform: scale(0.85); opacity: 0.45; }

/* Arch item hovers */
.arch-item:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.arch-item.item-4:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateX(-50%) translateY(-5px) scale(1.2);
    box-shadow: 0 0 35px rgba(111, 163, 166, 0.4);
}

/* Tooltip/Label styling if hovered */
.arch-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(10, 13, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.arch-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px) scale(1);
    color: #fff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-show-card .card-inner {
    padding: 2.2rem 1.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.feature-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: var(--accent);
    background: rgba(111, 163, 166, 0.05);
    border: 1px solid rgba(111, 163, 166, 0.15);
}

.feature-icon-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.05;
    z-index: -1;
}

.feature-icon-badge svg {
    width: 20px;
    height: 20px;
}

/* Base class colors overridden to maintain premium theme consistency */
.color-cyan, .color-teal, .color-blue, .color-purple, .color-orange, .color-emerald, .color-rose {
    color: var(--accent) !important;
}
.color-cyan::before, .color-teal::before, .color-blue::before, .color-purple::before, .color-orange::before, .color-emerald::before, .color-rose::before {
    background: var(--accent) !important;
}

.feature-show-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.feature-show-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.feature-show-card:hover .feature-icon-badge {
    transform: scale(1.08);
    border-color: rgba(111, 163, 166, 0.45);
    box-shadow: 0 0 18px rgba(111, 163, 166, 0.35);
}

.feature-show-card:hover h3 {
    color: var(--accent);
}

/* More Button Container */
.features-more-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Over 800+ Commands Styling */
.commands-total-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3.5rem;
    width: 100%;
}

.commands-header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 1.8rem auto;
    color: #fff;
}

.commands-header-divider h2 {
    font-size: 1.45rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.01em;
    font-family: inherit;
}

.commands-header-divider::before,
.commands-header-divider::after {
    content: '';
    flex: 1;
    height: 1px;
}

.commands-header-divider::before {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08));
}

.commands-header-divider::after {
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.08));
}

.divider-dot {
    width: 4px;
    height: 4px;
    background: rgba(111, 163, 166, 0.4);
    border-radius: 50%;
    margin: 0 15px;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--accent);
}

.accent-glow-text {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(111, 163, 166, 0.35);
}

/* Trusted Servers Section styling */
.trusted-servers-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 6.5rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.trusted-servers-container .heart-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(111, 163, 166, 0.04);
    border: 1px solid rgba(111, 163, 166, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trusted-servers-container .heart-badge:hover {
    transform: scale(1.08);
    border-color: rgba(111, 163, 166, 0.35);
    box-shadow: 0 0 20px rgba(111, 163, 166, 0.25);
}

.trusted-servers-container .heart-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.04;
    z-index: -1;
}

.trusted-servers-container .heart-icon {
    width: 26px;
    height: 26px;
    color: var(--accent);
    filter: drop-shadow(0 0 5px rgba(111, 163, 166, 0.4));
}

.trusted-servers-container h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
}

.accent-text {
    color: var(--accent);
}

.waiting-release {
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 1.6rem;
    margin-bottom: 0;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 12px rgba(111, 163, 166, 0.25);
    width: 100%;
}

/* Join CTA Section styling */
.join-cta-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 6rem 1.5rem;
    position: relative;
    box-sizing: border-box;
}

.join-cta-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, rgba(14, 18, 20, 0.85), rgba(7, 9, 10, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    z-index: 2; /* Sits in front of background wave lines */
}

.cta-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 280px;
    background: radial-gradient(ellipse at bottom, rgba(111, 163, 166, 0.12) 0%, transparent 70%);
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
}

.cta-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.6rem 0;
    letter-spacing: -0.01em;
    z-index: 1;
}

.join-cta-card h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2.2rem 0;
    letter-spacing: -0.02em;
    z-index: 1;
}

.cta-button-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.btn-cta-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2.2rem;
    border-radius: 9999px;
    background: rgba(18, 23, 25, 0.9);
    border: 1px solid rgba(111, 163, 166, 0.25);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.btn-cta-get-started:hover {
    background: rgba(111, 163, 166, 0.12);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(111, 163, 166, 0.35);
    transform: translateY(-2px);
}

.cta-bottom-arch {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 260px;
    border-radius: 50%;
    border-top: 1px solid rgba(111, 163, 166, 0.15);
    pointer-events: none;
    z-index: 1;
}

/* Background Wavy Lines */
.cta-background-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 320px;
    z-index: 1; /* Sits behind the card (z-index: 2) but in front of body background */
    pointer-events: none;
}

.cta-background-lines svg {
    width: 100%;
    height: 100%;
}

.cta-background-lines path {
    stroke: rgba(111, 163, 166, 0.12) !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-arch-container {
        height: 120px;
    }
    
    .arch-item.item-1 { left: 2%; bottom: 10px; transform: scale(0.75); }
    .arch-item.item-2 { left: 17%; bottom: 48px; transform: scale(0.8); }
    .arch-item.item-3 { left: 33%; bottom: 68px; transform: scale(0.85); }
    .arch-item.item-4 { left: 50%; bottom: 75px; transform: translateX(-50%) scale(1); }
    .arch-item.item-5 { right: 33%; bottom: 68px; transform: scale(0.85); }
    .arch-item.item-6 { right: 17%; bottom: 48px; transform: scale(0.8); }
    .arch-item.item-7 { right: 2%; bottom: 10px; transform: scale(0.75); }
}

/* Footer Styling */
.site-footer {
    background: #050607;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 4.5rem 2.5rem;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.footer-logo {
    width: 44px;
    height: 44px;
    color: var(--accent);
    opacity: 0.85;
    background: rgba(111, 163, 166, 0.04);
    border: 1px solid rgba(111, 163, 166, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-brand .copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    font-weight: 400;
}

.footer-links-group {
    display: flex;
    gap: 6rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.footer-column a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

/* Scroll to top button */
.scroll-to-top-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 23, 25, 0.6);
    border: 1px solid rgba(111, 163, 166, 0.15);
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover {
    color: #fff;
    border-color: var(--accent);
    background: rgba(111, 163, 166, 0.12);
    box-shadow: 0 0 20px rgba(111, 163, 166, 0.3);
    transform: translateY(-2px);
}

.scroll-to-top-btn:hover svg {
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .footer-links-group {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .scroll-to-top-btn {
        align-self: flex-end;
        position: absolute;
        top: 0;
        right: 0;
    }
}

/* Snorkel Mask Logo, Pill Nav & Split Hero Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    height: 42px;
    width: auto;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: scale(1.08) rotate(-3deg);
}

.nav-center-pill {
    display: flex;
    background: radial-gradient(1161.83% 494.55% at 50% 49.09%, #111212 5.32%, #1c1b1b 30.31%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.8rem 2.2rem;
    gap: 2.2rem;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center-pill a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-center-pill a:hover,
.nav-center-pill a.active {
    color: #fff;
    opacity: 1;
}

.dashboard-wrapper {
    position: relative;
}

.btn-dashboard {
    background: rgba(88, 101, 242, 0.15);
    color: #fff;
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 0.8rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.btn-dashboard:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.2);
}

.discord-mini-icon {
    width: 16px;
    height: 16px;
}

.dashboard-wrapper::after {
    content: 'SOON!';
    position: absolute;
    top: -12px;
    right: -10px;
    background: #e11d48; /* soft comic red */
    color: #facc15; /* cartoon yellow */
    border: 1.5px solid #facc15;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 4px;
    transform: rotate(12deg);
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.4);
    font-family: var(--mono);
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Split Hero Section */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 6% 8rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
}


.hero-left {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-left h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.highlight-blue {
    color: var(--accent);
}

.hero-left p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-invite,
.btn-purchase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.7rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 550;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-invite:hover,
.btn-purchase:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2.5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sparkles-icon {
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
}

.arrow-icon {
    width: 10px;
    height: 10px;
    margin-left: 0.5rem;
}

.hero-right {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
}

.floating-items-container {
    height: 270px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    position: relative;
}

.floating-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-item {
    background: linear-gradient(135deg, rgba(15, 20, 22, 0.7), rgba(8, 11, 12, 0.8));
    border: 1px solid rgba(111, 163, 166, 0.18);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    width: 180px; /* fixed width for consistent alignment */
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease, filter 0.8s ease;
}

.floating-item:hover {
    border-color: rgba(111, 163, 166, 0.4);
    background: rgba(15, 20, 22, 0.9);
}

/* 3D Circular Slots */
.floating-item.slot-top {
    transform: translate3d(20px, 0px, 0) scale(0.92);
    opacity: 0.55;
    filter: blur(1px);
    z-index: 2;
}

.floating-item.slot-middle {
    transform: translate3d(100px, 90px, 0) scale(1.05);
    opacity: 1;
    filter: blur(0px);
    z-index: 3;
}

.floating-item.slot-bottom {
    transform: translate3d(20px, 180px, 0) scale(0.92);
    opacity: 0.55;
    filter: blur(1px);
    z-index: 2;
}

.floating-item.slot-hidden-top {
    transform: translate3d(-40px, -80px, 0) scale(0.7);
    opacity: 0;
    filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.floating-item.slot-hidden-bottom {
    transform: translate3d(-40px, 260px, 0) scale(0.7);
    opacity: 0;
    filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(111, 163, 166, 0.12);
    border: 1px solid rgba(111, 163, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    animation: floatIcon 6s infinite ease-in-out;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.item-icon svg {
    width: 16px;
    height: 16px;
}

.item-text {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

@keyframes floatNode {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsiveness for Hero Split */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        padding-top: 7rem;
        gap: 3.5rem;
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .hero-left h1 {
        font-size: 2.75rem;
    }
    
    .hero-left p {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-right {
        justify-content: flex-start;
        width: 100%;
    }
    
    .floating-items-container {
        max-width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .floating-items {
        align-items: flex-start;
    }
    
    .floating-item.item-left,
    .floating-item.item-right {
        align-self: flex-start !important;
    }
}

/* Status Page & Shards Grid */
.evil-status-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 11.5rem 2% 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-title .icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.status-title .icon-box svg {
    width: 24px;
    height: 24px;
}

.status-title h1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.status-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#status-search-input {
    width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

#status-search-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

#status-search-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#status-search-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#status-search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

#status-search-btn svg {
    width: 18px;
    height: 18px;
}

.search-result-message {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(158, 200, 202, 0.05);
    border: 1px solid rgba(158, 200, 202, 0.15);
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.shard-card {
    background: #0d1316;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.shard-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.shard-card.searched-highlight {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(158, 200, 202, 0.2);
    transform: scale(1.02);
}

.shard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shard-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shard-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.shard-update-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.shard-update-time svg {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}

.shard-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.shard-status-badge.lagging {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.shard-status-badge.down,
.shard-status-badge.offline {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.shard-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

.shard-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
}

.shard-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-val-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.metric-val-wrapper svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .nav-center-pill {
        display: none; /* Hide center links on smaller viewports */
    }
}

/* Search Modal Overlay */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.search-modal-container {
    position: relative;
    width: 90%;
    max-width: 650px;
    background: #0d1316;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(158, 200, 202, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 75vh;
    animation: modalEnter 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-modal-header {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}

.modal-search-icon {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

#modal-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

#modal-search-input::placeholder {
    color: var(--text-muted);
}

.search-results-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.search-results-list::-webkit-scrollbar {
    width: 6px;
}

.search-results-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.search-results-list::-webkit-scrollbar-track {
    background: transparent;
}

.modal-results-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-results-section h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.modal-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.50rem;
}

.modal-category-result {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-align: center;
}

.modal-category-result:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.modal-commands-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-command-result {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-command-result:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.modal-command-cat-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.modal-command-cat-tag svg {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}

.modal-command-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.modal-command-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.modal-no-results {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 2rem 0;
}

/* Command Card Highlight Flash */
.cmd-card.highlight-flash {
    animation: cardFlash 2s ease-in-out;
}

@keyframes cardFlash {
    0%, 100% {
        border-color: var(--border);
        box-shadow: none;
    }
    20%, 80% {
        border-color: var(--accent);
        box-shadow: 0 0 20px rgba(158, 200, 202, 0.3);
        background: rgba(111, 163, 166, 0.05);
    }
}
