* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.wrapper {
    width: 100%;
    max-width: 750px;
}

.card {
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #ccc;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

input {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
}

button {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.results {
    display: flex;
    gap: 20px;
}

.result-card {
    flex: 1;
    padding: 25px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

.result-card h3 {
    margin-bottom: 15px;
}

.status {
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
}

.good {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.bad {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.neutral {
    background: rgba(255,255,255,0.1);
    color: #ccc;
}