* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: #00f2ff;
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.container {
    width: 90%;
    max-width: 500px;
    text-align: center;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

header h1 span {
    color: #00f2ff;
    text-shadow: 0 0 10px #00f2ff;
}

header p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.main-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

select {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: 1px solid #333;
    border-radius: 10px;
    margin-bottom: 20px;
    outline: none;
}

button {
    width: 100%;
    padding: 15px;
    background: #00f2ff;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    box-shadow: 0 0 20px #00f2ff;
    transform: scale(1.02);
}

.result-area {
    margin-top: 30px;
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.chip {
    background: rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-bottom: 15px;
}

#ideaOutput {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    font-size: 0.8rem;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}