:root {
    --bg-gradient-start: #0f172a;
    --bg-gradient-end: #020617;
    --card-bg: #020617;
    --accent: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.12);
    --accent-strong: #0ea5e9;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: #1f2937;
    --danger: #f97373;
    --badge-bg: #111827;
    --badge-border: #1f2937;
    --shadow-soft: 0 20px 45px rgba(0,0,0,0.55);
    --radius-lg: 18px;
    --radius-xl: 26px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background: radial-gradient(circle at top left, #1f2937 0, transparent 50%),
                radial-gradient(circle at bottom right, #0f172a 0, transparent 55%),
                linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    padding: 1.5rem;
}

.page-shell {
    width: 100%;
    max-width: 1200px;
    background: radial-gradient(circle at top, #0b1120 0, #020617 52%, #020617 100%);
    border-radius: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% -10%, rgba(56,189,248,0.25), transparent 55%),
                radial-gradient(circle at 110% 40%, rgba(45,212,191,0.18), transparent 55%);
    opacity: 0.9;
    mix-blend-mode: screen;
}

.content-inner {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.brand-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: radial-gradient(circle at 30% 20%, #f9fafb, #e5e7eb 40%, #38bdf8 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(15,23,42,0.9);
    flex-shrink: 0;
}

.brand-text-title {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.3rem;
}

.brand-text-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.lang-selector select {
    background: rgba(15,23,42,0.88);
    color: var(--text-main);
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

/* ADS BANNER */
.ads-banner-wrapper {
    margin: 0.75rem 0 1.5rem;
    border-radius: 1.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(15,23,42,0.7));
    border: 1px dashed rgba(148,163,184,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.ads-placeholder-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== HAMSTER BANNER ===== */
.hamster-banner-wrapper {
    margin: 0.75rem 0 1.5rem;
    display: flex;
    justify-content: center;
}

.hamster-banner-container {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, #e0f2fe 0%, #ffffff 100%);
    border-radius: 0.8rem;
    overflow: hidden;
    cursor: crosshair;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    user-select: none;
    touch-action: none;
}

.hamster-banner-container.dragging {
    cursor: grabbing;
}

.banner-shadow {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: rgba(16, 185, 129, 0.1);
    pointer-events: none;
    z-index: 10;
}

.hamster {
    position: absolute;
    width: 4rem;
    height: 4rem;
    cursor: grab;
    user-select: none;
    touch-action: none;
    will-change: transform;
}

.hamster:active {
    cursor: grabbing;
}

.hamster svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hamster-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-cat {
    position: absolute;
    bottom: 0;
    width: 180px;
    height: 135px;
    pointer-events: none;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 2s ease-in-out;
}

.banner-cat svg {
    width: 100%;
    height: 100%;
}

#bannerHamstersContainer {
    position: relative;
    width: 100%;
    height: 100%;
}

/* HERO SECTION */
.hero {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-left {
    padding-right: 0.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(56,189,248,0.6);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.eyebrow-dot {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #e0f2fe, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #0f172a;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: 0.01em;
}

.hero-highlight {
    background: linear-gradient(120deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bullet-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

.bullet-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-strong);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: center;
}

.download-instructions {
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.download-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-secondary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #c084fc, #a855f7);
}

/* Button with subtitle inside */
.btn-with-subtitle {
    flex-direction: row;
    text-align: left;
    padding: 0.6rem 1.2rem;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.btn-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
}

/* ===== MODALE ANTIVIRUS ===== */
.antivirus-modal {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.antivirus-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.antivirus-modal-content {
    background: radial-gradient(circle at top, #111827, #020617 70%);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
}

.antivirus-modal-content h2 {
    margin: 0 0 1rem 0;
    color: var(--text-main);
    font-size: 1.3rem;
}

.antivirus-modal-content p {
    margin: 0 0 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ANIMATED WINDOWS DEFENDER SIMULATION */
.defender-simulation {
    position: relative;
    margin: 1.5rem 0;
}

.defender-step {
    display: none;
    position: relative;
}

.defender-step.active {
    display: block;
    animation: fadeInStep 0.5s ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.defender-mock {
    background: #68217a;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.defender-header {
    background: #68217a;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.defender-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.defender-close {
    color: white;
    cursor: default;
    font-size: 1.2rem;
    pointer-events: none;
}

.defender-body {
    padding: 1.5rem;
    color: white;
    text-align: left;
}

.defender-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.defender-text-main {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.defender-more-info {
    color: white;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: default;
    display: inline-block;
    margin-top: 0.5rem;
    pointer-events: none;
}

.defender-app-info {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.defender-app-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.defender-label {
    opacity: 0.9;
    min-width: 70px;
}

.defender-value {
    font-weight: 400;
}

.defender-footer {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.defender-footer-single {
    justify-content: flex-end;
}

.defender-btn-deny {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 0.2rem;
    cursor: default;
    font-weight: 500;
    font-size: 0.9rem;
    pointer-events: none;
}

.defender-btn-allow {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 0.2rem;
    cursor: default;
    font-weight: 500;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Animated cursor */
.animated-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
}

.animated-cursor::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 6px solid transparent;
    border-bottom: 10px solid transparent;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

/* Cursor animation for step 1 - pointing to "More info" */
#cursor-step-1 {
    bottom: 80px;
    left: 50px;
    animation: cursorStep1 3s ease-in-out infinite;
}

@keyframes cursorStep1 {
    0%, 100% { opacity: 0; transform: translate(0, 0); }
    20% { opacity: 1; transform: translate(0, 0); }
    40% { opacity: 1; transform: translate(10px, -5px); }
    50% { opacity: 1; transform: translate(10px, -5px) scale(0.9); }
    60% { opacity: 1; transform: translate(10px, -5px); }
    80% { opacity: 0; transform: translate(10px, -5px); }
}

/* Cursor animation for step 2 - pointing to "Run anyway" */
#cursor-step-2 {
    bottom: 30px;
    left: 30%;
    animation: cursorStep2 3s ease-in-out infinite;
}

@keyframes cursorStep2 {
    0%, 100% { opacity: 0; transform: translate(0, 0); }
    20% { opacity: 1; transform: translate(0, 0); }
    40% { opacity: 1; transform: translate(10px, -5px); }
    50% { opacity: 1; transform: translate(10px, -5px) scale(0.9); }
    60% { opacity: 1; transform: translate(10px, -5px); }
    80% { opacity: 0; transform: translate(10px, -5px); }
}

/* Reassurance message styling */
.antivirus-reassurance {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(249, 115, 115, 0.1);
    border: 1px solid rgba(249, 115, 115, 0.3);
    border-radius: 0.5rem;
}

.antivirus-reassurance p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.antivirus-reassurance strong {
    color: var(--danger);
}

/* ANTIVIRUS EXPLANATION */
.antivirus-explanation {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.antivirus-explanation h3 {
    margin: 0 0 1rem 0;
    color: var(--accent);
    font-size: 1rem;
}

.antivirus-explanation ol {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.antivirus-explanation li {
    margin-bottom: 0.75rem;
}

/* BUTTON GROUP IN MODALE */
.antivirus-button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.antivirus-button-group .btn-primary {
    flex: 1;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(8,47,73,0.8);
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-primary span.icon {
    font-size: 1.2rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.7);
    color: var(--text-muted);
    background: rgba(15,23,42,0.7);
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.download-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.75rem 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-badge-icon {
    font-size: 1rem;
}

/* HERO RIGHT CARD */
.hero-right {
    background: radial-gradient(circle at top, rgba(56,189,248,0.12), transparent 70%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148,163,184,0.3);
    padding: 1.1rem;
}

.hero-card {
    border-radius: 1.25rem;
    background: radial-gradient(circle at top left, #111827, #020617 70%);
    border: 1px solid rgba(55,65,81,0.9);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.hero-card-title {
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
}

.hero-card-chip {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(22,163,74,0.12);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.4);
    flex-shrink: 0;
    white-space: nowrap;
}

.hero-card-main {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hero-card-image {
    width: 120px;
    height: 85px;
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(56,189,248,0.4), rgba(129,140,148,0.1)),
        radial-gradient(circle at top left, rgba(248,250,252,0.6), transparent 40%),
        linear-gradient(145deg, #020617, #020617);
    border: 1px solid rgba(148,163,184,0.6);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-card-image::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        repeating-linear-gradient(90deg, rgba(15,23,42,0.3) 0, rgba(15,23,42,0.3) 1px, transparent 1px, transparent 3px),
        repeating-linear-gradient(180deg, rgba(15,23,42,0.3) 0, rgba(15,23,42,0.1) 1px, transparent 1px, transparent 3px);
    opacity: 0.9;
}

.hero-card-image-caption {
    position: absolute;
    bottom: 0.5rem;
    left: 0.6rem;
    right: 0.6rem;
    font-size: 0.75rem;
    color: #e5e7eb;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}

.hero-card-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
    min-width: 150px;
    line-height: 1.6;
}

.hero-card-body strong {
    color: var(--text-main);
}

.hero-card-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.chip-inline {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* HERO IMAGE CONTAINER */
.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-preview-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-preview-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
}

/* HERO IMAGE MODAL */
.hero-image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.hero-image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-modal-content {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 0.8rem;
    animation: zoomIn 0.3s ease;
}

.hero-image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.hero-image-modal-close:hover {
    color: #38bdf8;
}

/* STAFF LINK & MODAL */
.staff-link-container {
    text-align: right;
    margin-top: 0.5rem;
}

.staff-link {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.staff-link:hover {
    color: rgba(148, 163, 184, 0.8);
    text-decoration: underline;
}

.staff-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.staff-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-modal-content {
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    animation: zoomIn 0.3s ease;
    padding: 1rem;
}

.staff-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.staff-modal-close:hover {
    color: #38bdf8;
}

.staff-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.staff-photo {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 0.8rem;
    object-fit: contain;
}

.staff-caption {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #fbbf24;
    font-style: italic;
}

/* SECTIONS */
.section {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(31,41,55,0.9);
    padding: 1.5rem;
}

.section-title {
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.section-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.7;
}

.section-text code {
    background: rgba(56,189,248,0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
    font-family: 'Courier New', monospace;
    color: #a5f3fc;
    font-size: 0.9em;
}

.section-list {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.section-list li {
    margin-bottom: 0.6rem;
}

.section-danger {
    border-left: 4px solid var(--danger);
}

/* INSTRUCTIONS */
.instructions-wrapper {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1.1fr 1.05fr;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .instructions-wrapper {
        grid-template-columns: 1fr;
    }
}

.instructions-image-container {
    display: flex;
    justify-content: center;
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(55, 65, 81, 0.9);
    border-radius: 0.8rem;
    overflow: hidden;
    background: radial-gradient(circle at top, #111827, #020617 70%);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.8rem;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.8rem;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #38bdf8;
}

/* FOOTER */
footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    border-top: 1px solid rgba(31,41,55,0.9);
    padding-top: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    footer div {
        width: 100%;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    body {
        padding: 0.75rem;
    }

    .page-shell {
        border-radius: 1.5rem;
    }

    .content-inner {
        padding: 1.25rem;
    }

    header {
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .brand {
        min-width: 150px;
    }

    .lang-selector {
        width: 100%;
    }

    .lang-selector select {
        padding: 0.35rem 0.5rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .download-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .download-subtitles {
        flex-direction: column;
        gap: 0.5rem;
    }

    #subtitle-installer,
    #subtitle-zip {
        min-width: auto;
        width: 100%;
    }

    .hero-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card-chip {
        align-self: flex-start;
    }

    .hero-card-main {
        flex-direction: column;
    }

    .hero-card-body {
        font-size: 0.85rem;
    }

    .section {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .section-title {
        font-size: 1.05rem;
    }

    .section-text {
        font-size: 0.9rem;
    }

    .trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .staff-modal-content {
        max-width: 95%;
        max-height: 95vh;
        padding: 0.5rem;
    }

    .staff-photo {
        max-width: 100%;
    }

    .staff-caption {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .page-shell {
        border-radius: 1rem;
    }

    .content-inner {
        padding: 1rem;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand {
        width: 100%;
    }

    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
    }

    .section-title {
        font-size: 1rem;
    }

    .hero-card-image {
        width: 100px;
        height: 70px;
    }

    .hero-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .chip-inline {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* ===== ANDROID SECTION ===== */
.section-android {
    background: rgba(15,23,42,0.8);
    border-left: 4px solid #10b981;
    border-radius: 0.8rem;
    padding: 2rem;
}

.android-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .android-content-wrapper {
        grid-template-columns: 1fr;
    }
}

.android-instructions h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.android-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.android-steps li {
    margin-bottom: 0.4rem;
}

.android-steps li strong {
    color: #10b981;
}

.android-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
}

.android-warning .warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.android-warning p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.android-warning strong {
    color: #c084fc;
}

.android-download-box {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-android-download {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-android-download:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.android-meta {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.android-image-container {
    text-align: center;
}

.android-screenshot {
    max-width: 100%;
    max-height: 400px;
    border-radius: 0.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.android-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.android-image-caption {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Android Image Modal */
.android-image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.android-image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.android-image-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.8rem;
    animation: zoomIn 0.3s ease;
}

.android-image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.android-image-modal-close:hover {
    color: #10b981;
}

/* ===== ANDROID BUTTON WITH NEW BADGE ===== */
.btn-android {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    position: relative;
}

.btn-android:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.badge-new {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .section-android {
        padding: 1.5rem;
    }

    .android-steps {
        font-size: 0.9rem;
    }

    .badge-new {
        top: -6px;
        right: -6px;
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
    }
}

/* ===== FAQ SECTION ===== */
.section-faq {
    background: rgba(15,23,42,0.8);
    border-left: 4px solid var(--accent);
}

.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(31, 41, 55, 0.8);
    padding: 1.25rem 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1rem 0;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* ===== USE CASES SECTION ===== */
.use-cases-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-cases-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.use-cases-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ===== FOLDER MAP BUTTON ===== */
.btn-folder-map {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    margin-top: 0.75rem;
}

.btn-folder-map:hover {
    background: linear-gradient(135deg, #818cf8, #6366f1);
}

/* ===== FOLDER MAP MODAL ===== */
.folder-map-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.folder-map-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.folder-map-modal-content {
    background: radial-gradient(circle at top, #111827, #020617 70%);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    max-height: 90vh;
    overflow-y: auto;
}

.folder-map-modal-content h2 {
    margin: 0 0 1rem 0;
    color: var(--text-main);
    font-size: 1.3rem;
    padding-right: 2rem;
}

.folder-map-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.folder-map-modal-close:hover {
    color: #6366f1;
}

.folder-map-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.folder-map-tree {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.5rem;
    padding: 1.25rem;
    overflow-x: auto;
}

.folder-map-tree pre {
    margin: 0;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.9rem;
    color: #a5f3fc;
    line-height: 1.6;
    white-space: pre;
}

.folder-map-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Folder Map Legend */
.folder-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.legend-icon {
    font-size: 1rem;
}

.legend-synced {
    color: #fbbf24;
}

.legend-not-synced {
    color: #10b981;
}

/* Folder Map Section Title */
.folder-map-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 1rem 0 0.75rem 0;
}

/* Toggle Extended Map Button */
.btn-toggle-extended {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 0.5rem;
    color: #a5b4fc;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-toggle-extended:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.6);
}

.toggle-arrow {
    transition: transform 0.3s ease;
}

.toggle-arrow.rotated {
    transform: rotate(180deg);
}

/* Extended Map Container */
.folder-map-extended {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

.folder-map-tree-extended pre {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .folder-map-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .folder-map-modal-content h2 {
        font-size: 1.1rem;
    }

    .folder-map-tree pre {
        font-size: 0.75rem;
    }

    .folder-map-tree-extended pre {
        font-size: 0.7rem;
    }

    .folder-map-intro,
    .folder-map-note {
        font-size: 0.85rem;
    }

    .folder-map-legend {
        flex-direction: column;
        gap: 0.5rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    .folder-map-section-title {
        font-size: 0.95rem;
    }
}
