:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
    text-align: center;
}

h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.input-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

#city-input {
    flex-grow: 1;
    max-width: 400px;
    padding: 0.5rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 10px 0 0 10px;
}

#search-button {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    transition: background-color 0.3s;
}

#search-button:hover {
    background-color: var(--secondary-color);
}

.weather-container {
    display: flex;
    gap: 2rem;
}

.current-weather {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
}

.forecast-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.forecast-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#city-name {
    color: var(--primary-color);
}
