/* ========================================
   PARNA CRYPTO — Professional Security UI
   ======================================== */

/* Font loaded via <link> in HTML for better performance */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root, [data-theme="dark"] {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --bg-card-hover: #1f2537;
    --bg-input: #0f1320;
    --bg-surface: #151a28;
    --bg-elevated: #1e2433;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-primary: rgba(255, 255, 255, 0.12);
    --accent: #10b981;
    --accent-hover: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.15);
    --accent-glow-strong: rgba(16, 185, 129, 0.25);
    --accent-primary: #10b981;
    --accent-secondary: #3b82f6;
    --accent-blue: #3b82f6;
    --accent-blue-glow: rgba(59, 130, 246, 0.15);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
    --info: #3b82f6;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition-fast: 0.15s ease;
    --transition-default: 0.25s ease;
    --bg-body-gradient-1: rgba(16, 185, 129, 0.06);
    --bg-body-gradient-2: rgba(59, 130, 246, 0.04);
    --color-scheme: dark;
    --bg-overlay-subtle: rgba(255, 255, 255, 0.03);
    --accent-border: rgba(16, 185, 129, 0.2);
    --accent-blue-border: rgba(59, 130, 246, 0.2);
    --danger-bg: rgba(239, 68, 68, 0.08);
    --danger-border: rgba(239, 68, 68, 0.15);
    --danger-text: #fca5a5;
    --success-text: #6ee7b7;
    --warning-bg: rgba(245, 158, 11, 0.08);
    --warning-border: rgba(245, 158, 11, 0.15);
    --warning-text: #fbbf24;
    --info-bg: rgba(59, 130, 246, 0.08);
    --info-border: rgba(59, 130, 246, 0.15);
    --info-text: #60a5fa;
}

[data-theme="light"] {
    --bg-primary: #f5f7fa;
    --bg-secondary: #e8ecf1;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fb;
    --bg-input: #ffffff;
    --bg-surface: #f0f2f5;
    --bg-elevated: #ffffff;
    --border-subtle: rgba(0, 0, 0, 0.04);
    --border-default: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.18);
    --border-primary: rgba(0, 0, 0, 0.12);
    --accent: #059669;
    --accent-hover: #047857;
    --accent-glow: rgba(5, 150, 105, 0.12);
    --accent-glow-strong: rgba(5, 150, 105, 0.2);
    --accent-primary: #059669;
    --accent-secondary: #2563eb;
    --accent-blue: #2563eb;
    --accent-blue-glow: rgba(37, 99, 235, 0.12);
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --danger: #dc2626;
    --warning: #d97706;
    --success: #059669;
    --info: #2563eb;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 4px 24px rgba(0, 0, 0, 0.1);
    --bg-body-gradient-1: rgba(5, 150, 105, 0.04);
    --bg-body-gradient-2: rgba(37, 99, 235, 0.03);
    --color-scheme: light;
    --bg-overlay-subtle: rgba(0, 0, 0, 0.02);
    --accent-border: rgba(5, 150, 105, 0.25);
    --accent-blue-border: rgba(37, 99, 235, 0.25);
    --danger-bg: rgba(220, 38, 38, 0.06);
    --danger-border: rgba(220, 38, 38, 0.15);
    --danger-text: #dc2626;
    --success-text: #059669;
    --warning-bg: rgba(217, 119, 6, 0.06);
    --warning-border: rgba(217, 119, 6, 0.15);
    --warning-text: #b45309;
    --info-bg: rgba(37, 99, 235, 0.06);
    --info-border: rgba(37, 99, 235, 0.15);
    --info-text: #2563eb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(ellipse 80% 60% at 50% -20%, var(--bg-body-gradient-1) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 50%, var(--bg-body-gradient-2) 0%, transparent 70%);
    min-height: 100vh;
    padding: 20px;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 820px;
    margin: 0 auto;
}

/* ========================================
   HEADER CONTROLS (lang + theme)
   ======================================== */

.header-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.lang-switch {
    display: flex;
    gap: 4px;
}

.lang-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.78em;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1.4;
    opacity: 0.6;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.lang-btn:hover {
    opacity: 0.9;
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--accent);
    background: var(--accent-glow);
    box-shadow: 0 0 0 1px var(--accent);
    color: var(--accent);
}

.theme-toggle {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    font-size: 1em;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 28px;
}

.theme-toggle:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: inline;
}

[data-theme="light"] .theme-toggle .icon-moon {
    display: inline;
}

/* Light theme specific overrides */
[data-theme="light"] .datetime-input {
    color-scheme: light;
}

[data-theme="light"] input[type="text"],
[data-theme="light"] input[type="password"],
[data-theme="light"] input[type="number"],
[data-theme="light"] input[type="email"],
[data-theme="light"] input[type="tel"],
[data-theme="light"] select,
[data-theme="light"] textarea {
    color-scheme: light;
}

/* ========================================
   HEADER
   ======================================== */

header {
    text-align: center;
    margin-bottom: 32px;
    padding: 12px 0;
}

header h1 {
    font-size: 1.75em;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

header h1 .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 10px;
    font-size: 0.65em;
    box-shadow: 0 2px 12px var(--accent-glow-strong);
}

.subtitle {
    font-size: 0.95em;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72em;
    color: var(--text-muted);
    padding: 4px 10px;
    background: var(--bg-overlay-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trust-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

/* ========================================
   TABS
   ======================================== */

.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 4px;
    border: 1px solid var(--border-subtle);
}

.tab-button {
    flex: 1;
    padding: 13px 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-default);
    letter-spacing: 0.01em;
    font-family: inherit;
}

.tab-button:hover {
    color: var(--text-secondary);
    background: var(--bg-overlay-subtle);
}

.tab-button.active {
    background: var(--bg-card);
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========================================
   CARD
   ======================================== */

.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.card h2 {
    color: var(--text-primary);
    margin-bottom: 28px;
    font-size: 1.35em;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h2 .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 0.8em;
}

.card h2 .icon-encrypt {
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
}

.card h2 .icon-decrypt {
    background: var(--accent-blue-glow);
    border: 1px solid var(--accent-blue-border);
}

/* ========================================
   STEPS
   ======================================== */

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85em;
    flex-shrink: 0;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    font-family: 'Inter', sans-serif;
}

.step-content {
    flex: 1;
    min-width: 0;
}

/* ========================================
   AUTH METHODS
   ======================================== */

.method-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.auth-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.auth-method-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    cursor: pointer;
    transition: all var(--transition-default);
    font-family: inherit;
}

.auth-method-btn:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-1px);
}

.auth-method-btn.selected {
    border-color: var(--accent);
    background: var(--accent-glow);
    box-shadow: 0 0 0 1px var(--accent), 0 2px 12px var(--accent-glow);
}

.method-icon {
    font-size: 1.6em;
    line-height: 1;
}

.method-label {
    font-weight: 600;
    font-size: 0.85em;
    color: var(--text-primary);
}

.method-desc {
    font-size: 0.72em;
    color: var(--text-muted);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 13px 28px;
    font-size: 0.95em;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-default);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: 0 2px 10px var(--accent-glow-strong);
}

.btn-primary:hover:not(:disabled) {
    box-shadow: 0 4px 20px var(--accent-glow-strong);
    transform: translateY(-1px);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: 0 2px 10px var(--accent-glow-strong);
}

.btn-success:hover:not(:disabled) {
    box-shadow: 0 4px 20px var(--accent-glow-strong);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.btn-small {
    padding: 7px 14px;
    font-size: 0.82em;
    border-radius: var(--radius-sm);
}

/* ========================================
   DROP ZONE
   ======================================== */

.drop-zone {
    position: relative;
    padding: 36px 20px;
    border: 2px dashed var(--border-default);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-default);
    background: var(--bg-surface);
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-zone:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.drop-zone.drag-over {
    border-color: var(--accent);
    border-style: solid;
    background: var(--accent-glow);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.drop-zone.has-file {
    border-color: var(--accent);
    border-style: solid;
    background: var(--accent-glow);
    padding: 18px;
}

.drop-zone-content {
    pointer-events: none;
}

.drop-zone-icon {
    font-size: 2.5em;
    margin-bottom: 8px;
    opacity: 0.7;
    transition: opacity var(--transition-default);
}

.drop-zone:hover .drop-zone-icon {
    opacity: 1;
}

.drop-zone-text {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 3px;
}

.drop-zone-hint {
    font-size: 0.8em;
    color: var(--text-muted);
}

.drop-zone-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    display: none;
}

.drop-zone-input.active-input {
    z-index: 2;
    pointer-events: auto;
    display: block;
}

/* ========================================
   FILE INFO
   ======================================== */

.file-info {
    margin-top: 12px;
    padding: 12px 14px;
    background: var(--accent-glow);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    display: none;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.file-info.show {
    display: block;
}

/* ========================================
   INPUT TOGGLE (File / Folder)
   ======================================== */

input[type="file"] {
    display: none;
}

.input-type-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-default);
    background: var(--bg-surface);
}

.toggle-btn {
    flex: 1;
    padding: 9px 14px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85em;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.toggle-btn:first-child {
    border-right: 1px solid var(--border-default);
}

.toggle-btn.active {
    background: var(--accent);
    color: white;
}

.toggle-btn:hover:not(.active) {
    color: var(--text-secondary);
    background: var(--bg-overlay-subtle);
}

/* ========================================
   PASSWORD INPUT
   ======================================== */

.password-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.password-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 6px;
}

.password-input-group label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.password-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    font-size: 0.95em;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: inherit;
}

.password-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.password-wrapper input::placeholder {
    color: var(--text-muted);
}

.toggle-password {
    padding: 9px 12px;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    cursor: pointer;
    font-size: 1em;
    transition: all var(--transition-fast);
    color: var(--text-muted);
}

.toggle-password:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.password-strength {
    font-size: 0.8em;
    margin-top: 4px;
    min-height: 18px;
    font-weight: 500;
}

.password-strength.weak { color: var(--danger); }
.password-strength.medium { color: var(--warning); }
.password-strength.strong { color: var(--success); }

/* ========================================
   EXPIRATION SETTINGS
   ======================================== */

.expiration-settings {
    margin-top: 18px;
    padding: 14px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

/* Identiteedi kontroll */
.identity-settings {
    margin-top: 18px;
    padding: 14px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.identity-options {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.identity-options.hidden {
    display: none;
}

.identity-hint {
    font-size: 0.85em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.identity-field-toggle {
    margin-top: 10px;
}

.identity-field-input {
    margin-top: 6px;
    margin-left: 24px;
    margin-bottom: 4px;
}

.identity-field-input.hidden {
    display: none;
}

.identity-field-input input {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.92em;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.identity-field-input input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Dekrüpteerimise identiteedi kontroll */
.identity-decrypt-group {
    padding: 4px 0;
}

.identity-decrypt-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.identity-lock-icon {
    font-size: 1.8em;
    line-height: 1;
}

.identity-decrypt-header strong {
    display: block;
    color: var(--accent);
    font-size: 1em;
    margin-bottom: 2px;
}

.identity-decrypt-header .identity-hint {
    margin-bottom: 0;
}

#decrypt-identity-fields .identity-field-input {
    margin-left: 0;
    margin-bottom: 12px;
}

#decrypt-identity-fields label {
    display: block;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--accent);
}

.expiration-options {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.expiration-options.hidden {
    display: none;
}

.expiration-select {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.92em;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.expiration-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.datetime-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.92em;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
    font-family: inherit;
    color-scheme: var(--color-scheme);
}

.datetime-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.custom-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.92em;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    margin-top: 8px;
    background: var(--bg-input);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.custom-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.custom-input.hidden {
    display: none;
}

.expiration-duration,
.expiration-window {
    margin-top: 8px;
}

.expiration-window.hidden,
.expiration-duration.hidden {
    display: none;
}

/* ========================================
   EMOJI PICKER
   ======================================== */

.emoji-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emoji-input-group label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.emoji-selected {
    min-height: 52px;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px dashed var(--border-default);
    border-radius: var(--radius-md);
    font-size: 1.8em;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
    line-height: 1.4;
    text-align: center;
    transition: all var(--transition-default);
}

.emoji-selected:not(:has(.emoji-hint)) {
    border-color: var(--accent);
    border-style: solid;
    background: var(--accent-glow);
}

.emoji-hint {
    color: var(--text-muted);
    font-size: 0.45em;
    font-family: 'Inter', sans-serif;
}

.emoji-picker {
    max-height: 360px;
    overflow-y: auto;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px;
    background: var(--bg-surface);
}

.emoji-picker::-webkit-scrollbar {
    width: 6px;
}

.emoji-picker::-webkit-scrollbar-track {
    background: transparent;
}

.emoji-picker::-webkit-scrollbar-thumb {
    background: var(--border-default);
    border-radius: 3px;
}

.emoji-category {
    margin-bottom: 16px;
}

.emoji-category:last-child {
    margin-bottom: 0;
}

.emoji-category-title {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.85em;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
    gap: 5px;
}

.emoji-btn,
.decrypt-emoji-btn {
    font-size: 1.7em;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-btn:hover,
.decrypt-emoji-btn:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    transform: scale(1.08);
}

.emoji-btn:active,
.decrypt-emoji-btn:active {
    transform: scale(0.95);
}

.emoji-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.emoji-count-ok {
    font-size: 0.75em;
    color: var(--accent);
    font-weight: 600;
}

.emoji-count-low {
    font-size: 0.75em;
    color: var(--warning, #f59e0b);
    font-weight: 600;
}

.emoji-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ========================================
   QR SECTION
   ======================================== */

.qr-section {
    margin-top: 24px;
    padding: 28px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.qr-section h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.05em;
}

#qr-code, #decrypt-qr-code {
    display: inline-block;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.info-text {
    margin-top: 12px;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.88em;
}

/* ========================================
   RESULT SECTION
   ======================================== */

.result-section {
    margin-top: 24px;
    padding: 28px;
    background: var(--accent-glow);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--accent-border);
}

.result-section h3 {
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.1em;
}

.method-info {
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85em;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

/* ========================================
   METHOD DETECTED (decrypt)
   ======================================== */

.method-detected {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.88em;
    white-space: pre-line;
}

.method-detected.password-method {
    background: var(--warning-bg);
    color: var(--warning-text);
    border-left: 3px solid var(--warning);
}

.method-detected.passkey-method {
    background: var(--info-bg);
    color: var(--info-text);
    border-left: 3px solid var(--info);
}

.method-detected.emoji-method {
    background: var(--warning-bg);
    color: var(--warning-text);
    border-left: 3px solid var(--warning);
}

/* ========================================
   STATUS
   ======================================== */

.status {
    margin-top: 18px;
    padding: 13px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
    font-weight: 500;
    border: 1px solid var(--border-subtle);
}

.status.error {
    background: var(--danger-bg);
    color: var(--danger-text);
    border-left: 3px solid var(--danger);
    border-color: var(--danger-border);
}

.status.success {
    background: var(--accent-glow);
    color: var(--success-text);
    border-left: 3px solid var(--success);
    border-color: var(--accent-border);
}

.status.info {
    background: var(--info-bg);
    color: var(--info-text);
    border-left: 3px solid var(--info);
    border-color: var(--info-border);
}

.status.warning {
    background: var(--warning-bg);
    color: var(--warning-text);
    border-left: 3px solid var(--warning);
    border-color: var(--warning-border);
}

/* ========================================
   SPINNER
   ======================================== */

.spinner {
    border: 3px solid var(--border-default);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   DECRYPT FILE LIST
   ======================================== */

.decrypt-file-list {
    margin-bottom: 14px;
    text-align: left;
}

.folder-info-header {
    font-size: 0.95em;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent-border);
    color: var(--text-secondary);
}

.folder-file-list {
    max-height: 180px;
    overflow-y: auto;
    padding: 6px 8px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.folder-file-item {
    padding: 4px 6px;
    font-size: 0.82em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
}

.folder-file-item:last-child {
    border-bottom: none;
}

/* ========================================
   HASH VERIFICATION
   ======================================== */

.hash-verification {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.9em;
    text-align: left;
}

.hash-verification.hash-match {
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
}

.hash-verification.hash-mismatch {
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
}

.hash-verification .hash-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.hash-verification.hash-match .hash-title {
    color: var(--success-text);
}

.hash-verification.hash-mismatch .hash-title {
    color: var(--danger-text);
}

.hash-verification .hash-value {
    color: var(--text-secondary);
}

.hash-verification .hash-value code {
    font-size: 0.85em;
    word-break: break-all;
    color: var(--text-primary);
}

.hash-verification .hash-warning {
    margin-top: 8px;
    color: var(--danger);
}

/* ========================================
   COPY BUTTON
   ======================================== */

.btn-copy {
    padding: 5px 10px;
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.78em;
    font-weight: 500;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.btn-copy:hover {
    background: var(--bg-card-hover);
    color: var(--text-secondary);
    border-color: var(--border-hover);
}

.btn-copy.copied {
    background: var(--accent-glow);
    color: var(--accent);
    border-color: var(--accent);
}

/* ========================================
   FILE SIZE WARNING
   ======================================== */

.file-size-warning {
    margin-top: 8px;
    padding: 8px 12px;
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-left: 3px solid var(--warning);
    border-radius: var(--radius-sm);
    font-size: 0.82em;
    color: var(--warning-text);
}

/* ========================================
   HIDDEN
   ======================================== */

.hidden {
    display: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 600px) {
    body {
        padding: 8px;
    }

    header {
        margin-bottom: 16px;
    }

    header h1 {
        font-size: 1.25em;
        gap: 8px;
    }

    header h1 .brand-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        font-size: 0.6em;
    }

    .subtitle {
        font-size: 0.82em;
    }

    .trust-badges {
        gap: 6px;
        margin-top: 10px;
    }

    .trust-badge {
        font-size: 0.62em;
        padding: 3px 7px;
    }

    .tabs {
        padding: 3px;
        gap: 2px;
    }

    .tab-button {
        padding: 10px 12px;
        font-size: 0.88em;
    }

    .card {
        padding: 16px 14px;
        border-radius: var(--radius-lg);
    }

    .card h2 {
        font-size: 1.1em;
        margin-bottom: 18px;
        gap: 8px;
    }

    .card h2 .section-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75em;
    }

    /* Steps — step number inline with content on mobile */
    .step {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.75em;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .step-content {
        flex: 1;
        min-width: 0;
        width: 100%;
    }

    /* Drop zone mobile */
    .drop-zone {
        padding: 22px 12px;
        min-height: 90px;
    }

    .drop-zone-icon {
        font-size: 1.8em;
    }

    .drop-zone-text {
        font-size: 0.9em;
    }

    /* Auth methods — column layout on mobile */
    .auth-methods {
        flex-direction: column;
        gap: 6px;
    }

    .auth-method-btn {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        padding: 12px 14px;
        min-width: 0;
        width: 100%;
    }

    .auth-method-btn .method-desc {
        font-size: 0.72em;
    }

    /* Password inputs mobile */
    .password-input-group {
        width: 100%;
    }

    .password-label-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
    }

    .password-label-row label {
        width: 100%;
        margin-bottom: 2px;
    }

    .password-wrapper {
        width: 100%;
    }

    .password-wrapper input {
        font-size: 0.9em;
        padding: 11px 12px;
        min-width: 0;
    }

    .toggle-password {
        padding: 9px 10px;
        flex-shrink: 0;
    }

    .btn-small {
        font-size: 0.75em;
        padding: 5px 10px;
    }

    .btn-copy {
        font-size: 0.72em;
        padding: 5px 8px;
    }

    /* Identity & Expiration mobile */
    .identity-settings,
    .expiration-settings {
        padding: 12px;
        margin-top: 14px;
    }

    .identity-field-input {
        margin-left: 0;
    }

    .identity-field-input input {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.88em;
    }

    .identity-decrypt-header {
        gap: 10px;
    }

    .identity-lock-icon {
        font-size: 1.4em;
    }

    .expiration-select,
    .datetime-input,
    .custom-input {
        width: 100%;
        font-size: 0.88em;
        padding: 10px 12px;
    }

    /* Input type toggle mobile */
    .input-type-toggle {
        width: 100%;
    }

    .toggle-btn {
        padding: 9px 8px;
        font-size: 0.82em;
    }

    .method-title {
        font-size: 0.88em;
    }

    /* Emoji picker mobile */
    .emoji-input-group {
        width: 100%;
    }

    .emoji-selected {
        min-height: 44px;
        padding: 10px;
        font-size: 1.5em;
        width: 100%;
    }

    .emoji-actions {
        width: 100%;
    }

    .emoji-picker {
        max-height: 280px;
        padding: 8px;
        width: 100%;
    }

    .emoji-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
        gap: 3px;
    }

    .emoji-btn,
    .decrypt-emoji-btn {
        font-size: 1.4em;
        padding: 6px;
    }

    .emoji-category-title {
        font-size: 0.78em;
    }

    /* Checkbox labels mobile */
    .checkbox-label {
        font-size: 0.88em;
    }

    /* Buttons mobile */
    .btn {
        padding: 13px 20px;
        font-size: 0.92em;
        width: 100%;
        justify-content: center;
    }

    /* Result section mobile */
    .result-section {
        padding: 16px;
    }

    .method-info {
        font-size: 0.85em;
    }

    /* Hash verification mobile */
    .hash-verification {
        word-break: break-all;
    }

    /* QR section mobile */
    .qr-section {
        padding: 18px;
    }

    /* Method detected mobile */
    .method-detected {
        font-size: 0.85em;
        padding: 10px 12px;
    }

    /* File info mobile */
    .file-info {
        font-size: 0.85em;
        word-break: break-word;
    }

    /* Footer mobile */
    .site-footer {
        padding: 16px 0;
        font-size: 0.78em;
    }

    .site-footer .footer-version {
        font-size: 0.65em;
    }

    .site-footer .footer-separator {
        margin: 0 8px;
    }
}

/* ========================================
   PWA INSTALL BANNER
   ======================================== */

.pwa-install-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 14px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    max-width: 90vw;
    animation: slideUp 0.4s ease;
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
}

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(80px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.pwa-install-banner button {
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85em;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.pwa-install-btn {
    background: var(--accent);
    color: white;
}

.pwa-install-btn:hover {
    background: var(--accent-hover);
}

.pwa-dismiss-btn {
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border-default) !important;
}

.pwa-dismiss-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-secondary);
}

/* ========================================
   OFFLINE INDICATOR
   ======================================== */

.offline-badge {
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--warning);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.offline .offline-badge {
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    text-align: center;
    padding: 28px 20px 14px;
    margin-top: 24px;
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82em;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.site-footer a:hover {
    color: var(--text-secondary);
}

.site-footer .footer-separator {
    margin: 0 12px;
    color: var(--border-default);
}

.site-footer .footer-version {
    display: block;
    margin-top: 8px;
    font-size: 0.7em;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ========================================
   ID-KAARDI SAAJATE SEKTSIOON
   ======================================== */

.idcard-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.idcard-search-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.idcard-idcode-field {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-default);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 1em;
    font-family: 'Inter', monospace;
    letter-spacing: 1px;
    transition: border-color var(--transition-fast);
}

.idcard-idcode-field:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.idcard-idcode-field::placeholder {
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.idcard-cert-upload {
    display: flex;
    gap: 8px;
}

.idcard-recipient-list {
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 12px;
    min-height: 50px;
    border: 1px solid var(--border-default);
}

.no-recipients {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9em;
    padding: 8px;
}

.recipient-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    border: 1px solid var(--border-default);
    animation: fadeIn 0.2s ease;
}

.recipient-item:last-child {
    margin-bottom: 0;
}

.recipient-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.92em;
    color: var(--text-primary);
}

.recipient-key-info {
    font-size: 0.78em;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-family: monospace;
}

.btn-remove-recipient {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1em;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    line-height: 1;
}

.btn-remove-recipient:hover {
    color: var(--danger);
    background: var(--danger-bg);
}

/* ─── PIN1 modaalaken ─── */
/* ─── CDOC faili info ─── */
.cdoc-digidoc-info {
    text-align: left;
}

.cdoc-digidoc-info h4 {
    margin: 0 0 16px 0;
    color: var(--text-primary);
    font-size: 1.1em;
}

.cdoc-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.cdoc-info-table td {
    padding: 6px 8px;
    font-size: 0.9em;
    border-bottom: 1px solid var(--border-primary);
    vertical-align: top;
}

.cdoc-info-table td:first-child {
    color: var(--text-muted);
    white-space: nowrap;
    width: 40%;
    padding-right: 16px;
}

.cdoc-info-table td:last-child {
    color: var(--text-primary);
    word-break: break-all;
}

.cdoc-recipients-section {
    margin: 16px 0;
    padding: 12px;
    background: var(--bg-overlay-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);
}

.cdoc-recipients-section h5 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-size: 0.95em;
}

.cdoc-recipient-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cdoc-recipient-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.cdoc-recipient-list li:last-child {
    border-bottom: none;
}

.cdoc-recipient-name {
    color: var(--text-primary);
    font-size: 0.9em;
}

.cdoc-recipient-method {
    color: var(--text-muted);
    font-size: 0.8em;
    background: var(--bg-overlay-subtle);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.cdoc-no-recipients {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9em;
    margin: 0;
}

.cdoc-howto-section {
    margin: 16px 0;
    padding: 12px;
    background: var(--info-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--info-border);
}

.cdoc-howto-section h5 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-size: 0.95em;
}

.cdoc-howto-steps {
    margin: 0;
    padding-left: 20px;
}

.cdoc-howto-steps li {
    color: var(--text-secondary);
    font-size: 0.9em;
    padding: 4px 0;
    line-height: 1.5;
}

.cdoc-actions {
    margin: 16px 0 12px 0;
    text-align: center;
}

.cdoc-save-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.cdoc-save-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.cdoc-info-row {
    color: var(--text-secondary);
    font-size: 0.9em;
    padding: 4px 0;
    line-height: 1.5;
}

.cdoc-install-details {
    border-top: 1px solid var(--border-primary);
    padding-top: 12px;
    margin-top: 8px;
}

.cdoc-install-details summary {
    color: var(--text-muted);
    font-size: 0.9em;
    cursor: pointer;
    padding: 4px 0;
    user-select: none;
    transition: color var(--transition-fast);
}

.cdoc-install-details summary:hover {
    color: var(--text-primary);
}

.cdoc-install-content {
    padding: 12px 0 4px 0;
}

.cdoc-install-content p {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin: 0 0 10px 0;
}

.cdoc-install-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-secondary);
    color: white !important;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.cdoc-install-link:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.cdoc-checking {
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   LICENSE & INTEGRITY ERROR OVERLAY
   ======================================== */

.met3-license-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: met3-overlay-fadein 0.3s ease;
}

.met3-license-overlay.hidden {
    display: none !important;
}

@keyframes met3-overlay-fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

.license-error-box {
    text-align: center;
    color: #f1f5f9;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 18px;
    max-width: 520px;
    width: 90%;
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.95), rgba(20, 5, 5, 0.95));
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.15), 0 0 120px rgba(239, 68, 68, 0.05);
}

.license-error-icon {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.3));
}

.license-error-box h2 {
    color: #fca5a5;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.license-error-message {
    color: #fecaca;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.license-error-hint-et,
.license-error-hint-en {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.license-error-host {
    display: block;
    color: #64748b;
    margin-top: 1.2rem;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
