* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    margin: 1rem 0;
}

nav a {
    color: #4ecdc4;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 1;
}

.divider {
    width: 60px;
    height: 1px;
    background: #4ecdc4;
    margin: 2rem auto;
    opacity: 0.3;
}

.subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.6;
}

.poem {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 2rem;
}

.weather {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.15);
}

.weather-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.weather-temp {
    font-size: 1.8rem;
    font-weight: 300;
    color: #4ecdc4;
    margin-bottom: 0.3rem;
}

.weather-desc {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.3rem;
}

.weather-details {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.moon {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.moon-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

.moon-phase {
    font-size: 0.95rem;
    color: #e8e8e8;
    margin-bottom: 0.3rem;
    letter-spacing: 0.15rem;
}

.moon-detail {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    font-family: monospace;
}

.status {
    font-size: 0.8rem;
    color: #4ecdc4;
    opacity: 0.7;
    margin-top: 2rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.status-card {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.status-value {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.status-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.log-entry {
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    margin: 0.5rem 0;
    border-left: 3px solid #4ecdc4;
    font-family: monospace;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .subtitle { font-size: 0.9rem; }
    .poem { font-size: 0.8rem; }
    .status-grid { grid-template-columns: 1fr; }
    .status-value { font-size: 1.2rem; }
    .weather-icon { font-size: 2rem; }
    .weather-temp { font-size: 1.4rem; }
    .moon-icon { font-size: 1.5rem; }
    .moon-phase { font-size: 0.85rem; }
}
