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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section with Portrait */
.header {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.name-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.header-content {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 30px;
}

.portrait-container {
    width: 250px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

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

.header-content .award-card {
    flex: 1;
    max-width: 300px;
    min-height: 300px;
}

.tagline {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

/* Awards & Accomplishments Section */
.highlights {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.award-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.award-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.award-card p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.5;
}

.header-content .award-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.header-content .award-card p {
    font-size: 14px;
    line-height: 1.4;
}

.award-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.mvp-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
}

.header-content .mvp-logo {
    max-width: 180px;
    margin: 0 auto 10px auto;
}

/* Narrative Section */
.narrative {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.narrative-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
}

.narrative-content p {
    margin-bottom: 20px;
}

.narrative-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

.narrative-content h3:first-of-type {
    margin-top: 0;
}

.narrative-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.narrative-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Highlights Section */
.highlights-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.highlight-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.highlight-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-subtitle {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-card p:not(.highlight-subtitle) {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Video Section */
.video-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    display:none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 30px auto 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    border-radius: 15px;
}

/* Social Links & Logos Section */
.social-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.logo-item {
    width: 120px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Affiliations Section */
.affiliations {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.affiliations-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.affiliations-header .section-title {
    margin-bottom: 8px;
    padding-bottom: 0;
}

.affiliations-header .section-title::after {
    display: none;
}

.affiliations-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.affiliations-tagline {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.affiliation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.affiliation-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.affiliation-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

/* Clickable affiliation items (when wrapped in anchor tags) */
.affiliation-list > a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.affiliation-list > a .affiliation-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.affiliation-list > a .affiliation-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.affiliation-list > a .affiliation-item h3 {
    color: #2c3e50;
    text-decoration: none;
}

.affiliation-list > a .affiliation-item p {
    color: #666;
    text-decoration: none;
}

.affiliation-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.affiliation-item p {
    color: #666;
    font-size: 16px;
}

.affiliation-logo {
    float: right;
    max-width: 120px;
    height: auto;
    max-height: 60px;
    margin-left: 15px;
    margin-bottom: 10px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .header, .highlights, .narrative, .video-section, .social-section, .affiliations, .highlights-section {
        padding: 30px 20px;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .portrait-container {
        width: 200px;
        height: 250px;
        margin-bottom: 0;
    }

    .header-content .award-card {
        max-width: 100%;
    }

    .name-title {
        font-size: 32px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .tagline {
        font-size: 22px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .awards-grid, .highlights-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}
