:root {
    --bg-dark: #050505;
    --primary: #6e00ff;
    --primary-glow: #8f3dff;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --imgui-bg: #111;
    --imgui-header: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: loaderPulse 1.5s infinite alternate;
}

.loader-text {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: white;
    margin-bottom: 30px;
}

.loader-dots {
    display: flex;
    gap: 10px;
}

.loader-dots span {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotBounce 0.5s infinite alternate;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.1s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes loaderPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px var(--primary));
    }

    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px var(--primary-glow));
    }
}

@keyframes dotBounce {
    0% {
        transform: translateY(0);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #0084ff;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--glass-border) 1px, transparent 1px), linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    opacity: 0.2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: transparent;
}

nav.nav-scrolled {
    padding: 15px 40px;
    top: 20px;
    width: 90%;
    max-width: 1200px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-white);
    transition: all 0.4s ease;
}

nav.nav-scrolled .logo {
    font-size: 1.3rem;
}

.logo i {
    color: var(--primary);
    margin-right: 10px;
}

.links a {
    margin: 0 20px;
    font-weight: 400;
    color: var(--text-gray);
    transition: 0.3s;
}

.links a:hover {
    color: var(--text-white);
}

.btn-nav {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.4);
}

header {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
    border: 1px solid rgba(0, 255, 128, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #00ff80;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #00ff80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(110, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(110, 0, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

#showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 50px;
    flex-wrap: wrap;
}

.monitor-container {
    perspective: 1500px;
    width: 600px;
    height: 350px;
}

.monitor-frame {
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: 15px;
    border: 2px solid #333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 10px;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    position: relative;
}

.monitor-container:hover .monitor-frame {
    transform: rotateY(0deg) rotateX(0deg);
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: url('https://w.wallhaven.cc/full/28/wallhaven-281d5y.jpg') no-repeat center/cover;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.monitor-stand {
    width: 150px;
    height: 60px;
    background: #222;
    margin: -10px auto 0;
    position: relative;
    z-index: -1;
    transform: rotateX(40deg);
    border-radius: 0 0 10px 10px;
    opacity: 0.8;
}

.imgui-window {
    width: 450px;
    height: 280px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 20, 0.95);
    border-radius: 8px;
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(110, 0, 255, 0.2);
}

.imgui-header {
    height: 30px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.imgui-controls {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.imgui-body {
    display: flex;
    flex: 1;
}

.imgui-sidebar {
    width: 120px;
    background: #0f0f0f;
    border-right: 1px solid #333;
    padding: 10px;
}

.imgui-tab {
    color: #555;
    font-size: 0.8rem;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.imgui-tab.active {
    background: rgba(110, 0, 255, 0.1);
    color: var(--primary);
}

.imgui-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.imgui-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 0.8rem;
}

.toggle {
    width: 30px;
    height: 16px;
    background: #333;
    border-radius: 20px;
    position: relative;
}

.toggle.active {
    background: var(--primary);
}

.toggle.active::after {
    left: 15px;
}

.toggle::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.imgui-info {
    font-size: 0.75rem;
    color: #555;
    background: #111;
    padding: 5px;
    border-radius: 4px;
    text-align: center;
}

.spacer {
    flex: 1;
}

.imgui-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
}

.showcase-text {
    max-width: 400px;
}

.showcase-text h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.showcase-text p {
    color: var(--text-gray);
}

#tutorial {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.tutorial-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.step-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
}

.step-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    width: 220px;
    position: relative;
    transition: 0.3s;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--glass-bg), rgba(110, 0, 255, 0.05));
}

.step-bubble {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 20px var(--primary);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin: 20px 0;
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

#features {
    padding: 50px 50px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(110, 0, 255, 0.05) 100%);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(110, 0, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

#products {
    padding: 50px 50px 150px;
    text-align: center;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.product-card {
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 380px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card.highlight {
    border: 1px solid var(--primary);
    box-shadow: 0 0 40px rgba(110, 0, 255, 0.15);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    background: linear-gradient(160deg, #111 0%, rgba(110, 0, 255, 0.15) 100%);
    box-shadow: 0 20px 80px rgba(110, 0, 255, 0.2), inset 0 0 20px rgba(110, 0, 255, 0.05);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #222;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
}

.badge.new {
    background: var(--primary);
    color: white;
}

.product-image {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-white);
    filter: drop-shadow(0 0 20px var(--primary));
}

.subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.specs {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    padding: 0 20px;
}

.specs li {
    margin-bottom: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.specs li i {
    color: var(--primary);
    margin-right: 10px;
}

.price {
    margin-bottom: 30px;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.price h3 {
    font-size: 2.5rem;
    font-weight: 900;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 15px;
    background: white;
    color: black;
    border-radius: 12px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-buy:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 30px rgba(110, 0, 255, 0.4);
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 50px;
    background: #020202;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    nav {
        padding: 20px;
    }

    .links {
        display: none;
    }

    #showcase {
        flex-direction: column-reverse;
    }

    .monitor-container {
        width: 100%;
        height: 250px;
    }
}

.showcase-reverse {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 50px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.imgui-slider {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    position: relative;
    margin-left: 10px;
}

.slider-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    position: relative;
}

.slider-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.showcase-text p {
    color: var(--text-gray);
}

#reviews {
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(110, 0, 255, 0.02) 50%, var(--bg-dark) 100%);
}

.review-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.review-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.review-track:hover {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 350px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 12px;
    white-space: normal;
    transition: 0.3s;
}

.review-card:hover {
    border-color: var(--primary);
    background: rgba(110, 0, 255, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-header i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary);
}

.review-header .stars {
    margin-left: auto;
    color: #ffbd2e;
    letter-spacing: 2px;
}

.review-card p {
    color: #ccc;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-wrapper-3d {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scroll-left .review-track {
    animation: scroll 40s linear infinite;
}

.scroll-right .review-track {
    animation: scroll 45s linear infinite reverse;
}

.scroll-left-slow .review-track {
    animation: scroll 55s linear infinite;
}

.review-marquee {
    margin-bottom: 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

#reviews .section-title {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.section-title h2 {
    margin: 0 auto;
}

/* INTRO ANIMATION */
.loader-content.zoom-effect {
    animation: impactZoom 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes impactZoom {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(30);
        opacity: 0;
        filter: blur(20px);
    }
}
/* MUSIC PLAYER */
.music-player { position: fixed; bottom: 30px; left: 30px; background: rgba(15, 15, 15, 0.9); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 15px 25px; border-radius: 50px; display: flex; align-items: center; gap: 20px; z-index: 999; opacity: 0; transform: translateY(50px); transition: 0.5s; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.music-player.show { opacity: 1; transform: translateY(0); }
.track-info { display: flex; align-items: center; gap: 15px; }
.track-icon { font-size: 24px; color: #1DB954; }
.track-text { display: flex; flex-direction: column; line-height: 1.2; }
.track-title { font-weight: 700; font-size: 0.9rem; color: white; }
.track-artist { font-size: 0.75rem; color: #aaa; }
.player-controls { display: flex; align-items: center; gap: 15px; margin-left: 10px; }
.player-controls i { cursor: pointer; color: #ccc; transition: 0.3s; }
.player-controls i:hover { color: white; }
.control-btn { background: none; border: none; color: white; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,0.1); transition: 0.3s; }
.control-btn:hover { background: var(--primary); transform: scale(1.1); }

/* NAV PLAYER UPDATE */
.music-player { position: relative !important; bottom: auto !important; left: auto !important; transform: translateY(-50px); opacity: 0; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); padding: 8px 20px; border-radius: 30px; display: flex; align-items: center; gap: 15px; margin-left: 20px; }
.music-player.show { animation: slideDown 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes slideDown { 0% { opacity: 0; transform: translateY(-50px); } 100% { opacity: 1; transform: translateY(0); } }
.track-icon { font-size: 1.2rem; color: #1DB954; margin: 0; }
.track-title { font-size: 0.85rem; font-weight: 700; color: white; white-space: nowrap; }
#play-pause-btn { background: none; border: none; color: #ccc; cursor: pointer; font-size: 0.9rem; transition: 0.3s; width: auto; height: auto; }
#play-pause-btn:hover { color: white; transform: scale(1.2); background: none; }

/* SIDEBAR TRANSITION ON SCROLL */
.nav-wrapper { display: flex; align-items: center; transition: 0.5s; }

nav.nav-scrolled { top: 0; left: 0; width: 260px; height: 100vh; border-radius: 0 24px 24px 0; flex-direction: column; justify-content: flex-start; padding: 50px 20px; gap: 40px; background: rgba(5, 5, 5, 0.95); border-right: 1px solid var(--glass-border); border-bottom: none; transform: translateX(0); }

nav.nav-scrolled .nav-wrapper { flex-direction: column; width: 100%; gap: 30px; }

nav.nav-scrolled .links { display: flex; flex-direction: column; width: 100%; gap: 15px; text-align: center; }

nav.nav-scrolled .links a { margin: 0; padding: 12px; border-radius: 12px; transition: 0.3s; }

nav.nav-scrolled .links a:hover { background: rgba(110, 0, 255, 0.1); color: var(--primary); transform: translateX(5px); }

nav.nav-scrolled .music-player { margin-left: 0; width: 100%; justify-content: center; margin-top: auto; padding: 20px; background: rgba(255,255,255,0.03); }

nav.nav-scrolled .logo { font-size: 1.8rem; margin-bottom: 20px; }

/* CENTERED FLOATING PILL NAV (OVERRIDE) */
nav.nav-scrolled { flex-direction: row; width: auto; max-width: 90%; height: auto; top: 20px; left: 50%; transform: translateX(-50%); border-radius: 50px; padding: 10px 30px; justify-content: space-between; align-items: center; border: 1px solid var(--glass-border); background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px); gap: 30px; }

nav.nav-scrolled .nav-wrapper { flex-direction: row; width: auto; margin-top: 0; gap: 30px; }

nav.nav-scrolled .links { flex-direction: row; width: auto; text-align: left; gap: 10px; }

nav.nav-scrolled .links a { margin: 0; padding: 8px 16px; border-radius: 20px; }

nav.nav-scrolled .links a:hover { transform: none; background: rgba(255,255,255,0.08); }

nav.nav-scrolled .music-player { margin-left: 0; width: auto; margin-top: 0; padding: 8px 20px; background: rgba(255,255,255,0.05); }

nav.nav-scrolled .logo { margin-bottom: 0; font-size: 1.2rem; display: block; margin-right: 18px; }

/* NEW ZOOM OUT TRANSITION */
.loader-content.zoom-effect { animation: zoomOutFX 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards; }
@keyframes zoomOutFX { 0% { transform: scale(1); opacity: 1; } 20% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(0); opacity: 0; filter: blur(10px); } }

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    html { font-size: 14px; }
    .hero-content h1 { font-size: 2.8rem; }
    /* Nav */
    nav { padding: 15px; }
    .links { display: none; } /* Hide links for clean look */
    .music-player .track-info, .music-player .track-icon { display: none; } /* Compact player icon only */
    .music-player { padding: 8px 12px; margin-left: auto; background: rgba(110,0,255,0.2); }
    /* Scrolled Nav */
    nav.nav-scrolled { width: 95%; padding: 10px 20px; left: 50%; transform: translateX(-50%); justify-content: space-between; }
    nav.nav-scrolled .links { display: none; }
    nav.nav-scrolled .logo { margin-right: 0; }
    /* 3D Showcase -> Flat */
    #showcase, .showcase-reverse { flex-direction: column; padding: 40px 15px; text-align: center; gap: 30px; }
    .monitor-container { width: 100%; height: 220px; perspective: none; }
    .monitor-frame { transform: none !important; width: 100%; }
    .monitor-stand { display: none; }
    .imgui-window { transform: translate(-50%, -50%) scale(0.65); width: 340px; }
    /* Clean up grids */
    .step-container { flex-direction: column; gap: 20px; }
    .step-line-bg { display: none; }
    .feature-grid { grid-template-columns: 1fr; }
    .product-card { width: 100%; max-width: 400px; margin: 0 auto; }
    /* Simplify Reviews */
    .scroll-right, .scroll-left-slow { display: none; } /* Only 1 row */
    .review-card { width: 260px; padding: 15px; }
    /* Misc */
    .showcase-text h2 { font-size: 2rem; }
    .loader-text { font-size: 2rem; }
}


/* ANTI-COPY PROTECTION */
body { -webkit-user-select: none; user-select: none; }
img, video { pointer-events: none; -webkit-user-drag: none; }
