:root {
    --primary-pink: #f8bbd0;
    --light-pink: #fce4ec;
    --dark-pink: #f48fb1;
    --text-color: #eebbcc;
    --text-light: #f0d1dc;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
    --border-radius: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fce4ec;
    overflow-x: hidden;
    padding: 20px;
}

.background-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.main-container {
    width: 100%;
    max-width: 900px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 3px solid var(--light-pink);
}

/* Browser Header */
.browser-header {
    background: var(--light-pink);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--primary-pink);
}

.browser-controls,
.browser-actions {
    display: flex;
    gap: 15px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.address-bar {
    flex: 1;
    margin: 0 20px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    text-align: center;
    color: var(--text-color);
    border: 1px solid var(--primary-pink);
    font-size: 0.9rem;
}

/* Browser Content */
.browser-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
}

.content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

/* Left Column */
.left-column {
    display: flex;
    justify-content: center;
}

.avatar-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    padding: 15px;
    background: var(--light-pink);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-pink);
}

.avatar-container {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorative-elements .deco-circle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    z-index: 2;
}

.top-left {
    top: -5px;
    left: -5px;
}

.bottom-right {
    bottom: -5px;
    right: -5px;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.title {
    color: var(--dark-pink);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px var(--light-pink);
}

.description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Note Box */
.note-box {
    border: 2px solid var(--primary-pink);
    border-radius: var(--border-radius);
    padding: 15px;
    background: var(--white);
}

.note-header {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--light-pink);
}

.note-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Socials Box */
.socials-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.social-item:hover {
    transform: translateY(-3px);
}

.social-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(244, 143, 177, 0.2);
}

.social-sprite {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-item span {
    font-size: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
}

.footer-credit {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Bottom Nav */
.bottom-nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: var(--white);
    border: 2px solid var(--primary-pink);
    padding: 10px 30px;
    border-radius: 10px;
    color: var(--dark-pink);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--primary-pink);
    transition: all 0.2s;
}

.nav-btn:active,
.nav-btn.active {
    transform: translateY(4px);
    box-shadow: none;
    background: var(--light-pink);
}

.nav-separator {
    color: var(--white);
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .avatar-frame {
        margin: 0 auto;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .title {
        text-align: center;
    }
}