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;
}


.ContentContainer {
    width: min(90vw, 460px);


    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    

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

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

    background-color: rgba(0, 0, 0, 0.15);

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

    overflow: hidden;
}

.ContentContainer:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.35);
}

.TextContentContainer {
    width: min(90vw, 460px);
    max-height: 85vh;
    color: white;
    background: transparent;

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

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

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

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

    overflow-y: auto;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    text-align: left;
}

.TextContentContainer:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.35);
}

.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;
}

.MediaLinksContainer {
    display: flex;
    gap: 1em;
    align-items: center;
    flex-direction: row;

    background: transparent;
    color: white;
    padding: 0.8em 1.2em;
    border-radius: 12px;
    margin-top: 3em;

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

.MediaLinksContainer:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.3);
}

.ContentContainer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.ContentContainer a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.MediaLinkText {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
}

.MediaLinkImage {
    max-width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 25%;
    flex-shrink: 0;
}



.MediaLink {
    

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5.5em;
    height: 5.5em;
    padding : 0.5em;
    

    border: none;
    border-radius: 25%;

    background: transparent;
    color: white;
    cursor: pointer;

    transition: .25s;
}

.MediaLink:hover{
    transform: translateY(-6px);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.3);
}