@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #050505; }
#bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; display: block; }

.card {
    background: rgba(15, 10, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
    border-color: rgba(255, 77, 109, 0.35);
    box-shadow: 0 0 52px -14px rgba(255, 77, 109, 0.18);
}

.logo-box {
    background: rgba(15, 10, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.logo-box:hover {
    border-color: rgba(255, 77, 109, 0.4);
    transform: scale(1.05);
}

.avatar {
    background: rgba(15, 10, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
