/* 
    VNCORE.NET - AWF Premium Edition
    Inspired by: awf.rimahey.xyz
    Author: Cofm34 (Antigravity Agent)
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
    /* AWF Color Palette */
    --vnc-bg: #020617;
    --vnc-purple: #8b5cf6;
    --vnc-cyan: #06b6d4;
    --vnc-slate-900: #0f172a;
    --vnc-slate-800: #1e293b;
    --vnc-text: #f8fafc;
    --vnc-text-muted: #94a3b8;

    /* Layout */
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.2);
    --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.2);
}

/* 1. Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

html {
    scroll-behavior: smooth;
    background-color: var(--vnc-bg);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--vnc-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* 2. AWF Background System */
.vnc-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--vnc-bg);
}

/* Aurora Effect */
.aurora {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(100px);
    opacity: 0.4;
    overflow: hidden;
}

.aurora::before,
.aurora::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    animation: aurora-move 20s infinite alternate;
}

.aurora::before {
    background: radial-gradient(circle, var(--vnc-purple) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.aurora::after {
    background: radial-gradient(circle, var(--vnc-cyan) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

/* Particle Grid Overlay */
.particle-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent);
    animation: particle-drift 60s linear infinite;
}

@keyframes aurora-move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

@keyframes particle-drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 400px 400px;
    }
}

/* 3. Navigation - Redesigned for WOW */
.floating-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 72px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: flex;
    gap: 2px;
}

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

.logo.glow-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
    color: var(--vnc-text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vnc-cyan);
    transition: 0.3s;
}

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

.btn-neon {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--vnc-cyan);
    color: var(--vnc-cyan);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.btn-neon:hover {
    background: var(--vnc-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

/* 4. Sections Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 120px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease-out;
}

section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* 5. Typography */
h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(to bottom right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4. Hero Redesign */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

/* Product Card Actions */
.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.card-actions .btn {
    flex: 1;
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
}

/* --- PREMIUM PRODUCT CATALOG (MOCKUP STYLE) --- */
.vnc-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vnc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vnc-card-image {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.vnc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.vnc-card:hover .vnc-card-image img {
    transform: scale(1.1);
}

.vnc-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00FF85;
    /* Neon Green */
    color: #000;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.vnc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vnc-card-label {
    font-size: 11px;
    color: var(--vnc-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vnc-card-tag {
    background: rgba(34, 197, 94, 0.1);
    color: #00FF85;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.vnc-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.vnc-card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00FF85;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.vnc-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.vnc-card-price-label {
    font-size: 10px;
    color: var(--vnc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.vnc-card-price-value {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.vnc-card-actions {
    display: flex;
    gap: 12px;
}

.vnc-btn-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.vnc-btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vnc-btn-buy {
    flex: 1;
    height: 54px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.vnc-btn-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
}

.hero-iframe-container {
    display: flex;
    justify-content: flex-end;
}

.featured-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 10;
}

.featured-item {
    transform: perspective(1000px) rotateY(-10deg);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
}

.featured-item:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-15px) scale(1.05);
    z-index: 20;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.2);
}

.featured-item:nth-child(2) {
    margin-left: 40px;
    margin-top: -60px;
}

@media (max-width: 1024px) {
    .featured-showcase {
        margin: 0 auto;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .featured-item:nth-child(2) {
        margin-left: 0;
        margin-top: 0;
    }

    .featured-item {
        transform: none;
    }
}

@keyframes float-widget {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero .badge-container {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.badge {
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 200px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    color: var(--vnc-text-muted);
}

.badge.pulse {
    border-color: rgba(6, 182, 212, 0.4);
    color: var(--vnc-cyan);
    animation: badge-glow 2s infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 5px var(--vnc-cyan);
    }

    50% {
        opacity: 0.6;
        text-shadow: 0 0 20px var(--vnc-cyan);
    }
}

.glitch-text {
    font-size: 70px;
    font-weight: 900;
    line-height: 0.9;
    margin: 24px 0;
    text-align: left;
    background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -4px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        width: 100%;
        margin: 0 auto;
    }

    .hero-iframe-container {
        justify-content: center;
    }

    .hero .badge-container {
        justify-content: center !important;
    }

    .glitch-text {
        font-size: 64px;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 30px;
    }
}

.glitch-text span {
    color: var(--vnc-cyan);
    -webkit-text-fill-color: var(--vnc-cyan);
}

/* Floating Tags */
.floating-tags {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.tag {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.1);
    animation: float-tag 10s infinite linear alternate;
}

.t1 {
    top: 10%;
    left: 15%;
    animation-duration: 8s;
}

.t2 {
    top: 70%;
    left: 10%;
    animation-duration: 12s;
}

.t3 {
    top: 20%;
    right: 15%;
    animation-duration: 10s;
}

.t4 {
    top: 80%;
    right: 10%;
    animation-duration: 9s;
}

@keyframes float-tag {
    0% {
        transform: translateY(0);
        opacity: 0.2;
    }

    100% {
        transform: translateY(-40px);
        opacity: 0.5;
    }
}

/* 7. Glass Cards & Product Layout */
.product-layout {
    display: flex;
    gap: 30px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-5px);
}

.product-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.category-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--vnc-cyan);
    letter-spacing: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.category-header i {
    width: 18px;
    height: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--vnc-text-muted);
}

/* Labels */
.label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 11px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--vnc-cyan);
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Sidebar */
.hud-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vnc-text-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vnc-cyan);
    box-shadow: 0 0 10px var(--vnc-cyan);
}

/* 8. Buttons */
.btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* 9. Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(20px);
}

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

.modal-content {
    max-width: 480px;
    width: 90%;
    animation: zoom-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoom-in {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 10. Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 64px;
    }

    .product-layout {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-links {
        display: none;
    }
}