/* DeliAI Global Reset ve OLED Dostu Karanlık Mod */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #050505;
    color: #E0E0E0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.player-card {
    background: #111111;
    border: 1px solid #1A3A1A;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    color: #00FF00;
    letter-spacing: -1px;
    margin-bottom: 30px;
    text-align: center;
}

.logo-mini {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #00FF00;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.sensor-bar {
    width: 100%;
    background: #080808;
    border: 1px dashed #1A3A1A;
    padding: 6px;
    font-family: monospace;
    font-size: 10px;
    color: #88FF88;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.panel-subtitle {
    font-size: 14px;
    color: #888888;
    margin-bottom: 15px;
    text-align: center;
}

.track-info {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}
.title-text {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.artist-text {
    font-size: 14px;
    color: #888888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress-zone {
    width: 100%;
    margin-bottom: 25px;
}
.custom-slider {
    width: 100%;
    -webkit-appearance: none;
    background: #222222;
    height: 6px;
    border-radius: 3px;
    outline: none;
}
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #00FF00;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
}
.time-metrics {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666666;
    font-family: monospace;
    margin-top: 6px;
}

/* 🎛️ KLASİK BUTONROW MATRİS DÜZENİ */
.controls-row {
    width: 100%;
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}
.control-btn {
    flex: 1;
    padding: 12px 6px;
    font-family: inherit;
    font-size: 12px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}
.play-mode {
    background: #00FF00;
    color: #000000;
    font-size: 13px;
}
.play-mode:active { background: #00CC00; }
.prev-mode, .next-mode {
    background: #222222;
    color: #FFFFFF;
    border: 1px solid #333333;
}
.prev-mode:active, .next-mode:active { background: #333333; }

/* 🔊 SES AYAR BÖLGESİ STİLLERİ */
.volume-zone {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #080808;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #1c1c1c;
    margin-bottom: 25px;
}
.volume-icon {
    font-size: 14px;
    opacity: 0.6;
}
.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    background: #333333;
    height: 4px;
    border-radius: 2px;
    outline: none;
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #88FF88;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.network-badge {
    font-family: monospace;
    font-size: 11px;
    color: #555555;
    margin-bottom: 20px;
}

.login-input {
    width: 100%;
    background: #111111;
    border: 1px solid #333333;
    padding: 12px;
    color: #FFFFFF;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}
.login-input:focus { border-color: #00FF00; }
.action-btn {
    background: #00FF00;
    color: #000000;
    padding: 14px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.logout-zone {
    margin-top: 5px;
}
.logout-link {
    color: #FF6B6B;
    font-size: 10px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}

/* NOVELL/LINUX SAF TERMİNAL TASARIMI */
.terminal-container {
    width: 100%;
    height: 100vh;
    background-color: #000000;
    color: #00FF00;
    font-family: "Courier New", Courier, monospace;
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    font-size: 12px;
}
.terminal-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #00FF00;
    padding-bottom: 8px;
    margin-bottom: 10px;
    font-weight: bold;
}
.terminal-close {
    color: #FF0000;
    text-decoration: none;
    border: 1px solid #FF0000;
    padding: 2px 8px;
    border-radius: 4px;
}
.terminal-metrics {
    background: #111111;
    padding: 6px;
    border: 1px dashed #00FF00;
    margin-bottom: 10px;
    white-space: pre-wrap;
}
.terminal-crm-zone {
    background: #111111;
    padding: 8px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
}
.terminal-input {
    background: #000000;
    border: 1px solid #00FF00;
    color: #00FF00;
    font-family: monospace;
    padding: 4px 8px;
    outline: none;
}
.terminal-btn {
    background: #00FF00;
    color: #000000;
    border: none;
    padding: 4px 12px;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 2px;
}
.terminal-body {
    flex: 1;
    overflow-y: auto;
    background-color: #050505;
    padding: 10px;
    border: 1px solid #222222;
    white-space: pre;
    font-size: 11px;
    line-height: 1.5;
    -webkit-overflow-scrolling: touch;
}
