/* --- VARIABLES DE DISEÑO --- */
:root {
    --bg-color: #0b0c10;
    --card-bg: #8c9095;
    --text-primary: #ffffff;
    --text-secondary: #c5a880; /* Tono dorado/champán elegante */
    --text-muted: #9fa4a6;
    --accent: #b780c5;
}

/* --- ESTILOS GENERALES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
    background: linear-gradient(145deg, #36373a, #2b313d);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

/* --- PERFIL --- */
.profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    padding: 3px;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.instagram-handle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 10px;
}

/* --- CONTADOR INTERACTIVO --- */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
}

.stat-item span { display: block; }

.stat-number {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* --- BOTONES DE ENLACE --- */
.links-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background-color: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

/* --- SECCIÓN NOTIFICACIÓN (JS) --- */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--accent);
    color: #000;
    text-align: center;
    border-radius: 50px;
    padding: 12px;
    position: fixed;
    z-index: 1;
    bottom: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}
