body {
    background: #0a0a0f;
    font-family: 'Courier New', monospace;
    color: #e6f1ff;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.nav {
    text-align: center;
    margin-bottom: 30px;
}

.nav a {
    color: #00e5ff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: 0.2s;
}

.nav a:hover {
    text-decoration: underline;
    color: #fff;
}

.widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.widget {
    background: rgba(10, 20, 30, 0.7);
    border: 1px solid #00e5ff;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    text-align: center;
    transition: transform 0.2s ease;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #00e5ff;
}

#time {
    font-size: 2em;
    margin-top: 10px;
}

#weather-info {
    margin-top: 10px;
    font-size: 0.9em;
}
