/* Modern styles for Linktree and Coffee pages (inspirado en linktree/ask) */

.modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
    min-height: 100vh;
}

/* Profile Header */
.profile-header-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.profile-background {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.profile-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.profile-info {
    display: flex;
    align-items: center;
    width: 100%;
}

.profile-avatar {
    position: relative;
    margin-right: 20px;
}

.profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

.verification-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.verification-badge.verified {
    background: #28a745;
    color: white;
}

.verification-badge.unverified {
    background: #dc3545;
    color: white;
}

.profile-details {
    flex: 1;
}

.username {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.user-type {
    color: rgba(255,255,255,0.8);
    margin: 5px 0 0 0;
    font-size: 1rem;
}

/* Cards */
.modern-card {
    background: black;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.modern-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border: none;
}

.modern-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modern-card .card-body {
    padding: 30px;
}

/* Buttons */
.btn.modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    color: #fff;
}

.btn.modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: #fff;
}

/* Timeline/Content Cards */
.timeline-modern {
    background: #000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.timeline-modern .timeline-header {
    background: #1e1f20;
    padding: 25px 30px;
    border-bottom: 1px solid #1e1f20;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-modern .timeline-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.timeline-modern .timeline-content {
    padding: 30px;
}

.timeline-modern .timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.timeline-modern .timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-modern .timeline-icon {
    margin-right: 20px;
    margin-top: 5px;
}

.timeline-modern .timeline-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.timeline-modern .timeline-icon i.published {
    background: #28a745;
    color: white;
}

.timeline-modern .timeline-content {
    flex: 1;
    background: #1e1f20;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.timeline-modern .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.timeline-modern .time {
    color: #6c757d;
    font-size: 0.9rem;
}

.timeline-modern .timeline-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
}

.timeline-modern .timeline-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.timeline-modern .timeline-actions .btn {
    border-radius: 20px;
    font-size: 0.9rem;
    padding: 8px 16px;
}

/* Empty State */
.empty-state-modern {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state-modern i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-modern h4 {
    margin-bottom: 10px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-container {
        padding: 15px;
    }
    .profile-overlay {
        padding: 0 20px;
    }
    .profile-info {
        flex-direction: column;
        text-align: center;
    }
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .timeline-modern .timeline-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .timeline-modern .timeline-item {
        flex-direction: column;
    }
    .timeline-modern .timeline-icon {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    .timeline-modern .timeline-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .username {
        font-size: 1.5rem;
    }
    .modern-card .card-header,
    .modern-card .card-body {
        padding: 20px;
    }
    .timeline-modern .timeline-content {
        padding: 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 