#admin-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.login-box {
    background: rgba(17, 17, 17, 0.9);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.1);
}

.login-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.login-box h1 {
    color: #00d4ff;
    font-size: 28px;
    margin-bottom: 8px;
}

.login-sub {
    color: #888;
    margin-bottom: 24px;
}

.login-box input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.login-box input:focus {
    border-color: #00d4ff;
    outline: none;
}

.login-box .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    background: #0d0d0d;
    border-right: 1px solid #1a1a1a;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px 24px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 24px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
}

.logo-text span {
    color: #00d4ff;
}

.sidebar-menu {
    list-style: none;
    flex: 1;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.sidebar-menu li a:hover {
    background: #1a1a1a;
    color: #fff;
}

.sidebar-menu li a.active {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.sidebar-menu li a span {
    font-size: 18px;
}

.sidebar-footer {
    border-top: 1px solid #1a1a1a;
    padding-top: 16px;
}

.sidebar-footer .btn-danger {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

.main-content {
    margin-left: 260px;
    padding: 24px 40px 80px;
}

.admin-section {
    margin-bottom: 48px;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.section-header p {
    color: #888;
    font-size: 14px;
    margin-top: 4px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.dash-card {
    background: #111;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s;
}

.dash-card:hover {
    border-color: #00d4ff;
}

.dash-icon {
    font-size: 32px;
}

.dash-info h3 {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-info span {
    font-size: 28px;
    font-weight: 900;
    color: #00d4ff;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.server-card {
    background: #111;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    text-align: center;
}

.server-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.server-card h3 {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.server-card p {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    margin: 4px 0;
}

.server-card small {
    color: #666;
    font-size: 12px;
}

.server-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.logs-container {
    background: #0d0d0d;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    overflow: hidden;
}

.log-filters {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid #1a1a1a;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
}

.filter-btn.active {
    background: #00d4ff;
    color: #0a0a0a;
    border-color: #00d4ff;
}

.filter-btn:hover {
    border-color: #00d4ff;
}

.logs-list {
    padding: 12px 20px;
    max-height: 300px;
    overflow-y: auto;
}

.log-item {
    padding: 8px 12px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    gap: 16px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.log-item .time {
    color: #666;
    min-width: 160px;
}

.log-item .level {
    font-weight: 700;
    min-width: 60px;
}

.log-item .level.info { color: #00d4ff; }
.log-item .level.warning { color: #ffaa00; }
.log-item .level.error { color: #ff4444; }

.log-item .msg { color: #ccc; }

.music-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #111;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
}

@media (max-width: 768px) {
    .music-container { grid-template-columns: 1fr; }
}

.music-player {
    text-align: center;
    padding: 24px;
    background: #0d0d0d;
    border-radius: 12px;
}

.music-player .music-cover {
    font-size: 64px;
}

.music-player .music-info h3 {
    font-size: 20px;
    color: #00d4ff;
}

.music-player .music-info p {
    color: #888;
}

.music-player .music-progress {
    width: 100%;
    height: 4px;
    background: #1a1a1a;
    border-radius: 4px;
    margin: 12px 0;
    overflow: hidden;
}

.music-player .music-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    width: 0%;
    border-radius: 4px;
    transition: width 0.3s;
}

.music-playlist ul {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.music-playlist li {
    padding: 8px 12px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.music-playlist li button {
    background: #ff4444;
    border: none;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.music-playlist li button:hover {
    background: #cc0000;
}

.add-music {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.add-music input {
    flex: 1;
    padding: 10px 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    min-width: 120px;
}

.add-music input:focus {
    border-color: #00d4ff;
    outline: none;
}

.add-form {
    background: #111;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    margin-bottom: 24px;
}

.add-form h3 {
    margin-bottom: 16px;
    color: #aaa;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
}

.add-form input {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.add-form input:focus {
    border-color: #00d4ff;
    outline: none;
}

.add-form .btn-primary {
    margin-top: 12px;
}

.portofolio-item {
    background: #111;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.portofolio-item .info h4 {
    color: #fff;
}

.portofolio-item .info p {
    color: #888;
    font-size: 14px;
}

.portofolio-item .info small {
    color: #666;
    font-size: 12px;
}

.btn-delete {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-delete:hover {
    background: #cc0000;
}

.review-item {
    background: #111;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    margin-bottom: 12px;
}

.review-item .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-item .review-name {
    font-weight: 700;
}

.review-item .review-rating {
    color: #ffaa00;
}

.review-item .review-comment {
    color: #888;
    margin-top: 4px;
}

.btn-primary {
    background: #00d4ff;
    color: #0a0a0a;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    padding: 10px 26px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
}

.btn-danger {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-danger:hover {
    background: #cc0000;
}

.btn-warning {
    background: #ffaa00;
    color: #0a0a0a;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-warning:hover {
    background: #e69900;
    transform: scale(1.02);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d4ff;
}