@font-face {
    font-family: 'GravitasOne-Regular';
    src: url('../nethergate/fonts/GravitasOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.lk-wrap {
    max-width: 500px;
    margin: 2rem auto;
}
.lk-title {
    margin-bottom: 1.5rem;
    color: #F8FAFC;
}
.lk-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.lk-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.lk-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c8aeff;
}
.lk-field input,
.lk-field textarea {
    padding: 0.6rem 0.8rem;
    border: 1px solid #D4AF37;
    border-radius: 6px;
    font-size: 1rem;
    background: #252525;
    color: #F8FAFC;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lk-field input:focus,
.lk-field textarea:focus {
    outline: none;
    border-color: #005EE6;
    box-shadow: 0 0 0 2px rgba(0, 94, 230, 0.25);
}
.lk-checkbox-field {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
.lk-btn {
    padding: 0.7rem 1.5rem;
    background: #D4AF37;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.lk-btn:hover {
    background: #b8962f;
}
.lk-error {
    padding: 0.8rem 1rem;
    background: #3a1a1a;
    border: 1px solid #e74c3c;
    border-radius: 6px;
    color: #ff6b6b;
    margin-bottom: 1rem;
}
.lk-success {
    padding: 0.8rem 1rem;
    background: #1a3a1a;
    border: 1px solid #27ae60;
    border-radius: 6px;
    color: #6bdb6b;
    margin-bottom: 1rem;
}
.lk-links {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.lk-links a {
    color: #c8aeff;
}

/* Шапка личного кабинета */
.lk-account-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #D4AF37;
}
.lk-account-user .lk-title {
    margin: 0;
}
.lk-user-email {
    color: #888;
    font-size: 0.9rem;
    margin: 0.2rem 0 0;
}
.lk-btn-logout {
    margin-left: auto;
    background: #e74c3c;
}
.lk-btn-logout:hover {
    background: #c0392b;
}

/* Табы */
.lk-tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.lk-tab-btn {
    padding: 0.5rem 1.2rem;
    background: #252525;
    border: 1px solid #D4AF37;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #F8FAFC;
    transition: background 0.2s, color 0.2s;
}
.lk-tab-btn.lk-active {
    background: #D4AF37;
    color: #121212;
    border-color: #D4AF37;
}
.lk-tab-content {
    display: none;
}
.lk-tab-content.lk-active {
    display: block;
}

/* Только для заголовка "Профиль" внутри .content */
body.page-id-97 .content h1 {
    text-align: center;
    color: #F8FAFC;
    font-family: 'GravitasOne-Regular', sans-serif;
    font-size: 2.5rem;
    margin: 1.5rem 0;
    font-weight: normal;
    text-shadow:
        -1px -1px 0 #d4af37,
        1px -1px 0 #d4af37,
        -1px 1px 0 #d4af37,
        1px 1px 0 #d4af37;
}
.lk-subtitle { margin: 24px 0 12px; font-size: 16px; color: #ff4757; }
.lk-hint { font-size: 13px; color: #999; margin-bottom: 16px; }
.lk-empty { padding: 16px; background: #1a1a2e; border-radius: 8px; text-align: center; color: #888; }
.lk-characters-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.lk-character-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; background: #1a1a2e; border-radius: 8px;
    border-left: 4px solid #444;
}
.lk-character-pending  { border-left-color: #f0ad4e; }
.lk-character-approved { border-left-color: #6bff9e; }
.lk-character-rejected { border-left-color: #ff4757; }
.lk-character-info { display: flex; flex-direction: column; gap: 4px; }
.lk-character-nick { font-size: 16px; color: #e0e0e0; }
.lk-character-status { font-size: 13px; color: #a0a0a0; }
.lk-btn-small { padding: 6px 14px; font-size: 13px; }
.lk-btn-danger { background: #3a1a1a; color: #ff6b6b; }
.lk-btn-danger:hover { background: #5a1a1a; }

.lk-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}
.lk-admin-table th,
.lk-admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #2a2a3e;
}
.lk-admin-table th {
    background: #2a2a3e;
    color: #ff4757;
    font-weight: 600;
    font-size: 14px;
}
.lk-admin-table td {
    color: #e0e0e0;
    font-size: 14px;
}
.lk-admin-table tr:last-child td {
    border-bottom: none;
}
.lk-admin-table button {
    margin-right: 6px;
}