/* === NEXUMVAULT SPECIFIC STYLES === */

/* Hero Section */
.nv-hero {
    min-height: 80vh;
    padding-top: 60px; /* Offset fixed header */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(138,1,0,0.15), transparent 60%);
}

.nv-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.nv-hero-content {
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--rojo);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--offwhite);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.nv-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.download-main-btn {
    padding-left: 24px;
    padding-right: 24px;
    height: 54px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.os-note {
    font-size: 0.8rem;
    color: #666;
    margin-left: 10px;
}

/* === LOGO VISUAL WITH GLOW === */
.nv-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: 380px;
    height: auto;
    /* Efecto de contorno blanco/brillo */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    
    /* Pequeña animación de flotar */
    animation: floatLogo 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Features Panel */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.nv-card:hover {
    transform: translateY(-5px);
    border-color: var(--rojo);
}

.nv-card h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
}

.nv-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Installation & Video */
.install-panel {
    background: linear-gradient(180deg, transparent, rgba(20,20,20,0.8));
}

.install-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.step-box {
    margin-bottom: 30px;
}

.step-box h3 {
    color: var(--rojo);
    font-family: 'Poppins';
    margin-bottom: 10px;
}

/* The Security Notice Box */
.security-notice {
    background: rgba(255, 165, 0, 0.05); /* Very subtle orange tint */
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.notice-header {
    font-weight: 700;
    color: #ffb347;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.notice-text {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 15px;
}

.solution-step {
    background: rgba(0,0,0,0.3);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #fff;
    border-left: 3px solid var(--rojo);
}

.solution-step ol {
    margin: 8px 0 0;
    padding-left: 20px;
}

.solution-step li {
    margin-bottom: 4px;
}

.notice-footer {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

/* === VERSION LIST (New Table Style) === */
.version-table-wrapper {
    background: #111;
    border-radius: 12px;
    border: 1px solid #222;
    overflow-x: auto; /* For mobile scrolling */
    max-width: 900px;
    margin: 0 auto;
}

.version-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px; /* Ensure it doesn't squish too much */
}

.version-table th {
    background: rgba(255,255,255,0.05);
    color: var(--offwhite);
    font-weight: 700;
    padding: 16px 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
}

.version-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #222;
    color: #ddd;
    vertical-align: middle;
}

.version-table tr:last-child td {
    border-bottom: none;
}

.v-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    display: block;
}

.v-badge {
    display: inline-block;
    background: rgba(138, 1, 0, 0.2);
    color: #ff4d4d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
}

.platform-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-download-small {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--rojo);
    color: var(--rojo);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-download-small:hover {
    background: var(--rojo);
    color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
    .nv-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 40px;
    }
    
    .nv-actions {
        align-items: center;
    }
    
    .nv-hero-visual {
        margin-top: 30px;
    }
    
    .hero-logo {
        max-width: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .install-grid {
        grid-template-columns: 1fr;
    }

    .video-col {
        order: -1; /* Video on top on mobile */
    }
}