:root {
    --primary-glow: #00f0ff;
    --secondary-glow: #ff00c8;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --glass-bg: rgba(16, 18, 27, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    margin-top: 0;
}

/* Background Animations */
.stars, .twinkling {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    display: block;
    z-index: -2;
}

/* Fallback for background images if urls don't exist */
.stars { background-color: #0a0a0a; background-image: radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px), radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px), radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px); background-size: 550px 550px, 350px 350px, 250px 250px; background-position: 0 0, 40px 60px, 130px 270px; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow)) 1;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.jump-counter {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--secondary-glow);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 200, 0.5);
}

/* Main content */
main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    main { grid-template-columns: 1fr; }
}

/* Form */
.input-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-glow);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.glow-on-hover {
    width: 100%;
    padding: 1rem;
    border: none;
    outline: none;
    color: #fff;
    background: linear-gradient(45deg, #00f0ff, #0055ff, #ff00c8, #00f0ff);
    background-size: 400%;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 0;
    animation: glowing 20s linear infinite;
    transition: transform 0.2s ease;
}

.glow-on-hover:hover {
    transform: translateY(-2px);
}

.glow-on-hover:active {
    transform: translateY(1px);
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Logs */
.logs-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.logs-container::-webkit-scrollbar {
    width: 6px;
}

.logs-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-glow);
    border-radius: 10px;
}

.log-entry {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-glow);
    padding: 1.2rem;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.log-entry:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--secondary-glow);
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.log-header h3 {
    margin: 0;
    color: var(--primary-glow);
    font-size: 1.2rem;
}

.date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.description {
    margin: 0;
    line-height: 1.5;
}

.empty-state {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 2rem;
}
