body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(135deg, #ffccd5, #caf0f8);
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.primary-button {
    background: #4ecdc4;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
    margin: 0.5rem;
}

.primary-button:hover {
    transform: scale(1.05);
}

.hidden {
    display: none !important;
}

#loadingScreen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.error-message {
    background: #ffe66d;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mode-dropdown {
    padding: 0.8rem;
    border-radius: 10px;
    border: 2px solid #4ecdc4;
    margin-bottom: 2rem;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.search-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

#searchInput {
    padding: 1rem;
    border-radius: 25px;
    border: 2px solid #4ecdc4;
    font-family: inherit;
    font-size: 1rem;
    width: 60%;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 1rem;
}

.radio-group, .checkbox-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.mode-description {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

#webappContainer {
    margin-top: 2rem;
    padding: 1rem;
    border: 2px solid #4ecdc4;
    border-radius: 10px;
    background: white;
}

#webappContainer h2 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

#webappContainer p {
    color: #666;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}