body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white;
    position: relative;
    overflow: hidden;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: linear-gradient(-45deg, #000000, #180038, #000022, #180038);
    background-size: 400% 400%;
    animation: g 20s ease infinite;
    z-index: -1;
    filter: blur(4px);
}

@keyframes g {
    0% {
        transform: translate(0%, 0%);
    }
    50% {
        transform: translate(-33%, -33%);
    }
    100% {
        transform: translate(0%, 0%);
    }
}



.time {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: right;
}

.greeting {
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.search {
    position: relative;
    width: 500px;
    max-width: 90%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input {
    flex: 1;
    padding: 12px 20px 12px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #000000, #0d0f33);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.input:focus {
    outline: none;
    background: linear-gradient(135deg, #0d0f33, #000000);
    box-shadow: 0 0 8px 2px #4e45a0;
}

.icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.select {
    padding: 12px 20px;
    font-size: 1em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #000000, #0d0f33);
    color: white;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.select:focus {
    outline: none;
    box-shadow: 0 0 8px 2px #4e45a0;
    background: linear-gradient(135deg, #0d0f33, #000000);
}

.select option {
    background-color: #0d0f33;
    color: white;
}

.select option:checked {
    background-color: #4e45a0;
    color: white;
}

.select::-webkit-scrollbar {
    width: 10px;
}

.select::-webkit-scrollbar-track {
    background: #111;
    border-radius: 8px;
}

.select::-webkit-scrollbar-thumb {
    background-color: #4e45a0;
    border-radius: 8px;
    border: 2px solid #111;
}

.select::-webkit-scrollbar-thumb:hover {
    background-color: #3a3580;
}

.select {
    scrollbar-width: thin;
    scrollbar-color: #4e45a0 #111;
}

.button {
    padding: 12px 20px;
    font-size: 1em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #000000, #0d0f33);
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    background: linear-gradient(135deg, #0d0f33, #000000);
    box-shadow: 0 0 8px 2px #4e45a0;
}

.footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.footer:hover {
    transform: translateX(-50%) scale(1.05);
    color: rgba(255, 255, 255, 1);
    font-size: 11px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 1);
}

.footer .checkbox {
    width: 7px;
    height: 7px;
    margin-right: 5px;
}

.footer .checkbox:checked {
    background-color: #4e45a0;
    border-radius: 50%;
}

.footer:hover .checkbox {
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .search {
        flex-direction: column;
        gap: 15px;
    }

    .input,
    .select,
    .button {
        width: 70%;
    }
}

.custom-select {
    position: relative;
    width: 150px;
    font-size: 1em;
    color: white;
}

.selected-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #000000, #0d0f33);
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.selected-option:hover,
.selected-option.active {
    background: linear-gradient(135deg, #0d0f33, #000000);
    box-shadow: 0 0 8px 2px #4e45a0;
}

.selected-option i {
    margin-right: 8px;
    color: #ccc;
}

.selected-option span {
    flex: 1;
}

.options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0d0f33, #000000);
    border: 1px solid #4e45a0;
    border-radius: 15px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.options li {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    transition: background 0.2s ease;
}

.options li:hover {
    background: #4e45a0;
}

.options i {
    margin-right: 8px;
    color: #ccc;
}

.fa-caret-down {
    margin-left: auto;
    color: #ccc;
}

.options::-webkit-scrollbar {
    width: 10px;
}

.options::-webkit-scrollbar-track {
    background: #111;
    border-radius: 8px;
}

.options::-webkit-scrollbar-thumb {
    background-color: #4e45a0;
    border-radius: 8px;
    border: 2px solid #111;
}

.options::-webkit-scrollbar-thumb:hover {
    background-color: #3a3580;
}

.options {
    scrollbar-width: thin;
    scrollbar-color: #4e45a0 #111;
}

@media (max-width: 768px) {
    .search {
        flex-direction: column;
        gap: 15px;
    }

    .input,
    .custom-select,
    .button {
        width: 70%;
    }
}

.fa-caret-down {
    display: none;
}