body {
    background-color: #1a1a1a;
    background-image: radial-gradient(#333 15%, transparent 16%);
    background-size: 20px 20px;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 950px;
    height: 700px;
    background-color: #f7cbdc;
    border: 4px solid #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.header-ribbon {
    background-color: #f19cc2;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 3px dashed #000;
    text-shadow: 1px 1px 0 #000;
}

.top-section {
    background-color: #fff;
    margin: 15px;
    padding: 15px;
    border: 3px double #000;
    border-radius: 10px;
}

.profile-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar-box {
    width: 100px;
    height: 100px;
    background-color: #f19cc2;
    background-image: url("fotinha1.jpeg");
    background-size: cover;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-box {
    flex: 1;
    border: 2px dashed #000;
    padding: 10px;
    font-size: 12px;
    border-radius: 8px;
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.faq-box, .bio-box {
    border: 2px solid #000;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    font-size: 11px;
    max-height: 120px;
    overflow-y: auto;
}

.faq-box {
    background-color: #fff;
    border-bottom: 8px solid #f19cc2;
}

.tag-title {
    background-color: #000;
    color: #fff;
    padding: 2px 6px;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

.divider-spiral {
    height: 20px;
    background-image: linear-gradient(90deg, #000 50%, transparent 50%);
    background-size: 15px 100%;
    margin: 10px 0;
}

.bottom-section {
    padding: 15px;
    text-align: center;
}

.gallery {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.gallery-item {
    width: 80px;
    height: 80px;
    border: 2px solid #000;
    border-radius: 8px;
    background-color: #f19cc2;
}

.gallery-item.pattern-1 {
    background-size: cover;
    background-color: #f7cbdc;
    background-image: url("foto3.jpeg");
}

.gallery-item.pattern-2 {
    background-size: cover;
    background-color: #f7cbdc;
    background-image: url("fotinha2.jpeg");
}

.gallery-item.pattern-3 {
    background-size: cover;
    background-color: #f7cbdc;
    background-image: url("foto4.jpeg");
}

.text-lore {
    font-size: 12px;
    color: #000;
    line-height: 1.4;
    padding: 0 10px;
}

.footer-credits {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: 10px;
    margin-top: 15px;
}
