/* ============================================
   VOTA MI CUERPO - Estilos
   ============================================ */

/* Navigation */
nav {
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    border-bottom: 2px solid #999;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav li {
    border-right: 1px solid #999;
}

nav li:last-child {
    border-right: none;
}

nav a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

nav a:hover {
    background: linear-gradient(to bottom, #ff69b4, #ff1493);
    color: white;
}

/* Main Content Layout */
.main-content {
    display: table;
    width: 100%;
    padding: 20px;
}

.column {
    display: table-cell;
    vertical-align: top;
    padding: 10px;
}

.column-left {
    width: 280px;
}

.column-center {
    width: 400px;
    padding: 0 20px;
}

.column-right {
    width: 280px;
}

/* Section Boxes */
.section-box {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section-header {
    background: linear-gradient(to bottom, #ff69b4, #ff1493);
    color: white;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.section-content {
    padding: 15px;
}

/* Profile Card */
.profile-card {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.profile-card:hover {
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
}

.profile-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.profile-photo {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    border: 2px solid #ff69b4;
    object-fit: cover;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.profile-info {
    flex: 1;
}

.profile-nick {
    font-weight: bold;
    color: #ff1493;
    font-size: 15px;
    margin-bottom: 3px;
}

.profile-score {
    font-size: 24px;
    font-weight: bold;
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.profile-label {
    font-size: 11px;
    color: #999;
}

.profile-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #ddd;
    font-style: italic;
}

.profile-status {
    background: linear-gradient(to right, #ffe4f0, #ffd4e5);
    border-left: 3px solid #ff69b4;
    padding: 6px 10px;
    margin-top: 8px;
    font-size: 11px;
    border-radius: 4px;
    font-style: italic;
}

.profile-comments {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.comments-title {
    font-size: 10px;
    color: #999;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.comment {
    background: #f9f9f9;
    padding: 4px 8px;
    margin-bottom: 4px;
    border-radius: 4px;
    font-size: 10px;
    line-height: 1.3;
}

.comment-author {
    color: #ff1493;
    font-weight: bold;
    margin-right: 4px;
}

.comment-text {
    color: #666;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 3px;
    margin-top: 8px;
}

.star {
    font-size: 20px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.star.active {
    color: #ff69b4;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.5);
}

.star:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 3px #ff1493);
}

/* New Users Grid */
.users-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mini-user {
    text-align: center;
    padding: 8px;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.mini-user:hover {
    background: linear-gradient(to bottom, #ffe4f0, #ffc0e0);
    border-color: #ff69b4;
    transform: scale(1.05);
}

.mini-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 5px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #ff1493;
}

.mini-nick {
    font-size: 11px;
    color: #666;
    font-weight: bold;
}

/* Featured User */
.featured-user {
    background: linear-gradient(135deg, #ffe4f0, #ffc0e0);
    border: 3px solid #ff69b4;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.featured-photo {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.featured-nick {
    font-size: 20px;
    font-weight: bold;
    color: #ff1493;
    margin-bottom: 10px;
}

.featured-score {
    font-size: 36px;
    font-weight: bold;
    color: #ff1493;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.7);
    margin-bottom: 10px;
}
