.search-container {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #2f5a85 0%, #20628f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    overflow: hidden;
    z-index: 99999;
    top: 0;
}

.search-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.search-container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}

.search-box {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 600px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-input-wrapper:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.search-icon {
    color: #2f5a85;
    font-size: 24px;
    margin-right: 15px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 16px 0;
    color: #333;
}

.search-input::placeholder {
    color: #aaa;
}

.search-button {
    background: linear-gradient(135deg, #2f5a85 0%, #20628f 100%);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-left: 10px;
}

.search-button:hover {
    transform: scale(1.05);
}

.search-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .search-input {
        font-size: 16px;
    }
    
    .search-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .close-button {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.close-button:active {
    transform: rotate(90deg) scale(0.9);
}