:root {
    --primary-magenta: #cc00cc;
    --dark-bg: #1a1a1a;
    --medium-dark: #3d3d3d;
    --light-purple: #fce7ff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-life-section {
    background: radial-gradient(circle at 75% 50%, #222 0%, #0a0a0a 100%);
    position: relative;
    padding: 100px 0 120px;
    margin-top: 70px;
    overflow: hidden;
}

.decorative-dots {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 4px);
    gap: 8px;
    z-index: 1;
    opacity: 0.6;
}

.decorative-dots.top-right {
    top: 60px;
    right: 40px;
    grid-template-columns: repeat(2, 6px);
}

.decorative-dots.bottom-center {
    bottom: 40px;
    left: 55%;
    grid-template-columns: repeat(8, 6px);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #8b5cf6;
    /* Purple dot */
    border-radius: 50%;
}

.dot.magenta {
    background-color: #ec4899;
}

.hero-title-main {
    font-size: 4.8rem;
    font-weight: 900;
    color: #d600d6;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-subtitle-container {
    margin-bottom: 30px;
}

.hero-subtitle-bold {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: inline-block;
    margin-right: 5px;
}

.hero-description-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: #aaa;
    display: inline;
    line-height: 1.3;
}

.hero-description-highlight {
    color: #d600d6;
    font-weight: 800;
}

.hosted-by {
    font-size: 1rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 500;
}

.signature-text {
    font-family: 'Dancing Script', cursive;
    /* Better handwritten font */
    font-size: 4rem;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1;
    font-weight: 400;
}

.founder-title {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 40px;
    font-weight: 500;
}

.video-frame {
    padding: 10px;
    background: linear-gradient(135deg, #22d3ee 0%, #ec4899 100%);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.video-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.youtube-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.youtube-logo span {
    font-family: 'Arial Narrow', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: black;
    letter-spacing: -1px;
}

.youtube-icon-red {
    background: #FF0000;
    color: white;
    padding: 0px 4px;
    border-radius: 4px;
    margin-right: 4px;
    font-size: 1rem;
    font-weight: 800;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.6);
}

.play-btn-overlay i {
    font-size: 28px;
    color: white;
}

/* Buttons */
/* Buttons */
.btn-primary-magenta {
    background: #d600d6;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-primary-magenta .icon-circle {
    background: white;
    color: #d600d6;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-primary-magenta:hover {
    background: #b300b3;
    transform: translateY(-2px);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 1px solid #555;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* About Section */
.about-section {
    background: #fdf5ff;
    /* Match page background */
    padding: 80px 0 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description-new {
    text-align: center;
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 15px;
}

.feature-card-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card-wrapper:hover {
    transform: translateY(-5px);
}

.feature-card-left {
    background: #fff0ff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    flex-shrink: 0;
    text-align: center;
}

.feature-card-left .icon-box {
    color: #d600d6;
    font-size: 24px;
    margin-bottom: 8px;
}

.feature-card-left span {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}

.feature-card-right {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Episode Section */
.episode-section {
    background: #fdf5ff;
    padding: 60px 0 80px;
}

.episode-video-wrapper {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #d600d6 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(214, 0, 214, 0.1);
}

.episode-video-inner {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    position: relative;
}

.episode-video-inner img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.episode-video-wrapper:hover .episode-video-inner img {
    transform: scale(1.03);
}

.episode-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 25px;
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.episode-play-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.episode-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.1;
}

.episode-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.episode-meta-new {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
}

.episode-text-new {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

.duration-badge {
    display: inline-block;
    background: #333;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.btn-watch-episode {
    background: #d600d6;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-watch-episode:hover {
    background: #b300b3;
    color: white;
    transform: translateY(-2px);
}

.btn-watch-episode .icon-circle {
    background: white;
    color: #d600d6;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-view-all {
    background: transparent;
    color: #333;
    border: 1px solid #aaa;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-view-all:hover {
    background: #f5f5f5;
    border-color: #333;
    color: #000;
}

/* Entrepreneurs Section */
.entrepreneurs-section {
    background: var(--medium-dark);
    padding: 70px 0;
}

.entrepreneur-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.entrepreneur-card-wrapper {
    background: #2b2b2b;
    border-radius: 15px;
    padding: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.entrepreneur-card-wrapper:hover {
    border-color: var(--primary-magenta);
    transform: translateY(-5px);
}

.entrepreneur-card-wrapper img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 15px;
}

.entrepreneur-card-wrapper h6 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.entrepreneur-card-wrapper .role {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.tag-badge {
    background: #404449;
    color: #aaa;
    padding: 5px 14px;
    border-radius: 18px;
    font-size: 0.75rem;
    display: inline-block;
    margin: 2px;
}

.btn-browse {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-browse:hover {
    background: white;
    color: var(--medium-dark);
}

/* Featured Guest Section */
.featured-guest-section {
    background: #fdf5ff;
    padding: 100px 0 60px;
}

.featured-image-wrapper {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #d600d6 100%);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(214, 0, 214, 0.1);
}

.featured-image-inner {
    border-radius: 25px;
    overflow: hidden;
    background: white;
    padding: 10px;
}

.featured-image-inner img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.about-badge {
    display: inline-block;
    background: #444;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
}

.guest-name {
    font-size: 4rem;
    font-weight: 800;
    color: #d600d6;
    /* Vibrant Magenta */
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -1px;
}

.guest-bio {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-learn-more {
    background: #d600d6;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-top: 20px;
}

.btn-learn-more:hover {
    background: #b300b3;
    color: white;
    transform: translateY(-2px);
}

.btn-learn-more .icon-circle {
    background: white;
    color: #d600d6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

/* Bottom CTA Section */
.cta-section {
    background: #fdf5ff;
    padding: 0 0 100px;
}

.guest-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px 60px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.guest-card-content {
    flex: 1;
}

.guest-card-image {
    flex-shrink: 0;
    width: 45%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.businessman-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.businessman-wrapper img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.guest-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.guest-form-description {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.btn-apply-guest {
    background: #d600d6;
    /* Vibrant Magenta */
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-apply-guest:hover {
    background: #b300b3;
    color: white;
    transform: translateY(-2px);
}

.btn-apply-guest .icon-circle {
    background: white;
    color: #d600d6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.businessman-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.businessman-wrapper img {
    width: 140px;
    height: auto;
}

.newsletter-box {
    background: #fff5ff;
    /* Very light pink */
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #f8e1f8;
    height: 100%;
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.newsletter-subtitle {
    display: none;
    /* Removed based on screenshot */
}

.form-label-custom {
    font-weight: 700;
    color: #444;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.form-control-styled {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s;
    width: 100%;
    background: white;
    height: 48px;
}

.form-control-styled:focus {
    border-color: #d600d6;
    box-shadow: 0 0 0 3px rgba(214, 0, 214, 0.1);
    outline: none;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-wrapper label {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    cursor: pointer;
    line-height: 1.2;
}

.btn-submit-newsletter {
    background: #333;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    width: auto;
    min-width: 120px;
}

.btn-submit-newsletter:hover {
    background: #000;
    transform: translateY(-2px);
    color: white;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .hero-title-main {
        font-size: 2.8rem;
    }

    .signature-text {
        font-size: 2.2rem;
    }

    .guest-name {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .episode-title {
        font-size: 1.6rem;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .guest-form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-life-section {
        padding: 50px 0 60px;
    }

    .about-section,
    .episode-section,
    .entrepreneurs-section,
    .featured-guest-section,
    .cta-section {
        padding: 50px 0;
    }

    .hero-title-main {
        font-size: 2.2rem;
    }

    .decorative-dots {
        display: none;
    }

    .about-badge {
        right: 10px;
        top: 20px;
    }

    .businessman-wrapper img {
        width: 180px;
    }

    .guest-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .guest-card-image {
        order: 2;
        margin-top: 30px;
        width: 100%;
        justify-content: center;
    }

    .guest-card-content {
        order: 1;
    }

    .guest-form-description {
        max-width: 100%;
    }
}
