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

/* Body */
body {
    background: linear-gradient(135deg, #afe4f1, #352c44);
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

/* Main Container */
.container {
    max-width: 600px;
    margin: 30px auto;
    background: rgba(91, 12, 12, 0.2);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: block;
    padding: 12px;
    background: linear-gradient(20deg, #2ece41, #66ced1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: scale(1.05);
    background: linear-gradient(20deg, #2bc93b, #94da9b);
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

input, textarea, select, button {
    margin: 10px 0;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

input, textarea, select {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

button {
    background: linear-gradient(45deg, #28a745, #218838);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #218838, #28a745);
}

/* Items */
.item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #333;
}

.item h3 {
    margin-bot