* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: linear-gradient(135deg, #6a89cc 0%, #b8c6db 50%, #a1c4fd 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    background: transparent;
    padding: 20px 40px 40px;
    overflow: hidden;
}

header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.mascot-logo {
    max-width: 150px;
    height: auto;
}

.sou-what-logo {
    max-width: 350px;
    height: auto;
}

.search-container {
    margin-bottom: 40px;
    position: relative;
}

.search-engines {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.engine-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px;
    position: relative;
    backdrop-filter: blur(10px);
}

.engine-option {
    padding: 12px 30px;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
    font-weight: 500;
    border-radius: 50px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.engine-option.active {
    color: #fff;
}

.selector-bg {
    position: absolute;
    height: calc(100% - 10px);
    border-radius: 50px;
    background: linear-gradient(90deg, #007aff, #00c6ff);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
    top: 5px;
    left: 5px;
    z-index: 1;
}

.search-box {
    display: flex;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#search-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
    color: #fff;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

#search-button {
    background: linear-gradient(90deg, #007aff, #00c6ff);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 18px;
}

#search-button:hover {
    background: linear-gradient(90deg, #0056b3, #00a0cc);
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    margin-top: -1px;
}

.suggestions-container.active {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
    border-radius: 15px;
}

.suggestion-item:hover, .suggestion-item.selected {
    background-color: rgba(255, 255, 255, 0.1);
}

.suggestion-item i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    .mascot-logo {
        max-width: 120px;
    }
    
    .sou-what-logo {
        max-width: 280px;
        max-width: 250px;
    }

    .weather-widget {
        display: none;
    }

    .search-box {
        max-width: 95%;
    }

    .suggestions-container {
        width: 95%;
    }
    
    .engine-option {
        padding: 10px 25px;
        font-size: 16px;
    }

    #search-input,
    #search-input::placeholder,
    #search-button {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 20px;
    }

    .mascot-logo {
        max-width: 100px;
    }
    
    .sou-what-logo {
        max-width: 220px;
    }

    .search-box {
        max-width: 95%;
    }
    
    #search-input {
        padding: 12px 15px;
    }
    
    .engine-option {
        padding: 8px 20px;
        font-size: 16px;
    }

    .suggestions-container {
        width: 95%;
    }
}
