/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    color: #000000;
    line-height: 1.6;
    position: relative;
}

/* Background video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}

/* Backdrop blur overlay */
.backdrop-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 0;
}

/* Gradient overlay - green from bottom */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 17, 44, 0.721), transparent);
    z-index: 1;
}

/* Gradient overlay - blue from top */
.gradient-overlay-blue {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: linear-gradient(to bottom, rgba(4, 63, 105, 0.478), transparent);
    z-index: 1;
}

/* Gradient overlay - green from lower left corner */
.gradient-overlay-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgba(13, 56, 194, 0.166), transparent 70%);
    z-index: 1;
}

/* Gradient overlay - green from lower right corner */
.gradient-overlay-right {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom right, rgba(22, 209, 234, 0.237), transparent 70%);
    z-index: 1;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.logo {
    width: 64px;
    height: auto;
    margin-bottom: 0px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.site-title {
    font-size: 16px;
    font-weight: 300;
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.site-title::after {
    content: '';
    display: none;
    width: 60px;
    height: 13px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Main content */
.main {
    width: 100%;
    max-width: 900px;
}

.avatars-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 40px;
}

/* Avatar components */
.avatar-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.avatar-link:hover {
    transform: translateY(-4px);
}

.avatar {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.028);
    border-radius: 16px;
    border: none;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    min-width: 200px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(40px);
}

.avatar:hover {
    transform: scale(1.02);
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 1.0rem;
    flex-shrink: 0;
    background-color: white;
}

.avatar-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0px;
    color: white;
}

.avatar-subtitle {
    font-size: 0.95rem;
    color: white;
    font-weight: 400;
    margin-bottom: 1rem;
}

.avatar-subtitle::before {
    content: '';
    display: none;
    width: 8px;
    height: 8px;
    background: #34a853;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }

    .header {
        margin-bottom: 40px;
    }

    .logo {
        width: 64px;
    }

    .site-title {
        font-size: 16px;
    }

    .avatars-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

    .avatar {
        min-width: 200px;
        padding: 16px;
    }

    .avatar-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        flex-shrink: 0;
    }

    .avatar-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .avatars-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .avatar {
        min-width: 280px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }

    .avatar {
        min-width: 260px;
        padding: 1.75rem 1.25rem;
    }

    .avatar-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        flex-shrink: 0;
    }

    .site-title {
        font-size: 16px;
    }

    .avatar-subtitle {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .container {
        padding: 0.75rem 0.5rem;
    }

    .avatar {
        min-width: 240px;
        padding: 1.5rem 1rem;
    }

    .avatar-image {
        width: 80px;
        height: 80px;
    }

    .site-title {
        font-size: 16px;
    }

    .avatar-title {
        font-size: 1.125rem;
    }

    .avatar-subtitle {
        font-size: 0.85rem;
    }
}