html,
body {
    height: 100%;
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}
/* BACKGROUND VIDEO */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: #000;
}
/* ❌ KARARTMA KATMANI KALDIRILDI */
.bg-dim {
    display: none;
}
/* CLICK TO ENTER */
.overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    cursor: pointer;
    transition: opacity .4s ease;
}
.overlay h1 {
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 1px;
    animation: blink 1.5s infinite;
    color: #fff; /* Explicitly ensured */
}
@keyframes blink {
    50% {
        opacity: .5;
    }
}
/* MAIN WRAP */
.wrap {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* PROFILE CARD – GUNS.LOL STYLE */
.card {
    background: rgba(255, 255, 255, .02);
    /* çok hafif cam */
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 32px;
    text-align: center;
    box-shadow: 0 12px 60px rgba(0, 0, 0, .35);
    transform-style: preserve-3d;
    will-change: transform;
}
/* AVATAR */
.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .3);
    object-fit: cover;
    margin-bottom: 4px;
}
/* NAME */
.nick {
    font-size: 34px;
    font-weight: 500;
    margin: 0 0 6px;
    text-shadow: 0 0 12px rgba(255, 255, 255, .9);
}
/* PRESENCE BOX */
.presence {
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 70%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 10px 14px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, .35);
}
/* PRESENCE AVATAR */
.p-avatar {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
}
/* PRESENCE TEXT */
.p-text {
    text-align: left;
    flex: 1;
    overflow: hidden;
}
.p-line1 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.p-line2 {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* STATUS DOT */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    position: absolute;
    right: 10px;
    top: 10px;
}
/* SOCIAL ICONS */
.icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: none;
    text-decoration: none;
    box-shadow: 0 0 8px rgba(255, 255, 255, .25);
    transition: .18s transform, .18s box-shadow;
}
.icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(255, 255, 255, .9);
}
/* TOAST */
.toast {
    position: fixed;
    left: 50%;
    bottom: 120px;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, .8);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    font-size: 14px;
    z-index: 50;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* VOLUME CONTROL */
/* VOLUME CONTROL - MODERN TOP RIGHT */
.volume-control {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    /* Hidden initially via JS, but flex when active */
    align-items: center;
    gap: 10px;
    z-index: 20;
    transition: all 0.3s ease;
}
#vol_icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s;
}
#vol_icon:hover {
    color: #fff;
}
.vol-slider-wrap {
    width: 0;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
}
.volume-control:hover .vol-slider-wrap,
.volume-control:active .vol-slider-wrap {
    width: 100px;
    /* Expand width */
}
.volume-control input[type=range] {
    -webkit-appearance: none;
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}
.volume-control input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* BIO SECTION */
.bio-section {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
}
.bio-text {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}
.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    margin: 4px 0 0;
    transform: rotate(-3deg);
    display: inline-block;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
