:root {
    --bg-color: #101014;
    --card-bg: #212129;
    --text-main: #ffffff;
    --text-desc: #9ca3af;
    --accent: #8b6eff;
    --accent-dark: #6d4aff;
    --green: #1cb14b;
    --red: #ef4444;
    --sidebar-bg: #101014;
    --sidebar-width: 280px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --profile-gradient-start: #8b6eff; /* Фиолетовый */
    --profile-gradient-end: #5e3be6; /* Темнее, ближе к синему */
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    height: 100vh;
    overflow: hidden;
}

::selection {
    background: var(--accent-dark);
    color: #fff;
}

#sidebar {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

.sidebar-header {
    padding: 20px;
    font-size: 1.4em;
    font-weight: bold;
    color: var(--accent);
    text-align: left;
    padding-left: 15px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(139, 110, 255, 0.3);
}

.category-btn {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
    background-color: var(--card-bg);
    border: 1px solid transparent;
}

.category-btn:hover {
    background-color: #2a2a35;
    color: #fff;
    transform: scale(1.02);
    border-color: rgba(139, 110, 255, 0.3);
}

.category-btn.active {
    background: linear-gradient(135deg, #8b6eff 0%, #6d4aff 100%);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(109, 74, 255, 0.4), 0 0 20px rgba(139, 110, 255, 0.3);
    border: 1px solid var(--accent-dark);
}

.category-btn.active .cat-stats {
    color: rgba(255, 255, 255, 0.8);
}

.cat-name {
    font-size: 1em;
    margin-bottom: 4px;
    color: #cfcfcf;
}

.category-btn.active .cat-name {
    color: #fff;
}

.cat-stats {
    font-size: 0.85em;
    color: var(--text-desc);
    font-weight: normal;
}

#main {
    flex: 1;
    overflow-y: auto;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(139, 110, 255, 0.2);
    padding-bottom: 10px;
}

#current-category-title {
    font-size: 2em;
    margin: 0;
    color: var(--text-main);
}

.global-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.global-btn {
    background-color: var(--card-bg);
    border: 1px solid rgba(139, 110, 255, 0.2);
    color: var(--text-desc);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85em;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.global-btn:hover {
    background-color: #2a2a35;
    color: #fff;
    border-color: var(--accent);
}

.global-btn.danger {
    border-color: rgba(239, 68, 68, 0.3);
}

.global-btn.danger:hover {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: var(--red);
    color: var(--red);
}

.global-btn.success {
    border-color: rgba(28, 177, 75, 0.3);
}

.global-btn.success:hover {
    background-color: rgba(28, 177, 75, 0.1);
    border-color: var(--green);
    color: var(--green);
}

.total-stats {
    font-size: 1.1em;
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 110, 255, 0.1);
}

.achievement-list {
    display: grid;
    gap: 15px;
}

.ach-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.2s;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.ach-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    background-color: #2a2a35;
    border-color: rgba(139, 110, 255, 0.2);
}

.ach-card.completed {
    background-color: rgba(28, 177, 75, 0.08);
    border: 1px solid rgba(28, 177, 75, 0.3);
    opacity: 1;
}

.ach-group {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.ach-group:hover {
    border-color: rgba(139, 110, 255, 0.2);
}

.ach-group-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s;
}

.ach-group-item:last-child {
    border-bottom: none;
}

.ach-group-item:hover {
    background-color: #2a2a35;
}

.ach-group-item.completed {
    background-color: rgba(28, 177, 75, 0.08);
}

.ach-group-item.locked {
    opacity: 0.4;
    pointer-events: none;
}

.ach-group-item.locked .ach-name {
    color: var(--text-desc);
}

.ach-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 20px;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--text-desc);
    border-radius: 8px;
    position: relative;
    transition: all 0.2s;
}

.ach-checkbox:hover {
    border-color: var(--accent);
}

.ach-checkbox:checked {
    background-color: var(--green);
    border-color: var(--green);
}

.ach-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ach-info {
    flex: 1;
}

.ach-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: var(--text-main);
}

.ach-card.completed .ach-name,
.ach-group-item.completed .ach-name {
    color: var(--green);
}

.ach-desc {
    font-size: 0.9em;
    color: var(--text-desc);
}

.ach-reward {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    font-size: 0.9em;
    color: #e2d3a8;
}

.primogem-icon {
    width: 20px;
    height: 20px;
    background-image: url('primogem.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 2px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.bulk-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.bulk-actions.visible {
    opacity: 1;
    pointer-events: auto;
}

.action-btn {
    background-color: var(--card-bg);
    border: 1px solid rgba(139, 110, 255, 0.2);
    color: var(--text-desc);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9em;
    transition: all 0.1s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background-color: #2a2a35;
    color: #fff;
    border-color: var(--accent);
}

.action-btn:active {
    transform: scale(0.95);
    background-color: var(--accent-dark);
    color: #fff;
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.filter-separator {
    color: var(--text-desc);
    margin: 0 12px;
    font-size: 1.2em;
    opacity: 0.3;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.filter-group:hover {
    color: var(--accent);
}

.filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--text-desc);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s;
}

.filter-checkbox:hover {
    border-color: var(--accent);
}

.filter-checkbox:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.filter-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.undo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.undo-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.undo-modal-content {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    border: 1px solid rgba(139, 110, 255, 0.2);
}

.undo-message {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--text-main);
}

.undo-countdown {
    font-size: 3em;
    font-weight: bold;
    color: var(--accent);
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(139, 110, 255, 0.5);
}

.undo-actions {
    margin-top: 30px;
}

.undo-cancel-btn {
    background: linear-gradient(135deg, #8b6eff 0%, #6d4aff 100%);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    transition: all 0.2s ease;
    font-weight: 600;
}

.undo-cancel-btn:hover {
    background: linear-gradient(135deg, #6d4aff 0%, #5538dd 100%);
    transform: scale(1.05);
}

.undo-cancel-btn:active {
    transform: scale(0.98);
}

.account-panel {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.account-btn {
    background-color: var(--card-bg);
    border: 1px solid rgba(139, 110, 255, 0.2);
    color: var(--text-desc);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9em;
    transition: all 0.2s ease;
    user-select: none;
}

.account-btn:hover {
    background-color: #2a2a35;
    color: #fff;
    border-color: var(--accent);
}

.account-email {
    color: var(--text-main);
    font-size: 0.9em;
    padding: 8px 12px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 110, 255, 0.2);
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.auth-modal.show {
    display: flex;
}

.auth-modal-content {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(139, 110, 255, 0.2);
}

.auth-modal-content h2 {
    margin: 0 0 25px 0;
    color: var(--accent);
    text-align: center;
}

.auth-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 110, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
}

.auth-input:focus {
    outline: none;
    border-color: var(--accent);
}

.auth-input::placeholder {
    color: var(--text-desc);
}

.auth-message {
    min-height: 20px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9em;
}

.auth-message.success {
    color: var(--green);
}

.auth-message.error {
    color: var(--red);
}

.auth-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.auth-buttons button {
    background-color: var(--card-bg);
    border: 1px solid rgba(139, 110, 255, 0.2);
    color: var(--text-desc);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9em;
    transition: all 0.2s ease;
    flex: 1;
}

.auth-buttons button:hover {
    background-color: #2a2a35;
    color: #fff;
    border-color: var(--accent);
}

#auth-submit-btn {
    background: linear-gradient(135deg, #8b6eff 0%, #6d4aff 100%);
    color: white;
    border: none;
}

#auth-submit-btn:hover {
    background: linear-gradient(135deg, #6d4aff 0%, #5538dd 100%);
    box-shadow: 0 0 15px rgba(139, 110, 255, 0.5);
}

.auth-toggle {
    text-align: center;
    font-size: 0.9em;
    color: var(--text-desc);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-toggle a {
    color: var(--accent);
    text-decoration: none;
    margin-left: 5px;
    cursor: pointer;
}

.auth-toggle a:hover {
    text-decoration: underline;
}

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background: var(--card-bg);
    border: 1px solid rgba(139, 110, 255, 0.2);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1.2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    #sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        z-index: 100;
        transition: left 0.3s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    #sidebar.open {
        left: 0;
    }

    #main {
        padding: 15px;
        padding-top: 60px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    #current-category-title {
        font-size: 1.5em;
        margin-left: 40px;
        line-height: 1.2;
    }

    .bulk-actions {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
    }

    .action-btn {
        flex: 1;
        justify-content: center;
        font-size: 0.85em;
        padding: 10px;
    }

    .global-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .global-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .account-panel {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ach-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .ach-checkbox {
        margin-bottom: 10px;
    }

    .ach-info {
        width: 100%;
    }

    .ach-reward {
        margin-left: 0;
        margin-top: 12px;
        flex-direction: row;
        gap: 8px;
        align-self: flex-start;
        background: rgba(255, 255, 255, 0.05);
        padding: 4px 10px;
        border-radius: var(--radius-sm);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --sidebar-width: 240px;
    }

    #main {
        padding: 20px;
    }

    .ach-card {
        padding: 15px;
    }
}

/* --- Анимация сохранения (Sync Status) --- */

/* Класс, который мы будем добавлять через JS */
.syncing {
    /* Переливание фона */
    background: linear-gradient(90deg, var(--card-bg), #2f2f3d, var(--card-bg));
    background-size: 200% 100%;

    /* Принудительно показываем границы и цвет */
    border-color: var(--accent) !important;
    color: #fff !important;

    /* Запускаем две анимации одновременно: свечение и движение фона */
    animation:
        magic-pulse 1.5s infinite ease-in-out,
        bg-slide 2s infinite linear;
}

/* Анимация 1: Пульсирующее неоновое свечение рамки */
@keyframes magic-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 110, 255, 0.4);
    }

    50% {
        /* Рамка светится ярче и шире */
        box-shadow: 0 0 12px 2px rgba(139, 110, 255, 0.6);
        border-color: #fff !important;
        /* Белая вспышка на границах */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 110, 255, 0);
    }
}

/* Анимация 2: Бегущий блик по фону */
@keyframes bg-slide {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* --- User Profile Avatar (в шапке) --- */
.user-avatar {
    width: 48px; /* Чуть больше */
    height: 48px;
    /* Градиентная заливка */
    background: linear-gradient(135deg, var(--profile-gradient-start), var(--profile-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* Двойная рамка для эффекта свечения, как на фото */
    box-shadow:
        0 0 0 3px rgba(139, 110, 255, 0.3), /* Внешнее кольцо */
        0 0 20px rgba(139, 110, 255, 0.5);  /* Свечение */
    transition: all 0.3s ease;
    margin-left: 10px;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 0 3px rgba(139, 110, 255, 0.6),
        0 0 30px rgba(139, 110, 255, 0.8);
}

#avatar-letter {
    color: #fff;
    font-weight: 700; /* Жирный шрифт */
    font-size: 1.5em; /* Крупнее буква */
    text-transform: uppercase;
    user-select: none;
}

/* =========================================
   Модальное окно профиля и кнопки
========================================= */

/* Основной контейнер профиля */
.profile-content {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 550px; /* БЫЛО 380px -> СТАЛО 550px (чтобы влезли 3 кнопки) */
    padding: 40px 30px;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(139, 110, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

/* Крестик закрытия */
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-desc);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
    z-index: 10;
}

.close-modal:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Заголовки внутри профиля */
.profile-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
}

/* Обновленный дизайн аватара (Свечение как на фото) */
.profile-avatar-big {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5em;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;

    /* Эффект стекла и свечения */
    background: radial-gradient(circle at 30% 30%, rgba(139, 110, 255, 0.15), transparent 70%);
    border: 1px solid rgba(139, 110, 255, 0.5);
    box-shadow:
        0 0 15px rgba(139, 110, 255, 0.3), /* Внешнее свечение */
        inset 0 0 20px rgba(139, 110, 255, 0.2); /* Внутреннее свечение */
    border-radius: 50%;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

#profile-email-text {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 25px;
    word-break: break-all;
    font-weight: 500;
}

/* --- Контейнеры для кнопок --- */

/* Обновляем кнопки в группе, чтобы они влезали */
.profile-actions-group {
    display: flex;
    flex-direction: row;
    gap: 10px; /* Чуть меньше отступ */
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

/* Общий стиль кнопок в профиле */
.profile-content .global-btn {
    padding: 12px 10px;
    border-radius: 30px;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1; /* Растягивает кнопки равномерно */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Стиль для средней кнопки (Импорт/Экспорт) */
.profile-content .global-btn.secondary {
    background-color: rgba(139, 110, 255, 0.1);
    border: 1px solid var(--accent);
    color: #fff;
    margin-bottom: 10px; /* Отступ от нижней красной кнопки */
}

.profile-content .global-btn.secondary:hover {
    background-color: rgba(139, 110, 255, 0.25);
    box-shadow: 0 0 15px rgba(139, 110, 255, 0.2);
}

/* Стиль кнопки "Выйти" (Контурная красная) */
.profile-content .global-btn.danger {
    background-color: transparent;
    border: 1px solid var(--red);
    color: var(--red);
}
.profile-content .global-btn.danger:hover {
    background-color: var(--red);
    color: #fff;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

/* Стиль кнопки "Сменить пароль" (Контурная фиолетовая) */
.profile-content .global-btn.accent {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.profile-content .global-btn.accent:hover {
    background-color: rgba(139, 110, 255, 0.1);
    box-shadow: 0 0 15px rgba(139, 110, 255, 0.3);
}

/* Стиль кнопки "Сохранить" (Залитая фиолетовая) */
.profile-content .global-btn.accent-filled {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    color: white;
}
.profile-content .global-btn.accent-filled:hover {
    box-shadow: 0 0 15px rgba(139, 110, 255, 0.5);
    transform: scale(1.02);
}

/* Стиль кнопки "Удалить аккаунт" (Залитая красная) */
/* Используем important, чтобы перебить общие стили global-btn */
.global-btn.danger-filled {
    background-color: rgba(220, 38, 38, 0.9) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.global-btn.danger-filled:hover {
    background-color: rgba(239, 68, 68, 1) !important;
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.5);
}

/* Специальный класс для кнопки во всю ширину */
.full-width-btn {
    width: 100%;
    flex: none !important; /* Отменяем flex:1 */
    margin-top: 5px;
    padding: 14px 0;
}

/* Поля ввода (пароли) */
.profile-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 10px;
    font-size: 1em;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}
.profile-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(0, 0, 0, 0.5);
}

/* --- Стили для окна данных (Импорт/Экспорт) --- */

.data-section {
    margin-bottom: 20px;
    text-align: left; /* Заголовки слева */
}

.data-header {
    font-size: 0.85em;
    text-transform: uppercase;
    color: var(--text-desc);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-left: 5px; /* Чуть отступа слева */
}

.data-row {
    display: flex;
    gap: 10px; /* Расстояние между кнопками */
    justify-content: space-between;
}

/* Специфичные стили для кнопок в ряду, чтобы текст влезал */
.data-row .global-btn {
    flex: 1; /* Кнопки делят место поровну */
    padding: 10px 5px; /* Чуть меньше отступы по бокам */
    font-size: 0.85em; /* Чуть меньше шрифт */
}