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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: #667eea;
}

.search-bar input::placeholder {
    color: #999;
}

.search-bar button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #5568d3;
}

.weather-info h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.weather-details {
    margin-bottom: 30px;
}

.weather-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.weather-details span {
    font-weight: 600;
}

.temperature-display {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-icon,
.weather-app-icon {
    font-size: 64px;
    width: 80px;
    height: 80px;
}

.temperature-wrapper {
    display: flex;
    align-items: flex-start;
}

.temperature {
    font-size: 80px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.temperature sup {
    font-size: 40px;
    font-weight: 400;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}