html,
body {
    height: 100%;
}

body {
    background-color: #4a4a4a;
    overflow: hidden;
}

/* KAR - ARKA PLAN */
#snow {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* İÇERİK - ÖN PLAN */
.content-layer {
    position: relative;
    z-index: 10;
}

.card {
    width: 320px;
    border-radius: 20px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    margin-bottom: 10px;
}

a {
    font-weight: bold;
}

.side-img {
    width: 250px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
}

.mobile-img {
    width: 320px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
}

/* ikonların genel stili - SAYDAM (GÖRSELDEKİ GİBİ) */
.orb {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* cam gibi, çok saydam */
    background: rgba(255, 255, 255, 0.08);
    color: rgba(0, 0, 0, 0.35);
    font-size: 20px;

    /* yumuşak gölge */
    box-shadow:
        0 0 6px rgba(0, 0, 0, 0.15),
        inset 0 0 6px rgba(255, 255, 255, 0.25);

    /* cam efekti */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* genel saydamlık */
    opacity: 0.55;

    pointer-events: none;
}