/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    background-color: rgb(31, 30, 30);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* =========================
   VIDEO BACKGROUND
========================= */
.video-background {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    filter: brightness(0.7);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-mask-image: radial-gradient(
        ellipse 28vw 40vh at center,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 80%
    );
    mask-image: radial-gradient(
        ellipse 28vw 40vh at center,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 80%
    );
    pointer-events: none;
}

.video-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.438);
    pointer-events: none;
    z-index: -1;
}

/* =========================
   CONTAINER (MASTER)
========================= */
.Container {
    width: min(90vw, 460px);
    max-height: 85vh;

    background: transparent;
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2em;

    padding: 1.4em;
    border-radius: 12px;

    font-size: clamp(14px, 1.1vw, 16px);

    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.5),
        0 10px 30px rgba(0, 150, 255, 0.3);

    transition: transform 0.22s cubic-bezier(.2,.9,.2,1),
                box-shadow 0.2s ease-out;

    overflow-y: auto;
}


.Container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.65),
        0 12px 30px rgba(0, 150, 255, 0.45);
}

/* =========================
   HEADER
========================= */
.Header {
    display: flex;
    align-items: center;
    gap: 1.2em;
    width: 100%;
}

.HeaderText {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

/* =========================
   TITLE
========================= */
.TitleDIv {
    background-color: rgba(185, 173, 173, 0.089);
    border-radius: 8px;
    padding: 0.6em 1em;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.TitleDIv:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 15px 25px rgba(94, 94, 94, 0.4);
}

.ContainerTitle {
    font-size: 1.8em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    user-select: none;
    text-shadow: 0 0 5px rgba(0, 150, 255, 0.7);
}

/* =========================
   PROFILE IMAGE
========================= */
.ProfileImage {
    width: 28%;
    max-width: 140px;
    min-width: 88px;
    aspect-ratio: 1 / 1;

    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.35);

    filter: brightness(75%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.ProfileImage:hover {
    transform: translateY(-5px);
    filter: brightness(100%);
    box-shadow: 0 15px 25px rgba(94, 94, 94, 0.4);
}

/* =========================
   PROFILE BLOCK
========================= */
.ProfileContainer {
    display: flex;
    align-items: center;
    gap: 0.8em;

    background-color: rgba(185, 173, 173, 0.089);
    padding: 0.8em 1em;
    border-radius: 20px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ProfileContainer:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 15px 25px rgba(94, 94, 94, 0.4);
}

.ImageDeProfile {
    width: 3em;
    aspect-ratio: 1 / 1;
}

.IconContainer {
    display: flex;
    gap: 0.4em;
}

.icon {
    width: 1.2em;
    height: 1.2em;
}

.ProfileText {
    font-size: 0.85em;
    margin-left: 0.4em;
}

/* =========================
   BIO
========================= */
.InformationContainer {
    width: 85%;
    background-color: rgba(185, 173, 173, 0.089);
    padding: 0.8em 1em;
    border-radius: 8px;
    text-align: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.InformationContainer:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 15px 25px rgba(94, 94, 94, 0.4);
}

.InformationText {
    font-size: 0.95em;
}

/* =========================
   SOCIAL MEDIA
========================= */
.SocialMedia {
    display: flex;
    gap: 1em;

    background-color: rgba(185, 173, 173, 0.089);
    padding: 0.8em 1.2em;
    border-radius: 20px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SocialMedia:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 15px 25px rgba(94, 94, 94, 0.4);
}

.MediaButton {
    width: 3.5em;
    height: 3.5em;

    display: flex;
    justify-content: center;
    align-items: center;

    background: transparent;
    border-radius: 25%;
    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.MediaButton:hover {
    transform: translateY(-5px);
    background-color: rgba(97, 96, 96, 0.35);
    box-shadow: 0 15px 25px rgba(236, 129, 129, 0.4);
}

.MediaIcon,
.TiktokMediaIcon,
.YoutubeMediaIcon {
    width: 70%;
    height: auto;
}

/* =========================
   MOBILE = SCALE DOWN
========================= */
@media (max-width: 700px) {
    .Container {
        transform: scale(0.95);
    }

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

    .HeaderText {
        align-items: center;
    }
}
