body {
    font-family: Mulish, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(196, 255, 195);
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#cursor-glow {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    filter: blur(0.5px);
}

.bg-shape {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    border-radius: 50%;
}

#container {
    background-color: rgb(133, 255, 131);
    border-radius: 30px;
    box-shadow: 10px 30px 30px rgb(133, 255, 131);
    padding: 40px;
    width: 80vw;
    height: 80vh;
    display: block;
    position: relative;
    z-index: 10;
}

h1 {
    font-weight: 900;
    font-size: 50px;
    text-align: center;
    user-select: none;
    position: relative;
    z-index: 10;
}

#google {
    padding: 30px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

.search-container input {
    width: 500px;
    padding: 16px 20px;
    font-size: 18px;
    border-radius: 30px;
    border: 1px solid #ccc;
    outline: none;
    transition: box-shadow 0.5s ease;
    font-family: inherit;
    display: block;
    margin: 0 auto;
    z-index: 10;
}

.search-container input:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.5s ease;
}

#quick-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}

.quick-link {
    width: 90px;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 10;
}

.quick-link img {
    width: 48px;
    height: fit-content;
}

.quick-link span {
    font-size: 14px;
    text-align: center;
    user-select: none;
}

.quick-link:hover {
    transform: translateY(-4px);
}
