* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #071114;
    color: #d8f3ee;
    padding: 90px 32px 32px;
}

.container {
    width: 100%;
    max-width: 720px;
}

.card {
    background: #0f1d22;
    border: 1px solid #24464f;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}



h1 {
    color: #7ddfc3;
    font-size: 2.5rem;
    margin: 0 0 18px;
    letter-spacing: 1px;
}

.important-text {
    color: #b8d7d2;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.image-row img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #2c5861;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.image-row img:hover {
    transform: scale(1.03);
}

h2 {
    color: #8fc7ff;
    font-size: 3rem;
    margin: 24px 0 0;
}

.bottom-card {
    margin-top: 24px;
    padding: 10px;
    overflow: hidden;
}

.bottom-image {
    display: block;
    width: 100%;
    border-radius: 20px;
}


.collapsible {
    background: linear-gradient(135deg, #123138, #183f47);
    color: #7ddfc3;
    cursor: pointer;
    padding: 18px 22px;
    width: 40%;
    border: 1px solid #2c5861;
    border-radius: 14px;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.collapsible:hover {
    background: linear-gradient(135deg, #183f47, #1f5963);
    border-color: #7ddfc3;
    transform: translateY(-2px);
}

.collapsible::after {
    content: "+";
    float: right;
    color: #d8f3ee;
    font-size: 1.3rem;
}

.collapsible.active::after {
    content: "-";
}

.bio-content {
    max-height: 0;
    overflow: hidden;
    background: #0b171b;
    border: 1px solid #24464f;
    border-top: none;
    border-radius: 0 0 14px 14px;
    text-align: left;
    transition: max-height 0.3s ease;
}

.bio-content p {
    color: #b8d7d2;
    font-size: 1rem;
    line-height: 1.6;
    margin: 18px 22px;
}

.site-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: #0f1d22;
    border-bottom: 1px solid #24464f;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);

    display: flex;
    justify-content: center;
    gap: 24px;

    padding: 14px 20px;
    z-index: 1000;
}

.site-toolbar a {
    color: #7ddfc3;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-toolbar a:hover {
    background: #183f47;
    color: #d8f3ee;
}


.side-panel {
    background: #000000;
    border: 5px solid #000000;
    border-radius: 1px;
    padding: 0px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    top: 90px;
}

.pov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 0 24px 24px;
}

.pov-column {
    min-width: 0;
}

.pov-column .collapsible {
    width: 100%;
}

.pov-column .bio-content {
    width: 100%;
}

@media (max-width: 800px) {
    .pov-grid {
        grid-template-columns: 1fr;
    }
}

.avatar-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
}

.pov-avatar {
    display: block;
    width: 100%;
    height: 100%;

    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #7ddfc3;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.avatar-emoji {
    position: absolute;
    left: -8px;
    bottom: -8px;

    width: 58px;
    height: 58px;

    border-radius: 50%;
    object-fit: cover;

    background: #0f1d22;
    border: 3px solid #7ddfc3;
    padding: 4px;

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}

.avatar-emoji-badge {
    position: absolute;
    left: -8px;
    bottom: -8px;

    width: 58px;
    height: 58px;

    border-radius: 50%;
    background: #0f1d22;
    border: 3px solid #7ddfc3;
    padding: 7px;

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

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}

.avatar-emoji-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-image {
    display: block;
    max-width: 45%;
    width: 100%;
    height: auto;
    margin: 20px auto 0;
}