/* ============================= */
/* RESET */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

/* ============================= */
/* OVERLAY */
/* ============================= */

#overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 1s ease;
}

.overlay-hidden {
    transform: translateY(-100%);
}

.overlay-content span {
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0.5;
}

/* ============================= */
/* VIDEO */
/* ============================= */

#bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.3)
    );
    z-index: -1;
}

/* ============================= */
/* CONTAINER */
/* ============================= */

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================= */
/* GLASS CARD */
/* ============================= */

.glass-card {
     display: flex;
    flex-direction: column;
    background: rgba(59,59,59,0.30);
    border: 2px solid #fff;
    border-radius: 24px;
    width: 320px;
    min-height: 500px;
    padding: 30px;
    text-align: center;
    box-shadow:
        0 0 30px rgba(255,255,255,0.4),
        0 0 60px rgba(255,255,255,0.2);
    backdrop-filter: blur(15px);
    transition: 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 50px rgba(255,255,255,0.6),
        0 0 100px rgba(255,255,255,0.3);
}

/* DISCORD CARD */
.discord-card {
    background: #0a0a0a; 
    border-radius: 16px;
    padding: 12px 18px;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 30px;
    border: 1px solid #333;
}

.avatar-box { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.status-dot { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid #111; }

.user-info { text-align: left; overflow: hidden; }
.username { font-weight: 700; font-size: 1rem; color: #fff; }
.badge { background: #fff; color: #000; font-size: 8px; padding: 2px 5px; border-radius: 4px; font-weight: 900; vertical-align: middle; }
.discord-status { font-size: 0.8rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================= */
/* AVATAR */
/* ============================= */

.avatar-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
}

.rotating-bg {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(20px);
    animation: rotate 10s linear infinite;
}

.main-photo {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================= */
/* TITLE */
/* ============================= */

.title {
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bio {
    margin-bottom: 20px;
    opacity: 0.8;
}

/* ============================= */
/* SOCIALS */
/* ============================= */

.socials {
      margin-top: auto;   /* штовхає вниз */
    padding-top: 40px;  /* невеликий відступ */
    display: flex;
    justify-content: center;
    gap: 25px;
    
}

.socials a {
    display: inline-block;
}

.socials img {
        width: 40px;   /* було 32px */
    height: 40px;
    object-fit: contain;

    filter: brightness(0) invert(0.85);
    transition: 0.3s ease;

}

.socials img:hover {
    transform: translateY(-5px); 
      filter: brightness(0) invert(1)
            drop-shadow(0 0 8px rgba(255,255,255,0.6))
            drop-shadow(0 0 18px rgba(255,255,255,0.4));
}































