body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #05060a;
    color: #e0faff;
    overflow-x: hidden;
}

#orb-bg {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 40% 30%, rgba(0,200,255,0.25), transparent 60%),
                radial-gradient(circle at 75% 70%, rgba(255,120,0,0.2), transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(255,50,120,0.15), transparent 60%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

#app {
    max-width: 650px;
    margin: 50px auto;
    padding: 20px;
}

.title {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #4df2ff, #ff9fd8, #4df2ff);
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    text-align: center;
    opacity: 0.8;
    margin-top: 30px;
}

.card {
    backdrop-filter: blur(14px);
    background: rgba(20, 25, 35, 0.5);
    border: 1px solid rgba(120, 220, 255, 0.25);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 25px rgba(0, 150, 255, 0.12);
}

.form input,
.form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #e0faff;
}

textarea {
    height: 80px;
}

/* Datasphere Label */
.ds-label {
    display: block;
    margin: 6px 0 4px;
    color: #8affff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(0,255,255,0.6);
}

.glow-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: #001015;
    background: linear-gradient(135deg, #00e4ff, #8affff);
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 15px #00eaff;
    transition: 0.25s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 25px #00eaff, 0 0 40px #66ffee;
}

.event {
    padding: 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #00eaff;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0,255,255,0.15);
}

.event strong {
    font-size: 1.2rem;
    color: #aefaff;
}

.event em {
    opacity: 0.7;
}

.event p {
    margin: 8px 0;
    opacity: 0.95;
}

.event button {
    padding: 8px 12px;
    border: none;
    margin-right: 8px;
    border-radius: 6px;
    cursor: pointer;
}

.event button:first-of-type {
    background: #00eaff;
    color: #00131a;
    box-shadow: 0 0 10px rgba(0,255,255,0.35);
}

.event button.delete {
    background: #ff5b5b;
    color: #1a0000;
    box-shadow: 0 0 10px rgba(255,80,80,0.35);
}

/* TAGS */
.tag-container {
    margin-top: 10px;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #00eaff55, #ff95d955);
    color: #eaffff;
    padding: 4px 10px;
    margin: 3px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 8px rgba(0,255,255,0.25);
}