/* FaceSwap Live — Download page */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0a0a1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 520px;
}

.card {
    background: #16213e;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid #2a2a4a;
}

.logo-area {
    text-align: center;
    margin-bottom: 32px;
}

.logo-icon {
    font-size: 48px;
    color: #533483;
    margin-bottom: 12px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.subtitle {
    color: #888;
    font-size: 14px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #a0a0c0;
    background: #0e1628;
    padding: 10px 12px;
    border-radius: 8px;
}

.feature-icon {
    font-size: 18px;
}

.input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

input[type="password"] {
    flex: 1;
    background: #0e1628;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #e0e0e0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

input[type="password"]:focus {
    border-color: #533483;
}

#verify-btn {
    background: #533483;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

#verify-btn:hover {
    background: #6b44a0;
}

.error-msg {
    color: #ef4444;
    font-size: 13px;
    min-height: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4ade80;
    color: #0a0a1a;
    text-decoration: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s, transform 0.1s;
    margin-bottom: 8px;
}

.download-btn:hover {
    background: #5aee90;
    transform: translateY(-1px);
}

.dl-icon {
    font-size: 20px;
}

.file-info {
    text-align: center;
    color: #666;
    font-size: 12px;
}

.instructions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #2a2a4a;
}

.instructions h3 {
    font-size: 15px;
    font-weight: 600;
    color: #a0a0c0;
    margin-bottom: 12px;
}

.instructions ol, .instructions ul {
    padding-left: 20px;
    font-size: 13px;
    color: #888;
    line-height: 1.8;
}

.instructions code {
    background: #0e1628;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: #4ade80;
}

.req-title {
    font-size: 13px;
    font-weight: 600;
    color: #a0a0c0;
    margin-top: 16px;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .card { padding: 28px 20px; }
    .features { grid-template-columns: 1fr; }
    h1 { font-size: 24px; }
}
