* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

: root {
    --primary:  #00ff41;
    --primary-dark: #00cc33;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border: #2a2a2a;
    --danger: #ff3b3b;
    --warning: #ffaa00;
    --glow: 0 0 20px rgba(0, 255, 65, 0.5);
    --glow-strong: 0 0 30px rgba(0, 255, 65, 0.8);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    background:  #0a0a0a ! important;
    color: #ffffff !important;
    overflow-x: hidden;
    min-height: 100vh;
}

.dashboard {
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
}

.sidebar {
    width: 260px;
    background: #141414;
    border-right: 1px solid #2a2a2a;
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
    margin-bottom: 40px;
}

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.6));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    font-size: 28px;
    font-weight:  800;
    background: linear-gradient(135deg, #00ff41, #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color:  transparent;
    background-clip:  text;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 15px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #a0a0a0;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.nav-item:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.nav-item. active {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.nav-icon {
    width: 22px;
    height: 22px;
}

.main-content {
    margin-left: 260px;
    flex: 1;
    padding: 30px 40px;
    background: #0a0a0a;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #00ff41);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.refresh-btn:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.refresh-btn svg {
    width: 18px;
    height: 18px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.account-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.account-card:: before {
    content: '';
    position: absolute;
    top: 0;
    left:  0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff41, #00ffaa);
    opacity: 0;
    transition: opacity 0.3s;
}

.account-card:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-5px);
}

.account-card: hover::before {
    opacity:  1;
}

.account-card.banned {
    border-color: #ff3b3b;
    opacity: 0.7;
}

.account-card.banned:: before {
    background: #ff3b3b;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.account-avatar {
    width: 60px;
    height: 60px;
    border-radius:  12px;
    border: 2px solid #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    object-fit: cover;
}

.account-info {
    flex: 1;
}

.account-name {
    font-size: 18px;
    font-weight:  600;
    color: #ffffff;
    margin-bottom: 4px;
}

.account-id {
    font-size: 13px;
    color: #a0a0a0;
    font-family: 'Courier New', monospace;
}

.account-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size:  12px;
    font-weight: 600;
    margin-top: 10px;
}

.account-status.active {
    background: rgba(0, 255, 65, 0.15);
    color: #00ff41;
}

.account-status.banned {
    background: rgba(255, 59, 59, 0.15);
    color: #ff3b3b;
}

. status-dot {
    width: 6px;
    height: 6px;
    border-radius:  50%;
    background: currentColor;
}

.mod-btn {
    width: 100%;
    padding:  12px;
    background:  linear-gradient(135deg, #00ff41, #00cc33);
    border: none;
    border-radius: 10px;
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    text-transform:  uppercase;
    letter-spacing:  0.5px;
}

. mod-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
    transform: scale(1.02);
}

.mod-btn: disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #333333;
}

.modify-container {
    max-width: 900px;
}

.account-selector-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 25px;
    margin-bottom:  30px;
}

.account-selector-card h2 {
    font-size:  20px;
    margin-bottom: 15px;
    color: #00ff41;
}

.account-select {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #ffffff;
    font-size:  14px;
    cursor: pointer;
    transition: all 0.3s;
}

.account-select:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow:  0 0 20px rgba(0, 255, 65, 0.5);
}

.account-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.action-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.action-card:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-5px);
}

.action-icon {
    font-size: 48px;
    margin-bottom:  15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

.action-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.action-card p {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.weapon-input {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 15px;
    font-size:  14px;
}

.weapon-input:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.action-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    border: none;
    border-radius: 10px;
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.action-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
    transform: scale(1.05);
}

.lookup-container {
    max-width: 600px;
}

.lookup-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.lookup-card h2 {
    font-size: 24px;
    margin-bottom:  10px;
    color: #00ff41;
}

.lookup-desc {
    color: #a0a0a0;
    margin-bottom: 25px;
}

.lookup-input-group {
    display: flex;
    gap: 12px;
}

.lookup-input {
    flex: 1;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #ffffff;
    font-size:  14px;
}

. lookup-input:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.lookup-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    border: none;
    border-radius: 10px;
    color: #000000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.lookup-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
    transform: scale(1.05);
}

.lookup-btn svg {
    width: 20px;
    height: 20px;
}

.player-result {
    background: #141414;
    border: 1px solid #00ff41;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    animation: slideUp 0.4s;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.player-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 3px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.player-details h3 {
    font-size: 24px;
    margin-bottom:  8px;
    color:  #ffffff;
}

.player-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 14px;
    margin:  4px 0;
}

.notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.3s;
    color: #ffffff;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity:  1; transform: translateX(0); }
}

.notification.success {
    border-left: 4px solid #00ff41;
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
}

.notification.error {
    border-left: 4px solid #ff3b3b;
}

.notification.info {
    border-left: 4px solid #00aaff;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #a0a0a0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #2a2a2a;
    border-top-color: #00ff41;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .sidebar {
        width: 80px;
    }
    
    .logo-text,
    .nav-item span {
        display: none;
    }
    
    .main-content {
        margin-left: 80px;
        padding: 20px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
    }
}