:root {
    --bg-dark: #070707;
    --bg-panel: #111111;
    --bg-border: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #7c3aed;
    --accent-glow: rgba(124, 58, 237, 0.4);
    --success: #10b981;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* All sections */
nav,
header,
section,
footer,
.marquee-container {
    position: relative;
    z-index: 1;
}

/* Typography */
.title-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    border-bottom: 1px solid var(--bg-border);
    background: rgba(7, 7, 7, 0.92);
    backdrop-filter: blur(14px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.version-badge {
    border: 1px solid var(--bg-border);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
}

.btn-nav {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 8px 20px;
    font-size: 0.88rem;
}

.btn-nav:hover {
    background: #e0e0e0;
}

.btn-main {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 15px 35px;
    font-size: 1rem;
}

.btn-main:hover {
    background: #e8e8e8;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--bg-border);
    padding: 15px 35px;
}

.btn-outline:hover {
    background: #111;
}

.btn-buy {
    background: var(--bg-panel);
    color: var(--text-main);
    border: 1px solid var(--bg-border);
    padding: 12px;
    width: 100%;
}

.btn-buy:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Hero */
.hero {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 20px 60px;
    position: relative;
}

.hero-tag {
    border: 1px solid var(--bg-border);
    background: var(--bg-panel);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(3rem, 7vw, 8rem);
    line-height: 0.88;
    letter-spacing: -3px;
    margin: 0;
}

.outline-text {
    -webkit-text-stroke: 2px #2a2a2a;
    color: transparent;
    margin-bottom: 36px;
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 44px;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    font-size: 0.68rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--bg-panel);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    padding: 14px 0;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    align-items: center;
}

.marquee-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 700;
}

.marquee-content .dot {
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 28px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Stats */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 80px 5%;
    border-bottom: 1px solid var(--bg-border);
}

.stat-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Template */
.features,
.pricing,
.module-section {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Features Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.grid-item {
    background: var(--bg-panel);
    border: 1px solid var(--bg-border);
    padding: 38px 30px;
    border-radius: 12px;
    transition: border-color 0.3s;
}

.grid-item:hover {
    border-color: #333;
}

.grid-tag {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--bg-border);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 18px;
    display: inline-block;
}

.grid-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.grid-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Bypass Section */
.bypass-section {
    padding: 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.bypass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 50px;
}

.bypass-card {
    background: var(--bg-panel);
    border: 1px solid var(--bg-border);
    padding: 30px;
    border-radius: 12px;
}

.bypass-status {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.bypass-status.ok {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.bypass-status.partial {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.bypass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.bypass-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Module Section */
.module-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.module-cat {
    background: var(--bg-panel);
    border: 1px solid var(--bg-border);
    padding: 30px;
    border-radius: 12px;
}

.module-cat h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--bg-border);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.module-cat ul {
    list-style: none;
}

.module-cat ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-border);
    font-size: 0.88rem;
    color: #ccc;
    font-weight: 500;
}

.module-cat ul li:last-child {
    border: none;
}

.module-cat ul li::before {
    content: '→ ';
    color: var(--accent);
    font-weight: 700;
}

/* License Section */
.license-section {
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    padding: 100px 5%;
}

.license-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.license-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.license-text>p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.license-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.lp-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-border);
    flex-shrink: 0;
    line-height: 1;
}

.lp strong {
    display: block;
    margin-bottom: 4px;
}

.lp p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Terminal Box */
.terminal-box {
    background: #000;
    border: 1px solid var(--bg-border);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.terminal-header {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--bg-border);
}

.dot-red {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.dot-yellow {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #febb2d;
}

.dot-green {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #28c840;
}

.terminal-title {
    margin-left: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 24px 20px;
    font-size: 0.82rem;
    line-height: 2;
    color: #aaa;
}

.t-label {
    color: #666;
}

.t-hash {
    color: var(--accent);
}

.t-success {
    color: var(--success);
}

.t-blink {
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.price-card {
    background: var(--bg-panel);
    border: 1px solid var(--bg-border);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popular {
    border-color: #333;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: var(--bg-dark);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.tier-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 4px;
}

.currency {
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.amount {
    font-size: 4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.billing {
    color: var(--text-muted);
    font-size: 0.83rem;
    margin-bottom: 28px;
}

.features-list {
    list-style: none;
    margin-top: 28px;
    flex: 1;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-border);
    font-size: 0.88rem;
    color: #ccc;
}

.features-list li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: bold;
}

.features-list li:last-child {
    border: none;
}

.features-list li.unavailable {
    color: var(--text-muted);
    opacity: 0.45;
}

.features-list li.unavailable::before {
    content: '– ';
    color: var(--text-muted);
}

/* Interactive Preview */
.interactive-preview {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.preview-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    height: 600px;
}

.config-panel {
    flex: 0 0 350px;
    background: var(--bg-panel);
    border: 1px solid var(--bg-border);
    padding: 40px;
    border-radius: 12px;
}

.config-panel h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 30px;
    font-size: 1.2rem;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-border);
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-border);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--accent);
}

input:checked+.slider:before {
    transform: translateX(20px);
    background-color: #fff;
}

/* Game View */
.game-view {
    flex: 1;
    background: #000;
    border: 1px solid var(--bg-border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
}

.player-box {
    position: absolute;
    display: none;
}

.player-box.active {
    display: block;
}

.box-outline {
    width: 100%;
    height: 100%;
    border: 1px solid var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.nametag {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    white-space: nowrap;
    border: 1px solid var(--bg-border);
}




#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hint-text {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Changelogs */
.changelog-section {
    padding: 100px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.changelog-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.changelog-entry {
    background: var(--bg-panel);
    border: 1px solid var(--bg-border);
    padding: 30px;
    border-radius: 12px;
}

.cl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bg-border);
    padding-bottom: 15px;
}

.cl-ver {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.cl-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cl-list {
    list-style: none;
    padding: 0;
}

.cl-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.cl-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.changelog-placeholder {
    text-align: center;
    padding: 40px;
    border: 1px dashed var(--bg-border);
    border-radius: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* Trust Section */
.trust-section {
    padding: 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trust-item {
    background: var(--bg-panel);
    border: 1px solid var(--bg-border);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.trust-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--bg-border);
    padding: 50px 5% 30px;
    margin-top: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.f-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.f-links {
    display: flex;
    gap: 30px;
}

.f-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
}

.f-links a:hover {
    color: var(--text-main);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 1000px) {
    .license-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 14vw;
    }

    .stats-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
}