@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #050714;
    --bg-dark-rgb: 5, 7, 20;
    --bg-card: rgba(12, 17, 38, 0.65);
    --bg-card-hover: rgba(18, 26, 56, 0.8);
    --border-color: rgba(16, 185, 129, 0.12);
    --border-glow: rgba(16, 185, 129, 0.25);
    
    --accent-cyan: #10b981;
    --accent-cyan-rgb: 16, 185, 129;
    --accent-blue: #0ea5e9;
    --accent-blue-rgb: 14, 165, 233;
    --accent-indigo: #06b6d4;
    --accent-glow-cyan: radial-gradient(circle at center, rgba(16, 185, 129, 0.15), transparent 70%);
    --accent-glow-blue: radial-gradient(circle at center, rgba(14, 165, 233, 0.1), transparent 70%);

    --color-one: #10b981;
    --color-two: #0ea5e9;
    --color-three: #06b6d4;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --text-main: #f8fafc;
    --text-muted: #a3b8cc;
    --text-dim: #64748b;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

.ambient-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 100%);
    top: -10%;
    left: -10%;
}

.glow-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    bottom: -15%;
    right: -10%;
    animation-delay: -5s;
}

.glow-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 80%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.1); }
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 16px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-pill .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.spotlight-card {
    position: relative;
    overflow: hidden;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        350px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(0, 242, 254, 0.08),
        transparent 80%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.spotlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        250px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(0, 242, 254, 0.25),
        transparent 80%
    );
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 0.5s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-nav {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 99px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    top: 0;
}

.header.scrolled .nav-container {
    border-radius: 0;
    max-width: 100%;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(5, 5, 8, 0.85);
    padding: 16px 40px;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 15, 30, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 20px;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px var(--border-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--text-main);
    text-transform: uppercase;
}

.logo-text span {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 22px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--color-three) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.mockup-container {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cheat-menu-mockup {
    width: 100%;
    max-width: 720px;
    min-height: 480px; /* Force minimum height to fit all controls */
    margin: 0 auto;
    background-color: #0b0d1b;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 
        -15px 15px 35px rgba(0, 0, 0, 0.55), 
        0 0 40px rgba(59, 130, 246, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: rotateY(-8deg) rotateX(5deg) rotateZ(-0.5deg);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.cheat-menu-mockup:hover {
    transform: rotateY(-4deg) rotateX(3deg) rotateZ(-0.2deg) translateY(-4px);
    box-shadow: 
        -25px 25px 45px rgba(0, 0, 0, 0.65), 
        0 0 50px rgba(59, 130, 246, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.cheat-menu-light-beams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.03) 40%, transparent 100%);
    transform-origin: top center;
    filter: blur(20px);
}

.beam-1 {
    left: 15%;
    width: 100px;
    height: 100%;
    transform: rotate(20deg);
}

.beam-2 {
    left: 50%;
    width: 150px;
    height: 100%;
    transform: rotate(-2deg) translateX(-50%);
}

.beam-3 {
    right: 15%;
    width: 110px;
    height: 100%;
    transform: rotate(-25deg);
}

.cheat-sidebar {
    width: 155px;
    background: rgba(8, 10, 24, 0.6);
    border-right: 1px solid rgba(59, 130, 246, 0.15);
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    flex-shrink: 0;
    z-index: 2;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-left: 6px;
}

.sidebar-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(13, 17, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-dim);
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
    text-align: left;
}

.sidebar-tab-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.sidebar-tab-btn:hover {
    color: var(--text-main);
    background: rgba(20, 24, 45, 0.6);
}

.sidebar-tab-btn:hover .sidebar-tab-icon {
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--text-main);
}

.sidebar-tab-btn.active {
    background: rgba(13, 17, 39, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: var(--text-main);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
}

.sidebar-tab-btn.active .sidebar-tab-icon {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.cheat-content-area {
    flex-grow: 1;
    background: rgba(6, 8, 20, 0.45);
    padding: 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 0; /* needed for flex scrolling */
    z-index: 2;
}

.mockup-game-preview {
    flex-grow: 1;
    background: #04050d;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 220px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

#mockup-preview-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.preview-watermark {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    pointer-events: none;
}

.tab-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.tab-panel.active {
    display: flex;
}

.panel-header {
    font-size: 15px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.mockup-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.mockup-checkbox-wrapper {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.mockup-checkbox-wrapper input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.mockup-checkbox {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-checkbox-wrapper input:checked + .mockup-checkbox {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.mockup-checkbox::after {
    content: '';
    width: 6px;
    height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(0.5px, -0.5px);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.mockup-checkbox-wrapper input:checked + .mockup-checkbox::after {
    opacity: 1;
}

.mockup-slider-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(13, 17, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.mockup-range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    cursor: pointer;
}

.mockup-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
    transition: transform 0.1s ease;
}

.mockup-range::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.mockup-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
    transition: transform 0.1s ease;
}

.mockup-range::-moz-range-thumb:hover {
    transform: scale(1.25);
}

.mockup-status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.status-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.status-row span:last-child {
    color: var(--text-main);
    font-weight: 600;
}

.status-online {
    color: #10b981 !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.feature-card {
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    position: relative;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper.type-dashed {
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.feature-icon-wrapper.type-dashed::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1.2px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.feature-icon-wrapper.type-dashed:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.08),
        inset 0 0 10px rgba(59, 130, 246, 0.03);
}

.feature-icon-wrapper.type-solid {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.04);
}

.feature-icon-wrapper.type-solid::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    background: rgba(5, 7, 20, 0.45);
}

.feature-icon-wrapper.type-solid::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper.type-solid:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 
        0 0 25px rgba(59, 130, 246, 0.15),
        inset 0 0 15px rgba(59, 130, 246, 0.06);
}

.feature-icon-wrapper.type-solid:hover::after {
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.03);
    opacity: 0.6;
}

.icon-inner-circle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.feature-icon-wrapper svg {
    width: 34px;
    height: 34px;
    stroke: var(--text-main);
    stroke-width: 1.5;
    fill: none;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08));
}

.feature-icon-wrapper:hover svg {
    stroke: var(--accent-cyan);
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
}

.scan-line {
    animation: fingerprint-scan 3.2s infinite ease-in-out;
}

@keyframes fingerprint-scan {
    0%, 100% {
        transform: translateY(-6px);
        opacity: 0.15;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

.gauge-needle {
    transform-origin: 12px 12px;
    animation: pulse-needle 2.8s infinite ease-in-out;
}

@keyframes pulse-needle {
    0%, 100% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(65deg);
    }
}

.spin-slow-ccw {
    transform-origin: center;
    animation: spin-ccw 22s infinite linear;
}

@keyframes spin-ccw {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.spin-slow-cw {
    transform-origin: center;
    animation: spin-cw 15s infinite linear;
}

@keyframes spin-cw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pulsing-circles circle {
    transform-origin: center;
    animation: scale-pulse 3s infinite ease-in-out;
}

.pulsing-circles circle:nth-child(2) {
    animation-delay: 0.75s;
}

.pulsing-circles circle:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes scale-pulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.35;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.85;
    }
}

.bolt-pulse {
    animation: bolt-pulse-key 2.2s infinite ease-in-out;
}

@keyframes bolt-pulse-key {
    0%, 100% {
        opacity: 0.75;
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8));
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 36px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.premium-tier {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.05);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-cyan);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.pricing-card .desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1;
}

.pricing-price span.try-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-left: 4px;
}

.pricing-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-main);
}

.pricing-features li i {
    font-size: 14px;
}

.pricing-features li.included i {
    color: var(--accent-cyan);
}

.pricing-features li.excluded {
    color: var(--text-dim);
    text-decoration: line-through;
}

.pricing-features li.excluded i {
    color: var(--text-dim);
}

.pricing-card .btn {
    width: 100%;
}

.payment-methods-container {
    margin-top: 60px;
    padding: 40px 30px;
}

.payment-methods-container h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.payment-methods-container p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.payment-grids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.payment-group {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.group-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.method-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.bypass-card {
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bypass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-cyan-rgb), 0.2);
}

.bypass-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.bypass-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(var(--accent-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-cyan);
}

.bypass-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.bypass-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.bypass-tag {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bypass-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    color: #10b981;
}

.status-pulse-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.bypass-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.25);
    background: var(--bg-card-hover);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.faq-question span {
    font-family: var(--font-heading);
}

.faq-icon {
    font-size: 16px;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.03);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    position: relative;
    background: rgba(3, 7, 18, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    text-align: left;
    margin-bottom: 60px;
}

.footer-col p {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-main);
    padding-left: 4px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    font-size: 13px;
    color: var(--text-dim);
}

.copyright-links {
    display: flex;
    gap: 24px;
}

.copyright-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition-fast);
}

.copyright-links a:hover {
    color: var(--text-muted);
}

.premium-music-player {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.4s ease;
}

.premium-music-player.expanded {
    width: 260px;
    border-radius: 16px;
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.player-btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.player-btn-circle:hover {
    transform: scale(1.05);
}

.player-info {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 16px;
    overflow: hidden;
}

.premium-music-player.expanded .player-info {
    opacity: 1;
}

.player-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-subtitle {
    font-size: 10px;
    color: var(--text-muted);
}

.player-waveform {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    margin-right: 8px;
}

.premium-music-player.expanded .player-waveform {
    display: flex;
}

.wave-bar {
    width: 2px;
    height: 4px;
    background-color: var(--accent-cyan);
    border-radius: 1px;
}

.premium-music-player.playing .wave-bar {
    animation: bounceWave 0.8s infinite alternate ease-in-out;
}

.wave-bar:nth-child(2) { animation-delay: 0.15s; }
.wave-bar:nth-child(3) { animation-delay: 0.3s; }
.wave-bar:nth-child(4) { animation-delay: 0.45s; }

@keyframes bounceWave {
    0% { height: 4px; }
    100% { height: 18px; }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.terms-modal {
    width: 100%;
    max-width: 960px;
    height: 90vh;
    max-height: 700px;
    background: rgba(10, 15, 30, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.05);
    display: flex;
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .terms-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--text-main);
    border-color: var(--accent-cyan);
    background: rgba(59, 130, 246, 0.05);
    transform: rotate(90deg);
}

.terms-sidebar {
    width: 240px;
    border-right: 1px solid var(--border-color);
    background: rgba(3, 7, 18, 0.6);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.terms-sidebar h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.terms-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 20px;
}

.terms-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.terms-nav li a.active,
.terms-nav li a:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.terms-nav li a.active {
    background: rgba(59, 130, 246, 0.06);
    border-left: 2px solid var(--accent-cyan);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.terms-progress-container {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.terms-progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.terms-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: width 0.1s linear;
}

.terms-progress-text {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 6px;
    display: block;
    text-align: right;
}

.terms-body {
    flex-grow: 1;
    padding: 50px;
    overflow-y: auto;
}

.terms-content-section {
    margin-bottom: 60px;
}

.terms-content-section:last-child {
    margin-bottom: 0;
}

.terms-content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-content-section h2 span {
    font-size: 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-cyan);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-content-section p,
.terms-content-section li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.terms-content-section ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 24px;
    }
    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 388px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    h2 { font-size: 2.4rem; }
    .hero h1 { font-size: 3.4rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .cheat-menu-mockup { transform: none; }
    .features-grid { grid-template-columns: 1fr; }
    .cheat-columns, .visual-columns { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 24px;
        right: 24px;
        background: rgba(3, 7, 18, 0.95);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 40px;
        flex-direction: column;
        gap: 24px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .status-indicator {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .terms-modal {
        flex-direction: column;
        height: 95vh;
    }
    
    .terms-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        height: 180px;
        padding: 20px;
    }
    
    .terms-nav {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
    }
    
    .terms-body {
        padding: 30px 20px;
    }
    
    .payment-grids {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
    .pricing-card:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.8rem; }
    .btn { padding: 12px 24px; font-size: 14px; }
}

/* Compatibility Dashboard Styles */
.compatibility-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark), rgba(10, 15, 10, 0.4));
    position: relative;
    border-top: 1px solid var(--border-color);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.comp-card {
    padding: 30px;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05);
}

.comp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comp-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.comp-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
}

.comp-status-badge {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.comp-status-badge.operational {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.comp-status-badge.supported {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-cyan);
}

.comp-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comp-details li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-details li i {
    color: var(--accent-cyan);
    font-size: 11px;
}

@media (max-width: 1024px) {
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
}


/* Animated Border Beam Effect */
.border-beam-container {
    position: relative;
    z-index: 1;
}

.border-beam {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px; /* Border thickness */
    background: transparent;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 5;
}

.border-beam::after {
    content: "";
    position: absolute;
    aspect-ratio: 1;
    width: var(--beam-size, 160px);
    background: linear-gradient(to right, var(--color-one), var(--color-two), var(--color-three), transparent);
    offset-path: rect(0 auto auto 0 round var(--radius, 20px));
    animation: border-beam-anim var(--beam-duration, 5s) infinite linear;
}

@keyframes border-beam-anim {
    to {
        offset-distance: 100%;
    }
}

/* New Cheat Menu Elements & Columns */
.cheat-menu-header {
    width: 100%;
    padding: 14px;
    background: rgba(6, 6, 8, 0.95);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    z-index: 10;
    position: relative;
}

.cheat-menu-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 0.3em;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    text-transform: uppercase;
}

.cheat-menu-body {
    display: flex;
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
}

.cheat-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.visual-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 12px;
    width: 100%;
}

.cheat-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px 12px;
    overflow-y: hidden; /* Hide column scrollbars */
}

.column-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
    margin-bottom: 3px;
    font-weight: 700;
    text-align: left;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.row-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.row-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
}

.row-desc {
    font-size: 8px;
    color: var(--text-dim);
}

.select-row {
    justify-content: space-between;
}

.mockup-select-wrapper {
    position: relative;
}

.mockup-select {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 18px 4px 8px;
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

.mockup-select-wrapper::after {
    content: '▾';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    color: var(--text-dim);
    pointer-events: none;
}

.keybind-row {
    justify-content: space-between;
}

.btn-bind {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 9.5px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-bind:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-cyan);
}

.panel-placeholder-text {
    font-size: 11.5px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

/* Video Showcase Section */
.showcase-section {
    background: linear-gradient(180deg, var(--bg-dark), rgba(10, 10, 15, 0.5));
    border-top: 1px solid var(--border-color);
    padding: 100px 0;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.04);
    border: 1px solid var(--border-color);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: relative;
    z-index: 2;
}

.visual-preview-col {
    grid-column: span 1;
}

.tab-panel.active {
    display: flex;
    flex-direction: column;
}

.scrollable-column {
    max-height: 350px;
    overflow-y: auto !important;
    padding-right: 6px;
}

.scrollable-column::-webkit-scrollbar {
    width: 3px;
}

.scrollable-column::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 99px;
    box-shadow: 0 0 4px rgba(59, 130, 246, 0.6);
}

.scrollable-column::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

/* Thin Custom Scrollbars */
.cheat-sidebar::-webkit-scrollbar,
.cheat-content-area::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.cheat-sidebar::-webkit-scrollbar-thumb,
.cheat-content-area::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.2);
    border-radius: 99px;
}
.cheat-sidebar::-webkit-scrollbar-track,
.cheat-content-area::-webkit-scrollbar-track {
    background: transparent;
}


/* NEXIUM MOCKUP UI STYLING */
.cheat-menu-mockup {
    width: 100%;
    max-width: 880px !important;
    min-height: 400px !important;
    margin: 0 auto;
    background-color: #0b0d19 !important;
    border: 1px solid rgba(59, 130, 246, 0.18) !important;
    box-shadow: 
        -20px 20px 45px rgba(0, 0, 0, 0.6), 
        0 0 50px rgba(59, 130, 246, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: rotateY(-6deg) rotateX(4deg) rotateZ(-0.3deg);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.cheat-menu-mockup:hover {
    transform: rotateY(-2deg) rotateX(2deg) rotateZ(-0.1deg) translateY(-3px);
    box-shadow: 
        -30px 30px 55px rgba(0, 0, 0, 0.7), 
        0 0 60px rgba(59, 130, 246, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.12) !important;
}

.cheat-menu-body {
    display: flex !important;
    flex-direction: row !important;
    height: 420px !important;
    background: #05060f !important;
}

/* Sidebar styling */
.cheat-sidebar {
    width: 160px !important;
    background: #0c0e1b !important;
    border-right: 1px solid rgba(59, 130, 246, 0.12) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 14px 10px !important;
    flex-shrink: 0 !important;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding-left: 4px;
}

.menu-logo-img {
    height: 20px;
    width: auto;
}

.menu-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.category-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    padding: 7px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
}

.category-btn.active {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.08);
}

.category-icon {
    font-size: 12px;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.profile-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.profile-details {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.profile-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-main);
}

.profile-expiry {
    font-size: 8px;
    color: #5ab55e;
    font-weight: 500;
}

/* Main Content Area */
.cheat-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #060713;
    border-right: 1px solid rgba(59, 130, 246, 0.08);
    min-width: 0;
}

.menu-body-header {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #080a18;
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.tab-select {
    background: #0b0d19;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-main);
    border-radius: 4px;
    padding: 3px 24px 3px 8px;
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.tab-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.2);
}

.menu-settings-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 11px;
    transition: var(--transition-fast);
}

.menu-settings-btn:hover {
    color: var(--text-main);
}

/* Panels */
.menu-body-content {
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
}

.category-panel {
    display: none;
    width: 100%;
    height: 100%;
}

.category-panel.active {
    display: block;
}

.menu-tab-panel {
    display: none;
    width: 100%;
    height: 100%;
}

.menu-tab-panel.active {
    display: block;
}

.menu-columns {
    display: flex;
    height: 100%;
}

.menu-column {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.menu-column:first-child {
    border-right: 1px solid rgba(59, 130, 246, 0.05);
}

.column-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding-bottom: 4px;
}

/* Mockup Rows */
.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 6px 10px;
    border-radius: 6px;
    min-height: 32px;
    height: auto;
}

.row-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-main);
}

.row-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-settings-gear {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 9px;
}

.row-settings-gear:hover {
    color: var(--text-main);
}

.color-picker-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

/* Switches */
.switch {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 13px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: .2s;
    border-radius: 20px;
}

.slider-toggle:before {
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    left: 1px;
    bottom: 1px;
    background-color: #a3b8cc;
    transition: .2s;
    border-radius: 50%;
}

input:checked + .slider-toggle {
    background-color: rgba(59, 130, 246, 0.18);
    border-color: rgba(59, 130, 246, 0.4);
}

input:checked + .slider-toggle:before {
    transform: translateX(11px);
    background-color: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

/* Sliders */
.mockup-slider-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 6px 10px;
    border-radius: 6px;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-val {
    font-size: 9px;
    font-family: monospace;
    font-weight: 700;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
}

.mockup-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.mockup-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.7);
    transition: transform 0.1s;
}

.mockup-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Dropdowns in columns */
.mockup-select-wrapper {
    position: relative;
    display: inline-block;
}

.mockup-select {
    background: #080a18;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-main);
    border-radius: 4px;
    padding: 2px 14px 2px 6px;
    font-size: 9px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 8px;
}

/* Location list column */
.list-column {
    max-height: 100%;
}

.locations-list-scroll {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow-y: auto;
    flex-grow: 1;
    max-height: 280px;
    padding-right: 2px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.location-item.active {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-main);
}

.loc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    transition: var(--transition-fast);
}

.location-item.active .loc-dot {
    background: #3b82f6;
    box-shadow: 0 0 6px #3b82f6;
}

.teleport-action-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.btn-teleport {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 8px 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Right Mannequin Panel styling */
.mannequin-panel {
    width: 170px;
    background: #090a18;
    padding: 14px 10px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
    border-left: 1px solid rgba(59, 130, 246, 0.05);
}

.mannequin-wrapper {
    display: none;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.mannequin-wrapper.active {
    display: flex;
}

.mannequin-header {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 12px;
    text-align: center;
}

.mannequin-graphic {
    flex-grow: 1;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.mannequin-svg {
    height: 220px;
    width: auto;
}

/* Bone Dots */
.bone-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #3b3f54;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s, box-shadow 0.2s;
}

.bone-dot:hover {
    background-color: #555c7b;
}

.bone-dot.active {
    background-color: #3b82f6;
    box-shadow: 0 0 6px #3b82f6, 0 0 12px rgba(59, 130, 246, 0.4);
}

.mannequin-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    line-height: 1.2;
}

.bone-status {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-main);
}

.bone-sub {
    font-size: 8px;
    color: var(--text-dim);
}

/* ESP Preview styling */
.esp-preview-box {
    position: absolute;
    border: 1.2px solid rgba(255, 255, 255, 0.2);
    width: 58px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.2s, border-color 0.2s;
    border-radius: 2px;
}

#esp-preview-mannequin .mannequin-svg {
    height: 165px;
    width: auto;
}


.esp-preview-health {
    position: absolute;
    background: #22c55e;
    width: 2.2px;
    height: 180px;
    top: 50%;
    right: calc(50% + 33px);
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.2s;
}

.esp-preview-armor {
    position: absolute;
    background: #3b82f6;
    width: 2.2px;
    height: 180px;
    top: 50%;
    left: calc(50% + 33px);
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.2s;
}

.esp-preview-name {
    position: absolute;
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.2s;
}

.esp-preview-distance {
    position: absolute;
    font-size: 7px;
    font-weight: 500;
    color: #a3b8cc;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.2s;
}

.esp-preview-weapon {
    position: absolute;
    font-size: 7px;
    font-weight: 600;
    color: #e2e8f0;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.2s;
}

/* Custom scrollbars inside the menu */
.locations-list-scroll::-webkit-scrollbar,
.menu-column::-webkit-scrollbar {
    width: 3px;
}

.locations-list-scroll::-webkit-scrollbar-thumb,
.menu-column::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
}

.locations-list-scroll::-webkit-scrollbar-track,
.menu-column::-webkit-scrollbar-track {
    background: transparent;
}

/* Dynamic Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3px 6px;
    border-radius: 6px;
}
.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
}
.lang-btn:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.05);
}
.lang-btn.active {
    opacity: 1;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.12);
}
.lang-btn svg {
    display: block;
    width: 20px;
    height: 13.3px;
    border-radius: 2px;
    pointer-events: none;
}

/* Config & Search Custom Mockup Styles */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #0b0d19;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    padding: 3px 8px;
    width: 130px;
    height: 22px;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 9px;
    width: 100%;
    font-family: var(--font-body);
}

.search-icon {
    color: #3b82f6;
    font-size: 8px;
    margin-left: 4px;
    pointer-events: none;
}

.configs-list-scroll {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow-y: auto;
    flex-grow: 1;
    max-height: 280px;
    padding-right: 2px;
}

.configs-list-scroll::-webkit-scrollbar {
    width: 3px;
}

.configs-list-scroll::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
}

.config-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.config-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.config-item.active {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-main);
}

.config-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.config-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    transition: var(--transition-fast);
}

.config-item.active .config-dot {
    background: #3b82f6;
    box-shadow: 0 0 6px #3b82f6;
}

.config-item-delete-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 9px;
    opacity: 0;
    transition: opacity 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.config-item:hover .config-item-delete-btn {
    opacity: 0.6;
}

.config-item:hover .config-item-delete-btn:hover {
    opacity: 1;
    color: #ff4b4b;
}

/* Active style for Settings button in header */
.menu-settings-btn.active {
    background: var(--accent-cyan) !important;
    color: #05060f !important;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px var(--border-glow);
    padding: 0 !important;
}

.menu-settings-btn.active i {
    font-size: 10px;
}
