body {
    background-color: #0d0d0d;
    color: #00ff99;
    font-family: 'Turret Road', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-size: 16px;
    text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
}

.container {
    width: 90%;
    max-width: 800px;
    background-color: rgba(10, 25, 47, 0.8);
    border: 1px solid #00ff99;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
    backdrop-filter: blur(5px);
}

header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed #00ff99;
    padding-bottom: 15px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 3px;
    font-weight: 700;
}

header p {
    font-size: 1.1em;
    color: #8892b0;
    text-shadow: none;
}

#tracker-stats {
    font-size: 1em;
    color: #00ff99;
    background-color: rgba(0, 255, 153, 0.1);
    padding: 8px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px dashed #00ff99;
}

.status-panel {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
}

.status-indicator {
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
}

.status-indicator.success {
    background-color: #004d33;
    color: #00ff99;
    box-shadow: 0 0 8px rgba(0, 255, 153, 0.7);
}

.status-indicator.error {
    background-color: #660000;
    color: #ff4d4d;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.7);
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    background: transparent;
    border: 2px solid #00ff99;
    color: #00ff99;
    padding: 12px 25px;
    font-size: 1em;
    font-family: 'Turret Road', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 5px #00ff99;
}

.btn:hover {
    background-color: #00ff99;
    color: #0d0d0d;
    box-shadow: 0 0 15px #00ff99;
    text-shadow: none;
}

.btn:active {
    transform: scale(0.95);
}

.icon {
    font-size: 1.2em;
}

.tracker-list-container {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

#tracker-list {
    width: 100%;
    height: 300px;
    background-color: #0a192f;
    border: 1px solid #00ff99;
    color: #8892b0;
    font-family: monospace;
    font-size: 0.9em;
    padding: 10px;
    resize: vertical;
    border-radius: 5px;
    box-sizing: border-box;
    text-shadow: none;
}

#tracker-list::placeholder {
    color: #54698d;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #00ff99;
    font-size: 0.9em;
    color: #8892b0;
    text-shadow: none;
} 