@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Premium Light Theme Colors */
    --bg-primary-light: #f8fafc;
    --bg-secondary-light: #e2e8f0;
    --bg-tertiary-light: #cbd5e1;
    --text-primary-light: #0f172a;
    --text-secondary-light: #334155;
    --text-tertiary-light: #64748b;
    --accent-light: #3b82f6;
    --accent-secondary-light: #8b5cf6;
    --border-light: rgba(148, 163, 184, 0.3);
    --card-bg-light: rgba(255, 255, 255, 0.65);
    --shadow-light: 0 8px 32px rgba(30, 41, 59, 0.08);

    /* Premium Dark Theme Colors */
    --bg-primary-dark: #020617;
    --bg-secondary-dark: #0f172a;
    --bg-tertiary-dark: #1e293b;
    --text-primary-dark: #f8fafc;
    --text-secondary-dark: #cbd5e1;
    --text-tertiary-dark: #94a3b8;
    --accent-dark: #3b82f6;
    --accent-secondary-dark: #a855f7;
    --border-dark: rgba(255, 255, 255, 0.08);
    --card-bg-dark: rgba(15, 23, 42, 0.65);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Current Theme Variables */
    --bg-primary: var(--bg-primary-light);
    --bg-secondary: var(--bg-secondary-light);
    --bg-tertiary: var(--bg-tertiary-light);
    --text-primary: var(--text-primary-light);
    --text-secondary: var(--text-secondary-light);
    --text-tertiary: var(--text-tertiary-light);
    --accent: var(--accent-light);
    --accent-secondary: var(--accent-secondary-light);
    --border: var(--border-light);
    --card-bg: var(--card-bg-light);
    --shadow: var(--shadow-light);

    /* Glassmorphism settings */
    --glass-blur: blur(24px);
    --glass-border: 1px solid var(--border);
}

.dark-theme {
    --bg-primary: var(--bg-primary-dark);
    --bg-secondary: var(--bg-secondary-dark);
    --bg-tertiary: var(--bg-tertiary-dark);
    --text-primary: var(--text-primary-dark);
    --text-secondary: var(--text-secondary-dark);
    --text-tertiary: var(--text-tertiary-dark);
    --accent: var(--accent-dark);
    --accent-secondary: var(--accent-secondary-dark);
    --border: var(--border-dark);
    --card-bg: var(--card-bg-dark);
    --shadow: var(--shadow-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top left, var(--bg-secondary), var(--bg-primary)), var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-logo {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    animation: pulse 2s infinite;
}

.loading-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 2px;
    transition: width 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Header */
header {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    font-size: 24px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    position: relative;
}

/* Background Animations */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 70%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 70%;
    left: 10%;
    animation-delay: 15s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 30px) rotate(-5deg);
    }

    75% {
        transform: translate(-20px, -10px) rotate(3deg);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    border: var(--glass-border);
    box-shadow: var(--shadow), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    padding: 35px;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-secondary), transparent);
    opacity: 0.5;
}

h1,
h2,
h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

h1 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 28px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 20px;
    margin-top: 20px;
}

.subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.password-display {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.password-text {
    font-size: 18px;
    letter-spacing: 1px;
    word-break: break-all;
    flex: 1;
    padding-right: 15px;
    font-family: 'SF Mono', 'Courier New', monospace;
    font-weight: 600;
    color: var(--text-primary);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.icon-btn {
    background: var(--bg-tertiary);
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.icon-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

.icon-btn:hover {
    background: var(--accent);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.icon-btn:active::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    transition: 0s;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 5px;
}

.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px;
}

.tab:hover {
    color: var(--text-primary);
}

.tab.active {
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.tab.active::before {
    transform: scaleY(1);
}

@keyframes decode {
    0% {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.decode-anim {
    animation: decode 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.options {
    margin-bottom: 25px;
}

.option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.option-row:hover {
    transform: translateX(5px);
}

.option-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 180px;
    height: 6px;
    border-radius: 5px;
    background: var(--bg-tertiary);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.length-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    background: var(--bg-tertiary);
    padding: 5px 10px;
    border-radius: 10px;
    color: var(--text-primary);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    transform: translateX(5px);
}

.checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--bg-tertiary);
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkbox:checked {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.checkbox:checked::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.strength-meter {
    margin-bottom: 25px;
}

.strength-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.strength-bar {
    height: 10px;
    border-radius: 5px;
    background: var(--bg-tertiary);
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 5px;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.strength-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite linear;
    transform: skewX(-20deg);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }

    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

.entropy-display {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    color: var(--text-secondary);
    font-weight: 500;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    flex: 1;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

.btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn:active::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
    transition: 0s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.history-card {
    max-height: 400px;
    overflow-y: auto;
}

.history-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.history-list {
    list-style: none;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.history-item:hover {
    transform: translateY(-3px);
    background: var(--bg-tertiary);
}

.history-password {
    font-family: monospace;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-primary);
}

.history-actions {
    display: flex;
    gap: 8px;
}

.history-empty {
    text-align: center;
    padding: 20px;
    color: var(--text-tertiary);
    font-style: italic;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.template-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.template-card:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border: 1px solid var(--border);
}

.notification.show {
    transform: translateX(0);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 30px;
    color: var(--text-primary);
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: var(--bg-tertiary);
    box-shadow: 0 0 0 2px var(--accent);
}

.batch-results {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.batch-password {
    padding: 10px;
    margin-bottom: 5px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-family: monospace;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.batch-password:hover {
    background: var(--bg-tertiary);
}

.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 14px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

.theme-toggle:hover {
    color: var(--accent);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.security-audit {
    margin-top: 20px;
}

.audit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.audit-item:hover {
    transform: translateX(5px);
    background: var(--bg-tertiary);
}

.audit-icon {
    width: 20px;
    text-align: center;
}

.health-score {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .card {
        padding: 20px;
    }

    .slider {
        width: 150px;
    }

    .buttons {
        flex-direction: column;
    }

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

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        flex: 1 0 40%;
        padding: 8px;
        font-size: 14px;
    }

    .password-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .action-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .option-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .slider-container {
        width: 100%;
        justify-content: space-between;
    }

    .slider {
        width: 100%;
    }
}

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

.password-actions .icon-btn {
    flex: 1;
    width: auto;
    padding: 0 15px;
    font-size: 14px;
}

.password-strength-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.highlight {
    background: var(--bg-tertiary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer */
footer {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    box-shadow: var(--shadow);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}