/* FounderCrow Custom Pure CSS Layout - Exact Match to UI Mockup (No Tailwind, Pure CSS) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --purple-primary: #4F46E5;
    --purple-dark: #3730A3;
    --purple-light: #EEF2FF;
    --purple-badge: #6366F1;
    --orange-tag: #F59E0B;
    --orange-light: #FEF3C7;
    --orange-border: #FDE68A;
    --red-alert: #EF4444;
    --red-light: #FEE2E2;
    --bg-main: #FFFFFF;
    --card-bg: #FFFFFF;
    --text-primary: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-btn: 10px;
    --shadow-card: 0 4px 20px -2px rgba(79, 70, 229, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #FFFFFF;
    color: var(--text-primary);
    line-height: 1.5;
    padding-bottom: 75px;
}

a {
    color: var(--purple-primary);
    text-decoration: none;
}

/* Header Bar */
.header-bar {
    background-color: #FFFFFF;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #0F172A;
    line-height: 1.1;
}
.brand-sub {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-primary);
}

/* Layout Main Container */
.app-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
}

/* Video & Media Hub Section (Exact Match to New Screenshot) */
.video-hub-section {
    margin-top: 32px;
    margin-bottom: 24px;
}

.video-hub-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.red-cam-icon {
    font-size: 24px;
    color: var(--red-alert);
}

.video-hub-title {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.pdf-formats-badge {
    background-color: var(--red-light);
    color: var(--red-alert);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

.video-hub-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.section-header-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-card);
}

.section-header-card .divider-line {
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 4px;
    margin-bottom: 0px;
}

.watch-all-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Video Cards List (4 Videos Layout) */
.video-card-item {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-interview-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #0F172A;
    color: var(--red-alert);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 5;
}

.red-play-btn {
    width: 56px;
    height: 56px;
    background-color: var(--red-alert);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 5;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    cursor: pointer;
}
.red-play-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.video-duration-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background-color: #0F172A;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 5;
}

.video-card-body {
    padding: 18px 20px;
}

.video-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.video-card-meta {
    font-size: 13px;
    color: var(--purple-primary);
    font-weight: 600;
}
.video-card-meta span {
    color: var(--text-muted);
    font-weight: 400;
}

/* Spotlight & Daily Highlights Section Layout (Exact Match to New Screenshot) */
.spotlight-section {
    margin-top: 32px;
    margin-bottom: 24px;
}

.spotlight-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.ribbon-icon {
    font-size: 24px;
    color: var(--purple-primary);
}

.spotlight-title {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.spotlight-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
}

.featured-founder-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--orange-tag);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 20px;
    text-transform: uppercase;
}

.startup-day-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--purple-primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 20px;
    text-transform: uppercase;
}

.spotlight-profile-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.spotlight-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #818CF8, #4F46E5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    flex-shrink: 0;
}

.spotlight-logo-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spotlight-name {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.spotlight-sub {
    font-size: 13px;
    color: var(--purple-primary);
    font-weight: 600;
}

.spotlight-quote {
    font-size: 13px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.read-full-story-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.spotlight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
    margin-top: 14px;
}

.green-funding-tag {
    font-size: 13px;
    font-weight: 800;
    color: #10B981;
}

/* Today's FounderCrow Section Layout */
.todays-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.todays-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.todays-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.blue-flame-icon {
    font-size: 24px;
    color: #4F46E5;
}

.todays-single-title {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.live-feed-pill {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    white-space: nowrap;
}

.browse-news-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Startup Ideas & Business Models Section Layout */
.ideas-section {
    margin-top: 32px;
    margin-bottom: 32px;
}

.ideas-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.lightbulb-icon {
    font-size: 24px;
    color: var(--orange-tag);
}

.ideas-title {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.ideas-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.view-all-ideas-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.idea-card-item {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    position: relative;
}

.idea-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.idea-badge {
    background-color: var(--orange-light);
    border: 1px solid var(--orange-border);
    color: var(--orange-tag);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.idea-card-headline {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.35;
    margin-bottom: 8px;
}

.idea-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.idea-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
    font-size: 12px;
}

.idea-market-tag {
    font-weight: 700;
    color: var(--purple-primary);
}

/* Featured Article Card Container */
.featured-news-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-top: 8px;
}

.featured-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background-color: #000000;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.category-badge-overlay {
    position: absolute;
    top: 18px;
    left: 18px;
    background-color: var(--purple-primary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.featured-card-body {
    padding: 24px 20px;
}

.featured-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--purple-primary);
    line-height: 1.35;
    margin-bottom: 12px;
}
.featured-card-title a {
    color: var(--purple-primary);
}

.featured-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
    font-size: 13px;
}

.author-text {
    font-weight: 700;
    color: var(--purple-primary);
}

.meta-text {
    color: var(--text-muted);
}

/* Top Trending Stories Card Container */
.trending-container-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 24px 20px 20px 20px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.trending-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 20px;
}

.trending-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trending-graph-icon {
    color: var(--orange-tag);
    font-size: 20px;
    font-weight: 800;
}

.trending-main-title {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.trending-top-pill {
    background-color: var(--orange-light);
    border: 1px solid var(--orange-border);
    color: var(--orange-tag);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Trending Item Row */
.trending-item-row {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #F1F5F9;
}
.trending-item-row:last-child {
    border-bottom: none;
    padding-bottom: 10px;
}

.rank-number {
    font-size: 32px;
    font-weight: 900;
    color: #FCD34D;
    line-height: 1;
    width: 24px;
    flex-shrink: 0;
}

.trending-item-content {
    flex-grow: 1;
}

.trending-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.category-purple-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--purple-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-small-pill {
    background-color: var(--orange-light);
    border: 1px solid var(--orange-border);
    color: var(--orange-tag);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.trending-item-headline {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.35;
    margin-bottom: 6px;
}
.trending-item-headline a {
    color: #0F172A;
}

.trending-date-text {
    font-size: 12px;
    color: var(--text-muted);
}

.btn-explore-full {
    background-color: #F1F5F9;
    color: var(--purple-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    display: block;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

/* Funding & Investment Deals Section Layout (Exact Match to New Screenshot) */
.funding-section {
    margin-top: 32px;
    margin-bottom: 32px;
}

.funding-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.green-dollar-icon {
    font-size: 24px;
    color: #10B981;
    font-weight: 800;
}

.funding-title {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.disclosed-investments-pill {
    background-color: #D1FAE5;
    color: #059669;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.view-funding-tracker-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.funding-deal-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.funding-card-header-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.funding-round-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #059669;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 5;
}

.funding-card-body {
    padding: 20px;
}

.funding-company-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.funding-mini-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.funding-company-name {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.funding-investor-text {
    font-size: 13px;
    color: var(--text-muted);
}
.funding-investor-text strong {
    color: #0F172A;
}

.funding-amount-text {
    font-size: 24px;
    font-weight: 800;
    color: #059669;
    margin: 10px 0 6px 0;
}

.funding-desc-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.funding-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
    margin-top: 14px;
    font-size: 12px;
}

/* Sponsored & Growth Card */
.sponsored-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.sponsored-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.sponsored-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: #F1F5F9;
    flex-shrink: 0;
}

.sponsored-badge {
    background-color: var(--orange-tag);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.sponsored-title {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 4px;
}

.sponsored-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-purple {
    background-color: var(--purple-primary);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-btn);
    display: block;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.btn-dark-pill {
    background-color: #0F172A;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

/* Breaking News Card */
.breaking-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--red-alert);
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.breaking-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.red-dot {
    width: 12px;
    height: 12px;
    background-color: var(--red-alert);
    border-radius: 50%;
    display: inline-block;
}

.breaking-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--red-alert);
    letter-spacing: 0.5px;
}

.breaking-counter {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.breaking-title {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 10px;
}

.breaking-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.breaking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-nav {
    display: flex;
    gap: 10px;
}

.arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F1F5F9;
    color: #1E293B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.arrow-circle:hover {
    background-color: #E2E8F0;
    transform: scale(1.05);
}

/* Growth Fund Card */
.growth-card {
    background: #000000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding: 24px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.growth-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 1;
}

.growth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.growth-content {
    position: relative;
    z-index: 3;
}

.growth-badge {
    background-color: #3730A3;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.growth-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.growth-desc {
    color: #CBD5E1;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
}
.dot.active {
    background-color: #6366F1;
    width: 16px;
    border-radius: 10px;
}

/* Forms & Dashboard Styles */
.form-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.form-control {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-btn);
    border: 1px solid var(--border-color);
    font-size: 14px;
}
.form-control:focus {
    outline: none;
    border-color: var(--purple-primary);
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
}
.nav-item.active {
    color: var(--purple-primary);
}
.nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

/* Startup Hiring & Opportunities Section Styling (Exact Screenshot Match) */
.opportunities-section {
    margin-top: 32px;
    margin-bottom: 24px;
}

.opp-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.purple-briefcase-icon {
    font-size: 24px;
    color: var(--purple-primary);
}

.opp-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.purple-fulltime-pill {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 12px;
    display: inline-block;
}

.browse-jobs-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.job-opportunity-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid #E0E7FF;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-opportunity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
}

.job-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.company-logo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.job-badge-pill {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 4px;
}

.job-company-name {
    font-size: 14px;
    font-weight: 800;
    color: #0F172A;
}

.job-title-headline {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
    line-height: 1.3;
}

.job-location-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-desc-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-apply-purple {
    display: block;
    width: 100%;
    background-color: #4F46E5;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.btn-apply-purple:hover {
    background-color: #3730A3;
    color: #FFFFFF;
}

/* Upcoming Events & Pitch Competitions Styling (Exact Screenshot Match) */
.events-section {
    margin-top: 32px;
    margin-bottom: 24px;
}

.event-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.purple-calendar-icon {
    font-size: 24px;
    color: var(--purple-primary);
}

.event-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.purple-calendar-pill {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 12px;
    display: inline-block;
}

.view-calendar-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.event-card-item {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.event-banner-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.event-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #4F46E5;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 8px;
}

.event-date-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #FFFFFF;
    color: #0F172A;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.event-card-body {
    padding: 20px;
}

.event-headline-title {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.event-organizer-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.event-organizer-text span {
    color: #0F172A;
    font-weight: 600;
}

.event-location-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.btn-register-purple {
    display: block;
    width: 100%;
    background-color: #4F46E5;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.btn-register-purple:hover {
    background-color: #3730A3;
    color: #FFFFFF;
}

/* Hamburger Navigation Drawer Overlay (Exact Match to Screenshot 2) */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-overlay.active,
.drawer-overlay[style*="display: block"] {
    opacity: 1 !important;
    visibility: visible !important;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.drawer-header-bar {
    background-color: #FFFFFF;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close-btn {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

/* User Card inside Drawer */
.drawer-user-card {
    background-color: #EEF2FF;
    border: 1px solid #C7D2FE;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.drawer-user-avatar {
    width: 40px;
    height: 40px;
    background-color: #4F46E5;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-user-info {
    display: flex;
    flex-direction: column;
}

.drawer-user-name {
    font-size: 14px;
    font-weight: 800;
    color: #0F172A;
}

.drawer-user-email {
    font-size: 11px;
    color: var(--text-muted);
}

.drawer-logout-btn {
    background: transparent;
    border: none;
    color: #EF4444;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Search Box inside Drawer */
.drawer-search-box {
    position: relative;
    margin-bottom: 16px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-muted);
}

.drawer-search-input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-primary);
}

.drawer-search-input:focus {
    outline: none;
    border-color: var(--purple-primary);
    background-color: #FFFFFF;
}

/* Action Button Row */
.drawer-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-drawer-purple {
    background-color: #4F46E5;
    color: #FFFFFF;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-drawer-gold {
    background-color: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    padding: 12px;
    border-radius: 12px;
}

/* Categories & Hubs Menu List */
.drawer-section-label {
    font-size: 11px;
    font-weight: 800;
    color: #64748B;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.drawer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 30px;
}

.drawer-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #F8FAFC;
    border-radius: 12px;
    color: #0F172A;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.drawer-menu-item:hover {
    background-color: #EEF2FF;
    color: #4F46E5;
}

.drawer-menu-icon {
    font-size: 18px;
    color: #4F46E5;
}

/* News Section Styling (Exact Match to Screenshot 2 & 3) */
.news-header-card {
    margin-top: 10px;
    margin-bottom: 14px;
}

.news-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.purple-newspaper-icon {
    font-size: 24px;
    color: #4F46E5;
}

.news-main-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.news-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 14px;
}

.news-search-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.search-glass-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-muted);
}

.news-search-input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    background-color: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-primary);
}

.news-search-input:focus {
    outline: none;
    border-color: var(--purple-primary);
    background-color: #FFFFFF;
}

/* Pill Tabs Layout */
.news-pills-container {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none; /* Firefox */
}

.news-pills-container::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.news-pill-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #4F46E5;
    background-color: #FFFFFF;
    border: 1.5px solid #4F46E5;
    display: inline-block;
    transition: all 0.2s ease;
}

.news-pill-tab.active {
    background-color: #4F46E5;
    color: #FFFFFF;
    border-color: #4F46E5;
}

.pill-scroll-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.arrow-indicator {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
}

.scroll-track {
    flex: 1;
    height: 8px;
    background-color: #CBD5E1;
    border-radius: 4px;
    position: relative;
}

.scroll-thumb {
    width: 40%;
    height: 100%;
    background-color: #64748B;
    border-radius: 4px;
}

/* News Feed Cards */
.news-feed-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-feed-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.news-cover-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #0F172A;
}

.news-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.red-breaking-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #EF4444;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 12px;
}

.news-card-content {
    padding: 20px;
}

.news-category-purple-label {
    font-size: 11px;
    font-weight: 800;
    color: #4F46E5;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.news-headline-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 8px;
}

.news-headline-title a {
    color: #0F172A;
}

.news-headline-title a:hover {
    color: #4F46E5;
}

.news-excerpt-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.news-card-meta-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
}

/* Startup Directory Page Styling (Exact Screenshot Match) */
.dir-header-card {
    margin-top: 10px;
    margin-bottom: 14px;
}

.dir-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.purple-rocket-icon {
    font-size: 24px;
    color: #4F46E5;
}

.dir-main-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.dir-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 14px;
}

.btn-submit-purple {
    display: inline-block;
    background-color: #4F46E5;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    transition: background-color 0.2s ease;
}

.btn-submit-purple:hover {
    background-color: #3730A3;
    color: #FFFFFF;
}

.startup-dir-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.startup-dir-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.startup-card-top-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.startup-logo-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.startup-name-title {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: #4F46E5;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50%;
}

.startup-location-sub {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.industry-est-pill {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.startup-about-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.problem-founders-box {
    background-color: #F8FAFC;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.problem-founders-box .box-row {
    color: #475569;
}

.problem-founders-box .box-row strong {
    color: #0F172A;
}

.startup-card-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
}

.green-funding-status {
    font-size: 13px;
    font-weight: 800;
    color: #10B981;
}

.visit-site-link {
    font-size: 13px;
    font-weight: 700;
    color: #4F46E5;
}

/* Founder & Startup Dashboard Styling (Exact Screenshot 1, 2, 3, 4, 5 Match) */
.dash-user-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.dash-user-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #6366F1;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.dash-user-name {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-badge-founder {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
}

.role-badge-startup {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
}

.dash-user-email {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.btn-logout-red {
    background-color: #FFF1F2;
    border: 1px solid #FECDD3;
    color: #F43F5E;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
}

.membership-pro-box {
    background-color: #FAFAF9;
    border: 1px solid #E7E5E4;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.pro-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crown-icon {
    font-size: 20px;
    color: #F59E0B;
}

.pro-title {
    font-size: 13px;
    font-weight: 800;
    color: #0F172A;
}

.pro-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.btn-upgrade-pro {
    background-color: #FEF3C7;
    border: 1px solid #FDE68A;
    color: #D97706;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
}

/* Quick Actions & Publishing */
.dash-section-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.purple-sparkle {
    font-size: 16px;
    color: #4F46E5;
}

.dash-section-title {
    font-size: 11px;
    font-weight: 800;
    color: #64748B;
    letter-spacing: 0.5px;
}

.dash-section-sub {
    font-size: 11px;
    color: #94A3B8;
    margin-left: auto;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.quick-actions-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.action-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid var(--border-color);
    padding: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.action-card.active-blue {
    border-color: #4F46E5;
}

.action-card-full {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid var(--border-color);
    padding: 16px;
    cursor: pointer;
}

.action-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
}
.action-icon-box.yellow { background-color: #FEF3C7; color: #D97706; }
.action-icon-box.blue { background-color: #EEF2FF; color: #4F46E5; }
.action-icon-box.purple { background-color: #F3E8FF; color: #9333EA; }
.action-icon-box.light-purple { background-color: #EEF2FF; color: #4F46E5; }
.action-icon-box.light-green { background-color: #D1FAE5; color: #059669; }

.action-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #0F172A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-card-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.plus-yellow { color: #D97706; font-weight: 800; }
.arrow-blue { color: #4F46E5; font-weight: 800; }
.plus-purple { color: #4F46E5; font-weight: 800; }
.plus-green { color: #059669; font-weight: 800; }

.brief-banner-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brief-title { font-size: 14px; font-weight: 800; color: #0F172A; }
.brief-sub { font-size: 11px; color: var(--text-muted); }
.brief-arrow { color: #9333EA; font-weight: 800; font-size: 16px; }

/* Registered Directories */
.registered-directory-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dir-icon-box {
    width: 36px;
    height: 36px;
    background-color: #F1F5F9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.dir-label { font-size: 10px; font-weight: 800; color: #64748B; letter-spacing: 0.5px; }
.dir-name { font-size: 13px; font-weight: 800; color: #0F172A; }

.registered-pill {
    margin-left: auto;
    background-color: #FEF3C7;
    color: #B45309;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.active-pill {
    margin-left: auto;
    background-color: #EEF2FF;
    color: #4F46E5;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Tabs Bar */
.dashboard-tabs-bar {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.dash-tab {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    color: #64748B;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.dash-tab.active {
    background-color: #4F46E5;
    color: #FFFFFF;
    border-color: #4F46E5;
}

/* Stats Row */
.stats-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.stats-row-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.stat-box {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 16px;
}

.stat-label { font-size: 10px; font-weight: 800; color: #64748B; letter-spacing: 0.5px; }
.stat-num { font-size: 24px; font-weight: 800; margin-top: 4px; }
.stat-num.orange { color: #F59E0B; }
.stat-num.blue { color: #4F46E5; }
.stat-num.green { color: #10B981; }

.stat-title { font-size: 14px; font-weight: 800; margin-top: 4px; }
.stat-title.purple { color: #4F46E5; }

.brief-news-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 16px;
    margin-bottom: 20px;
}

/* Submissions Container */
.submissions-container-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.submissions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 12px;
}

.submissions-title {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
}

.btn-submit-new {
    background: transparent;
    border: none;
    color: #D97706;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.btn-purple-pill {
    background-color: #EEF2FF;
    border: 1px solid #C7D2FE;
    color: #4F46E5;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 12px;
    cursor: pointer;
}

.btn-green-pill {
    background-color: #D1FAE5;
    border: 1px solid #A7F3D0;
    color: #059669;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 12px;
    cursor: pointer;
}

.empty-submissions-box {
    padding: 30px 10px;
    text-align: center;
}

.empty-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.btn-orange-submit {
    background-color: #D97706;
    color: #FFFFFF;
    border: none;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.job-item-box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.job-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-mini-logo {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.job-meta-line {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}
.blue-type { color: #4F46E5; }
.green-type { color: #059669; }

.job-item-title {
    font-size: 14px;
    font-weight: 800;
    color: #0F172A;
}

.job-location {
    font-size: 11px;
    color: var(--text-muted);
}

.status-badge-approved {
    background-color: #D1FAE5;
    color: #059669;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.status-badge-pending {
    background-color: #FEF3C7;
    color: #D97706;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Night Mode / Dark Theme Overrides */
body.dark-theme {
    background-color: #0F172A !important;
    color: #F8FAFC !important;
}

body.dark-theme .header-bar,
body.dark-theme .drawer-content,
body.dark-theme .drawer-header-bar,
body.dark-theme .bottom-nav {
    background-color: #1E293B !important;
    border-color: #334155 !important;
}

body.dark-theme .brand-name,
body.dark-theme .todays-single-title,
body.dark-theme .trending-main-title,
body.dark-theme .video-hub-title,
body.dark-theme .spotlight-title,
body.dark-theme .spotlight-name,
body.dark-theme .ideas-title,
body.dark-theme .idea-card-headline,
body.dark-theme .funding-title,
body.dark-theme .funding-company-name,
body.dark-theme .opp-title,
body.dark-theme .job-company-name,
body.dark-theme .job-title-headline,
body.dark-theme .event-title,
body.dark-theme .event-headline-title,
body.dark-theme .news-main-title,
body.dark-theme .news-headline-title a,
body.dark-theme .drawer-user-name,
body.dark-theme .drawer-menu-item {
    color: #F8FAFC !important;
}

body.dark-theme .section-header-card,
body.dark-theme .featured-news-card,
body.dark-theme .trending-container-card,
body.dark-theme .video-card-item,
body.dark-theme .spotlight-card,
body.dark-theme .idea-card-item,
body.dark-theme .funding-deal-card,
body.dark-theme .job-opportunity-card,
body.dark-theme .event-card-item,
body.dark-theme .news-feed-card,
body.dark-theme .drawer-menu-item {
    background-color: #1E293B !important;
    border-color: #334155 !important;
}

body.dark-theme .icon-btn {
    background-color: #334155 !important;
    color: #F8FAFC !important;
    border-color: #475569 !important;
}

body.dark-theme .news-search-input,
body.dark-theme .drawer-search-input {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #F8FAFC !important;
}

body.dark-theme .drawer-user-card {
    background-color: #1E1B4B !important;
    border-color: #312E81 !important;
}

/* Auth Pages (Account Profile & Create Account Screens matching Screenshots 1 & 2) */
.auth-wrapper {
    max-width: 440px;
    margin: 30px auto;
    padding: 0 16px;
}

.auth-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 36px 28px 28px 28px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06);
}

.auth-icon-circle {
    width: 64px;
    height: 64px;
    background: #EEF2FF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.1);
}

.auth-fc-icon-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    border-radius: 18px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.auth-title {
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 28px;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-auth-primary {
    background: #4F46E5;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px -4px rgba(79, 70, 229, 0.4);
    transition: all 0.2s ease;
}

.btn-auth-primary:hover {
    background: #4338CA;
    transform: translateY(-1px);
    color: #FFFFFF;
}

.btn-auth-secondary {
    background: #F1F5F9;
    color: #0F172A;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border-radius: 16px;
    display: block;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-auth-secondary:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.auth-footer-divider {
    height: 1px;
    background: #F1F5F9;
    margin-bottom: 20px;
}

.auth-footer-text {
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
}

/* Form Input Controls (Matching Screenshot 2) */
.auth-input-group {
    margin-bottom: 18px;
}

.auth-input-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.auth-select-field {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230F172A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px top 50%;
    background-size: 12px auto;
}

.auth-select-field:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #94A3B8;
    font-size: 16px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.auth-input-field {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    font-size: 14px;
    color: #0F172A;
    outline: none;
    transition: all 0.2s ease;
}

.auth-input-field:focus {
    background: #FFFFFF;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.auth-switch-prompt {
    font-size: 14px;
    color: #64748B;
}

.auth-switch-link {
    color: #4F46E5;
    font-weight: 700;
}

/* Modal Card Box & Modal Form Controls Fix */
.modal-card-box {
    background: #FFFFFF;
    border-radius: 28px;
    max-width: 520px;
    width: 90%;
    margin: 40px auto;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid #E2E8F0;
}

.modal-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.modal-headline-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-top: 6px;
}

.btn-close-modal {
    background: #F1F5F9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-opp-badge {
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.modal-field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.modal-input-field,
.modal-select-field,
.modal-textarea-field {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    font-size: 14px;
    color: #0F172A;
    outline: none;
    box-sizing: border-box;
}

.modal-input-field:focus,
.modal-select-field:focus,
.modal-textarea-field:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.btn-choose-file {
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.file-name-text {
    font-size: 12px;
    color: #64748B;
    margin-left: 8px;
}

.modal-bottom-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.btn-cancel-gray {
    background: #F1F5F9;
    border: none;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
}

.btn-submit-purple-modal {
    background: #4F46E5;
    color: #FFFFFF;
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

/* Dashboard Tabs Bar Horizontal Scroll Fix */
.dashboard-tabs-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 16px;
    scrollbar-width: none;
}
.dashboard-tabs-bar::-webkit-scrollbar {
    display: none;
}


