:root {
    --bg: #020202;
    --magenta: #bf00ff;
    --magenta-dark: #4a0063;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }

.bg-wrapper {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; background: var(--bg); overflow: hidden;
}

.blob-1, .blob-2 {
    position: absolute; width: 1000px; height: 1000px;
    background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
    filter: blur(160px); 
    opacity: 0.15;
    border-radius: 50%;
    animation: move 25s infinite alternate ease-in-out;
}

.blob-1 { top: -250px; right: -150px; }
.blob-2 { bottom: -350px; left: -250px; background: radial-gradient(circle, #2a0036 0%, transparent 70%); }

@keyframes move {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(120px, 60px) rotate(180deg); }
}

.noise {
    position: absolute; inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; pointer-events: none;
}

.nav-bar {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(2, 2, 2, 0.7); backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border); z-index: 1000;
}

.nav-container {
    max-width: 1400px; margin: 0 auto; height: 100%;
    display: flex; justify-content: space-between; align-items: center; padding: 0 40px;
}

.logo { font-family: 'Syncopate', sans-serif; font-weight: 700; letter-spacing: 8px; font-size: 1.1rem; }

.btn-discord, .btn-dash {
    text-decoration: none; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
    padding: 10px 22px; border-radius: 4px; transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-discord { color: white; border: 1px solid rgba(255, 255, 255, 0.1); margin-right: 12px; }
.btn-discord:hover { background: rgba(255, 255, 255, 0.05); }

.btn-dash { background: var(--magenta); color: white; box-shadow: 0 8px 25px rgba(191, 0, 255, 0.2); }
.btn-dash:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(191, 0, 255, 0.4); background: white; color: black; }

.hero { 
    min-height: 110vh;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding-bottom: 10vh; 
}

.status-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(191, 0, 255, 0.05); border: 1px solid rgba(191, 0, 255, 0.2);
    padding: 6px 16px; border-radius: 100px; font-size: 0.6rem; font-weight: 800;
    color: var(--magenta); margin-bottom: 35px; letter-spacing: 2px;
}

.status-badge .dot { width: 6px; height: 6px; background: var(--magenta); border-radius: 50%; box-shadow: 0 0 10px var(--magenta); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

h1 { font-family: 'Syncopate', sans-serif; font-size: clamp(2.5rem, 8.5vw, 5.5rem); line-height: 1; margin-bottom: 30px; }
.magenta-text { color: var(--magenta); text-shadow: 0 0 40px rgba(191, 0, 255, 0.2); }

.hero-content p { max-width: 650px; margin: 0 auto 50px; color: var(--text-dim); font-size: 1.1rem; line-height: 1.7; font-weight: 300; }

.hero-actions { display: flex; gap: 15px; justify-content: center; }
.cta-main, .cta-sub { text-decoration: none; font-weight: 900; font-size: 0.75rem; padding: 18px 45px; border-radius: 2px; transition: 0.3s; letter-spacing: 1.5px; }
.cta-main { background: white; color: black; }
.cta-main:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.15); }
.cta-sub { border: 1px solid rgba(255, 255, 255, 0.1); color: white; backdrop-filter: blur(10px); }
.cta-sub:hover { background: rgba(255, 255, 255, 0.05); }

.video-section {
    padding: 150px 0;
    display: flex;
    justify-content: center;
}

.video-card-container {
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(191, 0, 255, 0.1);
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-container {
    width: 85%;
    max-width: 1050px;
    aspect-ratio: 16/9;
    position: relative;
    border: 1px solid var(--border);
    background: #000;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    overflow: hidden;
    margin: 0 auto;
}

.video-card-container:hover {
    transform: scale(1.02);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 20;
    transition: all 0.5s ease;
}

.play-icon-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05); 
    color: white;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card-container:hover .play-icon-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
}


.play-icon-circle svg {
    width: 32px;
    height: 32px;
    margin-left: 3px; 
    transition: transform 0.5s ease;
}

.video-card-container:hover .play-icon-circle svg {
    transform: scale(1.1);
}

.hide-overlay {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px);
}

.video-status {
    position: absolute;
    top: 25px; right: 25px;
    display: flex; align-items: center; gap: 8px;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 25;
}

.status-dot {
    width: 8px; height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-glow {
    position: absolute;
    inset: -1px;
    border: 1px solid var(--magenta);
    opacity: 0.15;
    pointer-events: none;
    z-index: 5;
}
.video-container iframe { width: 100%; height: 100%; }


.row { max-width: 1200px; margin: 0 auto 180px; display: flex; align-items: center; gap: 90px; padding: 0 40px; }
.row.reverse { flex-direction: row-reverse; }

.f-image { flex: 1.1; aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--border); background: #050505; }
.f-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; filter: grayscale(1); transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.f-image:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.04); }

.f-text { flex: 1; }
.f-text h2 { font-family: 'Syncopate', sans-serif; font-size: 1.8rem; margin-bottom: 25px; line-height: 1.2; }
.f-text p { color: var(--text-dim); font-size: 1.1rem; line-height: 1.8; font-weight: 300; }


.compact-footer { padding: 50px 0; background: rgba(1, 1, 1, 0.8); border-top: 1px solid var(--border); }
.footer-line { width: 30px; height: 1px; background: var(--magenta); margin: 0 auto 20px; opacity: 0.8; }
.footer-bottom { display: flex; justify-content: center; gap: 40px; }
.f-copy, .f-tag { font-size: 0.55rem; letter-spacing: 2.5px; color: rgba(255,255,255,0.2); font-weight: 400; text-transform: uppercase; }

@media (max-width: 900px) {
    .row, .row.reverse { flex-direction: column; text-align: center; gap: 40px; }
    .hero { min-height: 100vh; padding-top: 80px; }
    .nav-container { padding: 0 20px; }
    .logo { letter-spacing: 4px; font-size: 0.9rem; }
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
    filter: hue-rotate(240deg) brightness(1.5);
}


.logo-wrapper { display: flex; align-items: center; gap: 15px; }
.nav-logo { height: 32px; width: auto; object-fit: contain; }

.f-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    filter: grayscale(0.4);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-image:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .row, .row.reverse { gap: 40px; padding: 0 30px; }
    h1 { font-size: 4.5rem; }
}

@media (max-width: 768px) {
    .hero { min-height: 90vh; padding-top: 100px; }
    h1 { font-size: 3rem; }
    .hero-content p { font-size: 1rem; padding: 0 20px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 20px; }
    .cta-main, .cta-sub { width: 80%; text-align: center; }

    .row, .row.reverse { 
        flex-direction: column !important; 
        text-align: center; 
        margin-bottom: 100px;
    }
    
    .f-image { width: 100%; aspect-ratio: 16/9; }
    .f-text h2 { font-size: 1.5rem; }

    .nav-container { padding: 0 20px; }
    .logo { font-size: 0.9rem; letter-spacing: 4px; }
    .nav-logo { height: 24px; }
    .btn-discord, .btn-dash { padding: 8px 15px; font-size: 0.65rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    .video-container { width: 95%; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 15px; }
}

.feature-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.feature-category h3 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--magenta);
    margin-bottom: 5px;
    font-weight: 800;
}

.feature-category p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    color: var(--text-dim) !important;
}

.compatibility-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--magenta);
    color: #fff;
}

@media (max-width: 768px) {
    .f-text h2 { font-size: 1.8rem; }
    .feature-category p { font-size: 0.85rem !important; }
}

.vouch-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, rgba(191, 0, 255, 0.02), transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.vouch-section::before,
.vouch-section::after {
    content: "";
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 2;
    pointer-events: none;
}
.vouch-section::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.vouch-section::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.vouch-title {
    text-align: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--magenta);
    margin-bottom: 50px;
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(191, 0, 255, 0.3);
}

.vouch-track {
    display: flex;
    gap: 50px;
    animation: scroll 45s linear infinite;
}

.vouch-track img {
    height: 140px;
    width: auto;
    border-radius: 8px;
    filter: grayscale(0.2) brightness(0.9) contrast(1.1);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.vouch-track img:hover {
    filter: grayscale(0) brightness(1.1) contrast(1.2);
    opacity: 1;
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(191, 0, 255, 0.1);
    border-color: rgba(191, 0, 255, 0.3);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-140px * 10 - 50px * 10)); }
}

.stats-section {
    padding: 100px 0;
    background: transparent;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y), 
        rgba(191, 0, 255, 0.15), 
        transparent 40%
    );
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number, .stat-card p {
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(191, 0, 255, 0.4);
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.1);
}


.stat-number {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--magenta);
    text-shadow: 0 0 20px rgba(191, 0, 255, 0.3);
    margin-bottom: 15px;
}

.stat-card p {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020202;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 10px;
    border: 2px solid #020202;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--magenta);
    box-shadow: 0 0 15px var(--magenta);
}

.video-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-top-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--text);
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    
    text-shadow: 0 0 15px rgba(191, 0, 255, 0.4);
    
    position: relative;
    display: inline-block;
}

.video-top-title::before,
.video-top-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--magenta);
    box-shadow: 0 0 10px var(--magenta);
    opacity: 0.5;
}

.video-top-title::before {
    left: -50px;
}

.video-top-title::after {
    right: -50px;
}
