@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

.lcc-card {
    font-family: 'Montserrat', sans-serif;
    background-color: #0f172a; /* Dark Blue Background */
    color: #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    position: relative;
    line-height: 1.5;
}

/* HEADER & AVATAR */
.lcc-header-row {
    display: flex;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 1px solid #334155;
    gap: 25px;
}
.lcc-avatar-box {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f59e0b;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
    background: #000;
}
.lcc-avatar-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    margin: 0;
    padding: 0;
}
.lcc-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lcc-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem !important;
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.1;
    text-align: left;
}
.lcc-sub {
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
    text-align: left;
    line-height: 1.4;
    opacity: 0.9;
}

/* TABS */
.lcc-tabs {
    display: flex;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}
.lcc-tab {
    flex: 1;
    padding: 15px 5px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}
.lcc-tab:hover { background: #334155; color: white; }
.lcc-tab.active { background: #f59e0b; color: #000; }

/* CONTENT & TEXT */
.lcc-content { padding: 30px; min-height: 300px; box-sizing: border-box; }
.lcc-center-text { text-align: center; margin-bottom: 25px; }
.lcc-center-text h2 { color: #ffffff !important; font-size: 1.6rem !important; margin-bottom: 5px !important; text-shadow: none !important;}
.lcc-center-text p { color: #94a3b8; font-size: 1rem; margin-top: 0;}
.lcc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; }

/* CARDS */
.lcc-btn-card {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #334155;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}
.lcc-btn-card:hover { transform: translateY(-5px); border-color: #f59e0b; }
.lcc-icon-box {
    flex: 0 0 30px;
    color: #fbbf24; 
    font-size: 1.4rem;
    padding-top: 3px;
}
.lcc-btn-text h3 { color: #ffffff !important; margin: 0 0 5px 0 !important; font-size: 1.1rem !important; }
.lcc-btn-text p { font-size: 0.85rem; color: #94a3b8; margin: 0; line-height: 1.4; }

/* ADVICE BOX */
.lcc-advice-box { background: #1e293b; padding: 30px; border-radius: 12px; border-left: 4px solid #f59e0b; animation: fadeIn 0.5s ease; }
.lcc-big-icon { font-size: 2.5rem; color: #fbbf24; margin-bottom: 15px; display: block;}
.lcc-advice-content h3 { color: #ffffff !important; font-size: 1.5rem !important; margin-top: 0 !important; }
.lcc-advice-content p { font-size: 1.15rem; font-style: italic; line-height: 1.6; color: #e2e8f0; margin-bottom: 20px; }
.lcc-cta-small {
    display: inline-block;
    background: #f59e0b;
    color: black;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}
.lcc-cta-small:hover { background: #fff; }
.lcc-back-btn { background: none; border: none; color: #94a3b8; cursor: pointer; margin-bottom: 15px; font-size: 0.9rem; font-weight: bold; }
.lcc-back-btn:hover { color: white; }

/* STATS */
.lcc-stat-layout { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.lcc-score-num { font-size: 3.5rem; font-weight: bold; color: white; display: block; line-height: 1; }
.lcc-score-num span { font-size: 1.5rem; color: #64748b; }
.lcc-score-label { color: #f59e0b; font-weight: bold; letter-spacing: 1px; font-size: 0.8rem; }
.lcc-bar-bg { height: 12px; background: #334155; border-radius: 10px; margin: 0 0 30px 0; overflow: hidden; }
.lcc-bar-fill { height: 100%; background: linear-gradient(90deg, #d97706, #fcd34d); transition: width 1s ease-out; }
.lcc-verified-box ul { list-style: none; padding: 0; color: #cbd5e1; margin: 0; }
.lcc-verified-box li { margin-bottom: 8px; font-size: 1rem; display: flex; align-items: center; }
.lcc-verified-box i { color: #4ade80; margin-right: 12px; font-size: 1.1rem; }

/* BIO TAB FIXES */
.lcc-bio-title { 
    color: #ffffff !important; /* Force White */
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem !important; 
    margin-bottom: 15px !important; 
    text-shadow: none !important;
}
.lcc-bio-text { color: #cbd5e1; line-height: 1.8; margin-bottom: 30px; font-size: 1.05rem; }

/* SHARED CTA */
.lcc-cta-btn {
    display: block;
    width: 100%;
    background: #f59e0b;
    color: black;
    text-align: center;
    padding: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
}
.lcc-cta-btn:hover { background: #fbbf24; box-shadow: 0 0 15px rgba(251, 191, 36, 0.4); }

.lcc-footer { background: #020617; padding: 12px; text-align: center; font-size: 11px; color: #475569; }
.lcc-footer a { color: #64748b; text-decoration: none; }
.hidden { display: none; }
@media (max-width: 600px) {
    .lcc-header-row { flex-direction: column; text-align: center; }
    .lcc-info-box { text-align: center; align-items: center; }
    .lcc-h1 { text-align: center; font-size: 1.8rem !important; }
    .lcc-sub { text-align: center; }
    .lcc-stat-layout { flex-direction: column; text-align: center; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }