/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #1E3A8A;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1E3A8A;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1E3A8A;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1E3A8A 0%, #17af7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    /* Fallback for browsers that don't support background-clip */
    color: #1E3A8A;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1E3A8A;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.hero-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
    transition: all 0.4s ease;
    border: 5px solid rgba(255, 255, 255, 0.9);
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 80px rgba(30, 58, 138, 0.3);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: #f8fafc;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1E3A8A;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.about-text strong {
    color: #1E3A8A;
    font-weight: 600;
}

.about-text em {
    color: #059669;
    font-style: italic;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-title i {
    font-size: 1.2rem;
    color: #059669;
}

.achievements-list {
    display: grid;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #1E3A8A;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.achievement-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    align-self: flex-start;
}

.achievement-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.media-links {
    margin-top: 3rem;
}

.media-links h5 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.media-links h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1E3A8A 0%, #059669 100%);
    border-radius: 2px;
}

.tv-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.tv-video-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.tv-video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A 0%, #059669 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tv-video-item:hover::before {
    opacity: 1;
}

.tv-video-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.15);
}

.tv-video-item h6 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.tv-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 350px;
}

.tv-video-container:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 80px rgba(30, 58, 138, 0.35);
}

.tv-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    /* Ensure iframe is responsive */
    max-width: 100%;
    object-fit: cover;
    background: #f8fafc;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tv-video-container iframe[src] {
    opacity: 1;
}

/* Loading state for video containers */
.tv-video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #1E3A8A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.tv-video-container iframe[src] + *::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.media-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    width: fit-content;
}

.media-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, #FF1A1A 0%, #E60000 100%);
}

.media-link i {
    font-size: 1.1rem;
}

.media-link span {
    white-space: nowrap;
}

/* Books Section */
.books-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.book-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.05);
    transition: transform 0.3s ease;
}

.book-category:hover {
    transform: translateY(-5px);
}

.book-list {
    display: grid;
    gap: 1.2rem;
}

.book-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #059669;
    transition: all 0.3s ease;
}

.book-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
}

.book-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1E3A8A;
    background: rgba(30, 58, 138, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    align-self: flex-start;
}

.book-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.book-info p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Filmography Section */
.filmography-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.film-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.05);
    transition: transform 0.3s ease;
}

.film-item.featured {
    background: linear-gradient(135deg, #1E3A8A 0%, #059669 100%);
    color: white;
    transform: scale(1.02);
}

.film-item:hover {
    transform: translateY(-8px);
}

.film-item.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.film-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.film-video .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.film-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #1a1a1a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.film-video .video-container iframe[src] {
    opacity: 1;
}

.film-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

.film-item.featured .film-info h3 {
    color: white;
}

.film-role {
    font-size: 1rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
}

.film-item.featured .film-role {
    color: rgba(255, 255, 255, 0.9);
}

.film-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #475569;
}

.film-item.featured .film-description {
    color: rgba(255, 255, 255, 0.9);
}

.film-awards {
    margin-bottom: 1.5rem;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.film-item.featured .award-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.film-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.film-link:hover {
    color: #059669;
}

.film-item.featured .film-link {
    color: white;
}

.film-item.featured .film-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.network-badge {
    display: inline-block;
    background: #1E3A8A;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Speaking Section */
.speaking-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.speaking-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.category-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.interview-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.interview-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.interview-item ul {
    list-style: none;
    padding: 0;
}

.interview-item li {
    padding: 0.5rem 0;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.interview-item li:last-child {
    border-bottom: none;
}

.show-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1E3A8A 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.speaking-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #059669;
    font-weight: 500;
    color: #475569;
}

.topic-item i {
    color: #1E3A8A;
    font-size: 1.1rem;
}

/* Media Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.media-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-8px);
}

.media-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E3A8A 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.media-icon i {
    font-size: 2rem;
    color: white;
}

.media-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.media-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Footer */



/* Footer */
.footer {
    background: linear-gradient(135deg, #1E3A8A 0%, #059669 100%);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-info p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Full Width TV Videos Section */
.tv-videos-fullwidth {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tv-videos-fullwidth .tv-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: none;
    width: 100%;
}

.tv-videos-fullwidth .tv-video-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tv-videos-fullwidth .tv-video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A 0%, #059669 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tv-videos-fullwidth .tv-video-item:hover::before {
    opacity: 1;
}

.tv-videos-fullwidth .tv-video-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.15);
}

.tv-videos-fullwidth .tv-video-item h6 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.tv-videos-fullwidth .tv-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 2rem auto;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 350px;
    max-width: 100%;
}

.tv-videos-fullwidth .tv-video-container:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 80px rgba(30, 58, 138, 0.35);
}

.tv-videos-fullwidth .tv-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    background: #f8fafc;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tv-videos-fullwidth .tv-video-container iframe[src] {
    opacity: 1;
}

/* Video loading states */
.tv-video-container.loading::before,
.video-container.loading::before {
    display: block;
}

.tv-video-container.loaded::before,
.video-container.loaded::before {
    display: none;
}

.tv-video-container.error::after,
.video-container.error::after {
    content: 'Video temporarily unavailable';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 2;
}

/* Ensure videos are accessible on all devices */
.tv-video-container,
.video-container {
    -webkit-overflow-scrolling: touch;
}

.tv-video-container iframe,
.video-container iframe,
.tv-videos-fullwidth .tv-video-container iframe {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tv-links {
        gap: 3rem;
        max-width: none;
    }
    
    .tv-video-item {
        padding: 2.5rem;
    }
    
    .tv-video-item h6 {
        font-size: 1.4rem;
    }
    
    .tv-videos-fullwidth {
        padding: 3rem 1.5rem;
    }
    
    .tv-videos-fullwidth .tv-video-item {
        padding: 2.5rem;
        max-width: 800px;
    }
    
    .tv-videos-fullwidth .tv-video-item h6 {
        font-size: 1.6rem;
    }
    
    .tv-videos-fullwidth .tv-video-container {
        min-height: 350px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        justify-items: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    

}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .nav.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .achievement-item,
    .book-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .achievement-year,
    .book-year {
        align-self: center;
    }
    
    .interview-list {
        grid-template-columns: 1fr;
    }
    
    .speaking-topics {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .film-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .tv-links {
        align-items: center;
        justify-content: center;
    }
    
    .media-link {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
        align-self: center;
    }
    
    .media-links {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    
    .tv-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: 100%;
    }
    
    .tv-video-container {
        min-height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .tv-videos-fullwidth {
        padding: 2rem 1rem;
    }
    
    .tv-videos-fullwidth .tv-video-item {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .tv-videos-fullwidth .tv-video-container {
        min-height: 280px;
        margin-bottom: 1.5rem;
    }
    
    .tv-video-item {
        padding: 2.5rem;
        max-width: none;
    }
    
    .tv-video-item h6 {
        font-size: 1.1rem;
    }
    
    .tv-videos-fullwidth {
        padding: 2.5rem 1rem;
    }
    
    .tv-videos-fullwidth .tv-video-item {
        padding: 2rem;
        max-width: none;
    }
    
    .tv-videos-fullwidth .tv-video-item h6 {
        font-size: 1.3rem;
    }
    
    .tv-videos-fullwidth .tv-video-container {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .tv-video-container {
        min-height: 200px;
        margin-bottom: 1rem;
    }
    
    .tv-videos-fullwidth {
        padding: 1.5rem 0.5rem;
    }
    
    .tv-videos-fullwidth .tv-video-item {
        padding: 1.5rem 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .tv-videos-fullwidth .tv-video-container {
        min-height: 220px;
        margin-bottom: 1rem;
    }
    
    .tv-videos-fullwidth .tv-video-item h6 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        width: 180px;
        height: 180px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .achievement-category,
    .book-category,
    .film-item,
    .speaking-category {
        padding: 1.5rem;
    }
    
    .book-item {
        text-align: center;
    }
    
    .book-year {
        align-self: center;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .film-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
    }
    
    .stat {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth scrolling offset for fixed header */
.section {
    scroll-margin-top: 100px;
}