/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('https://futrengine.github.io/images/background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    cursor: url('https://search.jachu.xyz/images/cursor.cur'), auto;
}

/* Glassmorphism Container */
.container {
    width: 400px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Clock */
#clock {
    font-size: 2rem;
    margin: 10px 0;
    font-weight: bold;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 65, 108, 0.5);
}

/* Tab Buttons */
.tabs {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.tab-button {
    padding: 10px;
    border: none;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-button:hover {
    transform: scale(1.1);
}

/* Tab Content */
.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

/* Input Fields */
input {
    width: 80%;
    padding: 8px;
    margin: 5px;
    border-radius: 5px;
    border: none;
    text-align: center;
}

/* Buttons */
button {
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
}

button:hover {
    transform: scale(1.1);
}
