:root {
    --color-bg: #0b0a14;
    --color-bg-card: rgba(255, 255, 255, 0.04);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-text: #ffffff;
    --color-text-muted: #9ca3b0;
    --color-accent: #7c3aed;
    --color-accent-light: #a78bfa;
    --color-accent-glow: rgba(124, 58, 237, 0.45);

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-pill: 50px;

    --transition: 0.2s ease;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    background-color: black;
    color: #e7e7e7;
    min-height: 100vh;
    line-height: 1.5;
    cursor: none;
    -ms-overflow-style: none;
}

/* gradient */
.image-gradient{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.layer-blur{
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px #7f42a7;
    rotate: -30deg;
    z-index: -1;
}

.cursor-dot,
.cursor-ring {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent-light);
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(167, 139, 250, 0.5);
    transition: transform 0.12s ease, opacity 0.3s ease;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    opacity: 0.25;
}

.bg-glow--left {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4c1d95, transparent 70%);
    top: -100px;
    left: -150px;
}

.bg-glow--center {
    width: 700px;
    height: 600px;
    background: radial-gradient(circle, #5b21b6 0%, #3b0764 40%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}

.header {
    position: sticky;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 64px;
    margin: 1.5rem auto;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 4rem;
    backdrop-filter: blur(12px);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-border);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 800;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: none;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0;
    transition: color var(--transition);
    cursor: none;
}

.nav__link:hover {
    color: var(--color-text);
    cursor: none;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: none;
    line-height: 1;
    transition: background var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-discord:hover {
    background: #6d28d9;
    box-shadow: 0 0 20px var(--color-accent-glow);
    border-radius: 4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #c4b5fd;
    margin-bottom: 2.5rem;
}

.badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-light);
    box-shadow: 0 0 8px var(--color-accent-light);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* container */
.container{
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: visible;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    z-index: 999;
}

header h1{
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
    padding-left: 5rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: -5%;
}

nav a {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

nav a:hover{
    color: #a7a7a7;
}

.btn-signing{
    background-color: rgb(122, 0, 179);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2 ease;
    cursor: pointer;
}

.btn-signing:hover{
    background-color: #272727;
    color: rgb(122, 0, 179);
}

/* maincontent */
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh- 6rem);
}

.content{
    max-width: 40rem;
    margin: 0 auto;
    z-index: 999;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tag-box{
    position: relative;
    width: 18rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #656565, #7f42a7, #6600c5, #5300a0, #757575, #656565);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}

.tag-box .tag{
    position: absolute;
    inset: 3px 3px 3px 3px;
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    cursor: pointer;
}

.tag-box .tag:hover{
    color: #5300a0;
}

.content h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);

    text-align: center;
}

.description{
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    max-width: 35rem;
    color: #7f42a7;
    margin-bottom: 3rem;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.btn-buynow{
    text-decoration: none;
    border: 1px solid #7f42a7;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

.btn-buynow:hover{
    background-color: #1a1a1a;
    cursor: none;
}

.btn-viewpricing {
    text-decoration: none;
    background-color: #7f42a7;
    color: black;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

.btn-viewpricing:hover{
    background-color: gray;
    cursor: none;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    margin-top: 2.2rem;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.trust-bar__divider {
    width: 1px;
    height: 14px;
    background: var(--color-border);
}

.our-services h1{
    margin-top: 200px;
    margin-left: 0.3rem;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}

.cards{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20%;
}

.card{
    background-color: #020202;
    border-radius: 8px;
    flex: 1;
    height: 500px;
    max-width: 500px;
    box-shadow: 0px 4px 8px rgba(124, 58, 237, 0.45);
}

.card img {
  width: 90%;
  height: 200px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 25px;
  display: block;
  border-radius: 10px;
}

.card h3{
    font-size: 25px;
    margin: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
    margin-left: 1rem;
}

.card p{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);

    text-align: center;
}

.buy-cs2{
    text-decoration: none;
    border: 1px solid #7f42a7;
    background-color: black;
    color: #7f42a7;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: none;
    text-align: center;
    justify-content: center;
    margin-left: 180px;
}

hr{
  border: none;
  border-top: 1px solid #202020;
  color: #1a1a1a;
  margin-top: 20px;
}

.buy-cs2:hover{
    box-shadow: 0 0 20px var(--color-accent-glow);
    border-radius: 4rem;
    margin-bottom: -15px;
}

.demo-text{
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
    padding-bottom: 100px;
    text-align: cent
}

        /* ============================================
           Demo Page Overrides & Demo-Specific Styles
        ============================================ */
        .demo-page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 6rem 2rem 4rem;
            position: relative;
            z-index: 1;
        }
 
        .demo-intro {
            text-align: center;
            margin-bottom: 3.5rem;
        }
 
        .demo-intro .badge {
            margin-bottom: 1.2rem;
        }
 
        .demo-intro h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
 
        .demo-intro p {
            color: var(--color-text-muted);
            font-size: 1rem;
            max-width: 420px;
            margin: 0 auto;
            line-height: 1.7;
        }
 
        /* ============================================
           App Shell
        ============================================ */
        .app-shell {
            width: 100%;
            max-width: 1060px;
            height: 640px;
            background: rgba(10, 9, 20, 0.95);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 16px;
            display: flex;
            overflow: hidden;
            box-shadow:
                0 0 0 1px rgba(255,255,255,0.04),
                0 40px 80px rgba(0,0,0,0.6),
                0 0 60px rgba(124, 58, 237, 0.08);
            position: relative;
        }
 
        /* Window bar */
        .app-shell::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
        }
 
        /* ============================================
           Sidebar
        ============================================ */
        .sidebar {
            width: 56px;
            background: rgba(255,255,255,0.02);
            border-right: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.2rem 0;
            gap: 0.3rem;
        }
 
        .sidebar-logo {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #7c3aed, #5b21b6);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 0.9rem;
            color: white;
            box-shadow: 0 0 16px rgba(124,58,237,0.4);
        }
 
        .sidebar-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: none;
            transition: background 0.15s ease, color 0.15s ease;
            color: rgba(255,255,255,0.25);
        }
 
        .sidebar-icon:hover,
        .sidebar-icon.active {
            background: rgba(124,58,237,0.15);
            color: #a78bfa;
        }
 
        .sidebar-icon.active {
            color: #a78bfa;
        }
 
        .sidebar-icon svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
 
        .sidebar-divider {
            width: 24px;
            height: 1px;
            background: rgba(255,255,255,0.06);
            margin: 0.5rem 0;
        }
 
        /* ============================================
           Main Content Area
        ============================================ */
        .app-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
 
        /* Top bar */
        .app-topbar {
            height: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
            flex-shrink: 0;
        }
 
        .app-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.05em;
        }
 
        .app-title span {
            color: #a78bfa;
        }
 
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
 
        .search-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 8px;
            padding: 0.3rem 0.8rem;
            width: 180px;
        }
 
        .search-bar svg {
            width: 13px;
            height: 13px;
            stroke: rgba(255,255,255,0.25);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            flex-shrink: 0;
        }
 
        .search-bar span {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.2);
            font-family: 'DM Sans', sans-serif;
        }
 
        .power-btn {
            width: 28px;
            height: 28px;
            border-radius: 7px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: none;
            transition: background 0.15s ease;
        }
 
        .power-btn:hover {
            background: rgba(239,68,68,0.15);
            border-color: rgba(239,68,68,0.3);
        }
 
        .power-btn svg {
            width: 13px;
            height: 13px;
            stroke: rgba(255,255,255,0.3);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
        }
 
        /* ============================================
           Breadcrumb & Tabs
        ============================================ */
        .app-nav-area {
            padding: 0.7rem 1.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            flex-shrink: 0;
        }
 
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.3);
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 0.7rem;
        }
 
        .breadcrumb .sep { opacity: 0.4; }
 
        .breadcrumb .current {
            color: #a78bfa;
        }
 
        .sub-tabs {
            display: flex;
            gap: 0.2rem;
        }
 
        .sub-tab {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.9rem;
            border-radius: 8px 8px 0 0;
            font-size: 0.8rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
            color: rgba(255,255,255,0.35);
            cursor: none;
            border: 1px solid transparent;
            border-bottom: none;
            transition: all 0.15s ease;
            position: relative;
            bottom: -1px;
        }
 
        .sub-tab:hover {
            color: rgba(255,255,255,0.65);
            background: rgba(255,255,255,0.03);
        }
 
        .sub-tab.active {
            color: #e2d9f3;
            background: rgba(124,58,237,0.12);
            border-color: rgba(124,58,237,0.25);
            border-bottom-color: rgba(10, 9, 20, 0.95);
        }
 
        .sub-tab svg {
            width: 13px;
            height: 13px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
        }
 
        /* ============================================
           Features Panel
        ============================================ */
        .features-panel {
            flex: 1;
            overflow-y: auto;
            padding: 1.4rem 1.5rem;
            scrollbar-width: none;
        }
 
        .features-panel::-webkit-scrollbar { display: none; }
 
        .panel-title {
            font-size: 0.65rem;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.3);
            text-transform: uppercase;
            margin-bottom: 1.2rem;
        }
 
        /* Section Headers */
        .feature-section {
            margin-bottom: 1.6rem;
        }
 
        .section-header {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            margin-bottom: 0.9rem;
        }
 
        .section-header svg {
            width: 16px;
            height: 16px;
            stroke: #8b5cf6;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
 
        .section-header h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #e2d9f3;
            letter-spacing: 0.01em;
        }
 
        /* Toggle Rows */
        .toggle-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
 
        .toggle-row:last-child {
            border-bottom: none;
        }
 
        .toggle-label {
            font-size: 0.87rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
            color: rgba(255,255,255,0.6);
        }
 
        /* Toggle Switch */
        .toggle {
            width: 38px;
            height: 20px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            position: relative;
            cursor: none;
            transition: background 0.2s ease;
            flex-shrink: 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
 
        .toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transition: transform 0.2s ease, background 0.2s ease;
        }
 
        .toggle.on {
            background: #7c3aed;
            border-color: #7c3aed;
            box-shadow: 0 0 12px rgba(124,58,237,0.5);
        }
 
        .toggle.on::after {
            transform: translateX(18px);
            background: white;
        }
 
        /* Overview list */
        .overview-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
 
        .overview-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 400;
        }
 
        .overview-item svg {
            width: 13px;
            height: 13px;
            flex-shrink: 0;
        }
 
        .overview-item.on {
            color: #a78bfa;
        }
 
        .overview-item.off {
            color: rgba(255,255,255,0.22);
        }
 
        .overview-item .ov-tag {
            font-weight: 500;
        }
 
        .overview-item .ov-meta {
            margin-left: auto;
            color: rgba(255,255,255,0.2);
            font-size: 0.72rem;
        }
 
        .overview-item.on .ov-meta {
            color: rgba(167,139,250,0.5);
        }
 
        /* Overview description */
        .overview-desc {
            font-size: 0.8rem;
            font-family: 'DM Sans', sans-serif;
            color: rgba(255,255,255,0.3);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
 
        /* ============================================
           Tab Content Panels (hidden/shown)
        ============================================ */
        .tab-panel {
            display: none;
        }
 
        .tab-panel.active {
            display: block;
        }
 
        /* Slider row */
        .slider-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            gap: 1rem;
        }
 
        .slider-left {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            min-width: 100px;
        }
 
        .slider-label {
            font-size: 0.87rem;
            font-family: 'DM Sans', sans-serif;
            color: rgba(255,255,255,0.6);
        }
 
        .slider-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: #a78bfa;
        }
 
        .slider {
            flex: 1;
            height: 3px;
            background: rgba(255,255,255,0.08);
            border-radius: 2px;
            outline: none;
            cursor: none;
        }
 
        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #7c3aed;
            box-shadow: 0 0 8px rgba(124,58,237,0.6);
            cursor: none;
        }
 
        /* ============================================
           Glow animation for active panel
        ============================================ */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(4px); }
            to   { opacity: 1; transform: translateY(0); }
        }
 
        .tab-panel.active {
            animation: fadeIn 0.18s ease;
        }
 
        /* ============================================
           Not-Interactable overlay hint
        ============================================ */
        .demo-hint {
            text-align: center;
            margin-top: 1.8rem;
            font-size: 0.78rem;
            font-family: 'DM Sans', sans-serif;
            color: rgba(255,255,255,0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
 
        .demo-hint::before,
        .demo-hint::after {
            content: '';
            height: 1px;
            width: 60px;
            background: rgba(255,255,255,0.07);
        }