:root {
    --brand: #88D6FA;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
    color: white;
}

/* Bead background */
.bg {
    position: fixed;
    inset: 0;
    background: url("bead.png") center/cover no-repeat;
    filter: blur(5px) brightness(.9) saturate(1.1);
    transform: scale(1.03);
    z-index: -2;
}

/* Soft divine overlay */
.overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(136, 214, 250, .25), transparent 60%),
        radial-gradient(circle at bottom, rgba(255, 255, 255, .12), transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55));
    z-index: -1;
}

@keyframes float {
    from {
        opacity: .8;
    }

    to {
        opacity: 1;
    }
}

/* Content area */
.container {
    max-width: 820px;
    margin: auto;
    padding: 20px;
}

/* Glass panel */
.card {
    background: rgba(136, 214, 250, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 0 80px rgba(136, 214, 250, .25);
    border: 1px solid rgba(136, 214, 250, .35);
}

/* Header */
.header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.header img {
    width: 100px;
    border-radius: 14px;
}

.header h1 {
    font-size: 1.4rem;
    color: var(--brand);
}

.header p {
    color: #dbeafe;
}

/* Text */
h2 {
    margin-top: 26px;
    color: var(--brand);
    font-size: 1.1rem;
}

p {
    margin-top: 12px;
    line-height: 1.7;
    color: #e5f6ff;
}

/* Footer */
.footer {
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid rgba(136, 214, 250, .3);
    text-align: center;
    font-size: .9rem;
    color: #bfe9ff;
}

/* Mobile tuning */
@media(max-width:600px) {
    .bg {
        filter: blur(3px) brightness(.85);
        /* beads more visible on phone */
    }

    .card {
        padding: 22px;
        border-radius: 22px;
    }

    .header {
        flex-direction: column;
        text-align: center;
    }
}