* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.input-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

#query-input {
    width: 700px;
    min-height: 60px;
    max-height: 300px;
    padding: 14px 80px 14px 18px;
    font-size: 1.1rem;
    font-weight: 400;
    background-color: rgb(48, 48, 48);
    border: 1px solid #333;
    border-radius: 24px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
    resize: none;
    overflow-y: hidden;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    field-sizing: content;
}

#query-input::placeholder {
    color: #888;
    font-weight: 400;
}

#query-input:focus {
    border-color: #666;
}

#send-button {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

#send-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

#send-button svg {
    width: 20px;
    height: 20px;
}

.result-link {
    margin-top: 1rem;
    padding: 10px 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    display: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.result-link:hover {
    border-color: #666;
}

.result-link a {
    color: #4a9eff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.result-link a:hover {
    color: #6bb3ff;
}

#cursor {
    position: fixed;
    /* width: 24px; */
    /* height: 24px; */
    pointer-events: none;
    z-index: 9999;
    display: none;
}

#cursor svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}