/* Dashboard Styles - MiniAnni.cz */

/* Base Variables */
:root {
    /* Colors */
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #0d0d0d;
    --bg-card: #161616;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --primary-color: #ff6b35;
    --error: #ef4444;
    --success: #22c55e;
    
    /* Dashboard specific */
    --dash-sidebar-width: 260px;
    --dash-header-height: 70px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dashboard Layout */
.dash {
    display: flex;
    min-height: calc(100vh - var(--dash-header-height));
    padding-top: var(--dash-header-height);
}

/* Sidebar */
.dash__sidebar {
    position: fixed;
    left: 0;
    top: var(--dash-header-height);
    bottom: 0;
    width: var(--dash-sidebar-width);
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    border-right: 1px solid var(--border-color);
    padding: 24px 12px;
    overflow-y: auto;
    z-index: 50;
}

.dash__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash__nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.dash__nav-item:hover {
    background: rgba(255, 107, 53, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 107, 53, 0.2);
}

.dash__nav-item--active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    color: var(--primary-color);
    border-color: rgba(255, 107, 53, 0.3);
    font-weight: 600;
}

.dash__nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.dash__nav-divider {
    height: 1px;
    background: #1a1a1a;
    margin: 16px 0;
}

.dash__nav-item--store {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    color: #ffd700;
}

.dash__nav-item--store:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.dash__nav-item--admin {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #ef4444;
}

.dash__nav-badge {
    margin-left: auto;
    background: #ffd700;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Main Content */
.dash__main {
    flex: 1;
    margin-left: var(--dash-sidebar-width);
    padding: 40px;
    min-height: calc(100vh - var(--dash-header-height));
    background: linear-gradient(135deg, #0d0d0d 0%, #0a0a0a 100%);
}

.dash__section {
    display: none;
}

.dash__section--active {
    display: block;
}

.dash__header {
    margin-bottom: 32px;
}

.dash__title {
    font-family: 'Bungee', cursive;
    font-size: 1.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash__title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.dash__loading {
    text-align: center;
    padding: 40px;
    color: #888;
}

/* Stats Cards */
.dash__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.dash__stat {
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dash__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.dash__stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.dash__stat:hover::before {
    opacity: 1;
}

.dash__stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dash__stat--coins .dash__stat-icon { background: rgba(255, 215, 0, 0.2); color: #ffd700; }
.dash__stat--kills .dash__stat-icon { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
.dash__stat--nexus .dash__stat-icon { background: rgba(96, 165, 250, 0.2); color: #60a5fa; }
.dash__stat--wins .dash__stat-icon { background: rgba(34, 197, 94, 0.2); color: #22c55e; }

.dash__stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.dash__stat-label {
    color: #888;
    font-size: 0.9rem;
}

/* Dashboard Cards */
.dash__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.dash__card {
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dash__card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dash__card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.dash__card-header h3 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash__card-header i {
    color: var(--primary-color);
}

.dash__card-body {
    padding: 24px;
}

/* Quick Profile */
.quick-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.quick-profile__avatar {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    image-rendering: pixelated;
}

.quick-profile__name {
    font-family: 'Bungee', cursive;
    font-size: 1.35rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.quick-profile__status {
    color: var(--success);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.quick-profile__status i {
    font-size: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.quick-profile__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quick-profile__row {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.quick-profile__row span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

/* Activity */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.activity-item:hover {
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.activity-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.activity-item__icon--win { 
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%); 
    color: var(--success); 
}

.activity-item__icon--kill { 
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%); 
    color: var(--error); 
}

.activity-item__content {
    flex: 1;
}

.activity-item__title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.activity-item__time {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Profile */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.profile-card {
    background: #161616;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 24px;
}

.profile-card--main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.profile-card__skin img {
    width: 120px;
    height: auto;
    image-rendering: pixelated;
}

.profile-card__name {
    font-family: 'Bungee', cursive;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 12px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.profile-badge--premium {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.profile-badge--offline {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.profile-card__title {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
}

.profile-card__title i {
    color: #ff6b35;
    margin-right: 8px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-info__row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
}

.profile-info__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-info__label {
    color: #888;
}

.profile-info__value {
    color: #fff;
    font-weight: 500;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.stats-card {
    background: #161616;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

.stats-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-card__header i {
    color: #ff6b35;
    font-size: 1.25rem;
}

.stats-card__header h3 {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.stats-card__body {
    padding: 20px 24px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    color: #888;
}

.stats-row:last-child {
    border-bottom: none;
}

.stats-row span:last-child {
    color: #fff;
    font-weight: 600;
}

.stats-row--highlight {
    background: rgba(255, 107, 53, 0.1);
    margin: 0 -24px;
    padding: 12px 24px;
    border-bottom: none;
}

.stats-row--highlight span:last-child {
    color: #ff6b35;
}

/* Settings */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.settings-card {
    background: #161616;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

.settings-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-card__header i {
    color: #ff6b35;
}

.settings-card__header h3 {
    color: #fff;
    font-weight: 600;
}

.settings-card__body {
    padding: 24px;
}

.mc-account {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mc-account__skin {
    width: 80px;
    height: auto;
    image-rendering: pixelated;
    border-radius: 8px;
}

.mc-account__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.mc-account__type {
    color: #22c55e;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Admin */
.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1a1a1a;
    flex-wrap: wrap;
}

.admin-tab {
    padding: 10px 20px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #888;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-tab:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.admin-tab--active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #000;
}

.admin-content {
    display: none;
}

.admin-content--active {
    display: block;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-header h2 {
    font-size: 1.25rem;
    color: #fff;
}

.admin-header h2 i {
    color: #ff6b35;
    margin-right: 8px;
}

.admin-section {
    margin-bottom: 32px;
}

.admin-section h3 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 16px;
}

.admin-section h3 i {
    margin-right: 8px;
}

.admin-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-table-wrapper {
    overflow-x: auto;
    background: #161616;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #1a1a1a;
}

.admin-table th {
    background: #0d0d0d;
    color: #888;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.admin-table td {
    color: #fff;
}

.admin-table__loading {
    text-align: center;
    color: #888;
    padding: 40px !important;
}

.admin-table__status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.admin-table__status--active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.admin-table__status--inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.admin-table__actions {
    display: flex;
    gap: 8px;
}

.admin-table__actions button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: #2a2a2a;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-table__actions button:hover {
    background: var(--primary-color);
    color: #000;
}

.admin-table__actions button i {
    font-size: 0.85rem;
}

.admin-search {
    width: 250px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal--active {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.modal__content--large {
    max-width: 720px;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal__close:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.modal__title {
    font-family: 'Bungee', cursive;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal__title i {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55a2b 100%);
    color: #fff;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.btn--danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.btn--danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn--sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
}

.btn--small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn i {
    font-size: 0.9em;
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

.toast--success {
    border-color: rgba(34, 197, 94, 0.5);
}

.toast--success i {
    color: var(--success);
}

.toast--error {
    border-color: rgba(239, 68, 68, 0.5);
}

.toast--error i {
    color: var(--error);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Orders */
.orders-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card {
    background: #161616;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #0d0d0d;
}

.order-card__number {
    font-weight: 700;
    color: #ff6b35;
}

.order-card__date {
    color: #888;
    font-size: 0.9rem;
}

.order-card__body {
    padding: 20px;
}

.order-card__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #0d0d0d;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}

.order-item__name {
    color: #fff;
    font-weight: 500;
}

.order-item__price {
    color: #ff6b35;
    font-weight: 700;
}

.order-card__total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
    font-weight: 600;
}

.order-card__total-amount {
    color: #ff6b35;
    font-size: 1.25rem;
}

.orders-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.orders-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.orders-empty h3 {
    color: #fff;
    margin-bottom: 8px;
}

/* Form additions */
.form__row {
    display: flex;
    gap: 16px;
}

.form__group {
    flex: 1;
    margin-bottom: 16px;
}

.form__label {
    display: block;
    color: #888;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form__input:focus {
    outline: none;
    border-color: #ff6b35;
}

.form__error {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

.form__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #888;
}

.toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b35;
}

.image-upload-wrapper {
    display: flex;
    align-items: center;
}

.image-preview {
    display: flex;
    align-items: center;
    gap: 8px;
}

.changelog-changes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.changelog-change-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #0d0d0d;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.changelog-change-item select {
    width: 140px;
    flex-shrink: 0;
}

.changelog-change-item input {
    flex: 1;
}

/* Buttons */
.btn--ghost {
    background: transparent;
    border: none;
    color: #888;
    padding: 8px;
    cursor: pointer;
}

.btn--ghost:hover {
    color: #ff6b35;
}

/* Admin list items */
.admin-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #161616;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    transition: all 0.2s;
    min-width: 180px;
}

.admin-list__item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.admin-list__item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-list__item-info {
    flex: 1;
}

.admin-list__item-name {
    color: #fff;
    font-weight: 600;
}

.admin-list__item-desc {
    color: #888;
    font-size: 0.85rem;
}

.admin-list__item-actions {
    display: flex;
    gap: 8px;
}

.admin-list__item-actions button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: #2a2a2a;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-list__item-actions button:hover {
    background: #ff6b35;
    color: #000;
}

/* Detail modals */
.detail-player {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 144, 17, 0.05);
    border: 1px solid rgba(255, 144, 17, 0.1);
}

.detail-player__avatar {
    border-radius: 8px;
}

.detail-player__info h3 {
    font-size: 1.5rem;
    color: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-section {
    background: #0d0d0d;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #1a1a1a;
}

.detail-section__title {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-row__label {
    color: #888;
    font-size: 0.9rem;
}

.detail-row__value {
    color: #fff;
    font-weight: 500;
}

/* Order status badges */
.order-card__status {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-card__status--pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.order-card__status--completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.order-card__status--cancelled {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Responsive */
@media (max-width: 1024px) {
    .dash__sidebar {
        width: 80px;
    }
    
    .dash__nav-item span,
    .dash__nav-badge {
        display: none;
    }
    
    .dash__nav-item {
        justify-content: center;
        padding: 14px;
    }
    
    .dash__main {
        margin-left: 80px;
    }
    
    .profile-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dash__sidebar {
        display: none;
    }
    
    .dash__main {
        margin-left: 0;
        padding: 20px;
    }
    
    .dash__stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .dash__cards {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .form__row {
        flex-direction: column;
        gap: 0;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .admin-search {
        width: 100%;
    }
}

