/* GERAL */
body {
    background-color: #000;
    background-image: url('https://cur.cursors-4u.net/stars/sta-1/sta110.gif');
    color: #ff69b4;
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

#container {
    width: 900px;
    margin-top: 20px;
}

header h1 {
    text-align: center;
    color: white;
    text-shadow: 2px 2px #ff69b4;
    letter-spacing: 4px;
}

marquee {
    margin: 10px 0;
    font-weight: bold;
}

main {
    display: flex;
    gap: 20px;
}

.left-col { width: 35%; }
.right-col { width: 65%; }

/* CAIXAS */
.box {
    border: 2px solid #ff69b4;
    background: rgba(0,0,0,0.85);
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 4px 4px rgba(255,105,180,0.3);
}

h3 {
    background: #ff69b4;
    color: black;
    padding: 5px;
    margin: -10px -10px 10px -10px;
    font-size: 13px;
    text-transform: uppercase;
}

/* PERFIL (Mantive como estava no seu original) */
.profile-pic img {
    width: 100%;
    border: 1px solid white;
}

.quote {
    text-align: center;
    font-size: 12px;
}

/* STATUS (Restaurado o segredo do verde) */
.online-status {
    color: #00ff00;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.hidden-status {
    color: black;
    background: black;
}

.hidden-status::selection {
    color: #00ff00;
    background: black;
}

/* SOBRE (Bio e fotos lado a lado) */
.about-content {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: flex-start;
}

/* Removi o seletor que mexia em todas as imagens da bio */
.bio-text {
    flex: 1;
}

/* FOTOS DA LUNNA (ESCADA DESCOLADA E GRANDE) */
.lunna-photos {
    position: relative;
    width: 350px; 
    height: 350px;
    flex-shrink: 0;
}

.lunna-photos img {
    width: 110px !important; /* Fotos bem grandes */
    height: 110px !important;
    border-radius: 50%;
    border: 2px solid #ff69b4;
    object-fit: cover;
    position: absolute;
}

/* Posições para ficarem separadas . . . */
.lunna-photos img:nth-child(1) {
    top: 0;
    left: 0;
}

.lunna-photos img:nth-child(2) {
    top: 120px; /* Salto maior que o tamanho da foto para descolar */
    left: 100px;
}

.lunna-photos img:nth-child(3) {
    top: 240px;
    left: 200px;
}

/* AMIGOS E RESTO */
.friend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: center;
}

.friend img {
    width: 80px;
    border: 1px solid #ff69b4;
}
/* CITAÇÕES AUTOMÁTICAS NOS POSTS */
.posts q {
    display: block;
    color: #b266ff;
    font-style: italic;
    margin: 6px 0;
    padding-left: 8px;
    border-left: 2px solid #b266ff;
    quotes: "“" "”";
}

.posts q::before {
    content: open-quote;
}

.posts q::after {
    content: close-quote;
}
footer {
    text-align: center;
    font-size: 10px;
    opacity: 0.6;
    margin-bottom: 20px;
}
