* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    width: 100%;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
    transition: filter 0.5s ease;
}

#video-background.blurred {
    filter: blur(20px);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    padding: 2rem 4rem;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-top: 175px;
}

.center-text {
    position: fixed;
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    font-family: 'Black Ops One', system-ui, sans-serif;
    background: linear-gradient(to top, #888, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.center-text.hover {
    opacity: 0.3;
    transform: scale(0.8);
}

.profiles-container {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.profiles-container.show {
    pointer-events: none;
}

.profiles-container.show .profile-item {
    pointer-events: all;
}

.lines-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

.lines-svg line {
    stroke: #fff;
    stroke-width: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.profiles-container.show .lines-svg line {
    opacity: 1;
}

.profile-item {
    position: absolute;
    width: 120px;
    height: 120px;
    cursor: pointer;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    left: 50%;
    top: 50%;
}

.profiles-container.show .profile-item {
    opacity: 1;
    transform: translate(
        calc(-50% + var(--index) * 200px - var(--offset)),
        calc(-50% + var(--y-offset))
    ) scale(1);
    transition-delay: calc(var(--index) * 0.1s);
}

.profile-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.profile-item:hover img {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.profile-name {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

