.host-profile-body {
    --bg-color: #030303;
    --surface-color: rgba(20, 20, 20, 0.65);
    --surface-border: rgba(212, 175, 55, 0.15);
    --surface-hover: rgba(35, 35, 35, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #e5c05e 0%, #a8811d 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    background-color: var(--bg-color) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body) !important;
    line-height: 1.6 !important;
    position: relative;
    overflow-x: hidden !important;
    padding: 30px 0 !important;
    font-size: 15px !important;
}

/* Background Glowing Orbs */
.host-profile-body .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.3;
    animation: hostFloat 10s ease-in-out infinite;
}

.host-profile-body .orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.15);
    top: 5%;
    left: -100px;
}

.host-profile-body .orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.1);
    bottom: 5%;
    right: -50px;
    animation-delay: -5s;
}

@keyframes hostFloat {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(30px) scale(1.05);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

.host-profile-body .profile-container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.host-profile-body .grid-wrapper,
.host-profile-body .desktop-left,
.host-profile-body .desktop-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Animations */
@keyframes hostFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.host-profile-body .animate-up {
    animation: hostFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.host-profile-body .delay-1 {
    animation-delay: 0.1s;
}
.host-profile-body .delay-2 {
    animation-delay: 0.2s;
}
.host-profile-body .delay-3 {
    animation-delay: 0.3s;
}
.host-profile-body .delay-4 {
    animation-delay: 0.4s;
}
.host-profile-body .delay-5 {
    animation-delay: 0.5s;
}
.host-profile-body .delay-6 {
    animation-delay: 0.6s;
}

/* Hero Section */
.host-profile-body .hero {
    text-align: center;
}

.host-profile-body .headshot-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 10%;
    padding: 4px;
    background: var(--gold-gradient);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.host-profile-body .headshot {
    width: 100%;
    height: 110%;
    object-fit: cover;
    border-radius: 10%;
    border: 3px solid #030303;
}

.host-profile-body .name {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.host-profile-body .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.host-profile-body .gold-accent {
    color: var(--gold-primary);
    margin: 0 6px;
    opacity: 0.8;
}

.host-profile-body .tagline {
    font-size: 15px;
    font-style: italic;
    color: var(--gold-light);
    opacity: 0.9;
    font-weight: 300;
    max-width: 100%;
    margin: 0 auto;
}

/* Bio Section */
.host-profile-body .bio {
    background: var(--surface-color);
    border: 1px solid var(--surface-border) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.host-profile-body .bio p {
    margin-bottom: 14px;
    font-size: 15px;
    color: #e6e6e6;
}

.host-profile-body .bio p:last-child {
    margin-bottom: 0;
}

/* Quick Links / Featured */
.host-profile-body .featured-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid var(--gold-primary) !important;
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.host-profile-body .featured-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.host-profile-body .featured-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.host-profile-body .badge {
    align-self: flex-start;
    background: var(--gold-gradient);
    color: #000 !important;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.host-profile-body .featured-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.host-profile-body .featured-content p {
    font-size: 14px;
    color: var(--gold-light);
    opacity: 0.8;
    margin: 0;
}

.host-profile-body .featured-link i {
    font-size: 1.2rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.host-profile-body .featured-link:hover i {
    transform: translateX(4px);
}

/* Social Links */
.host-profile-body .social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.host-profile-body .social-btn {
    display: flex;
    align-items: center;
    position: relative;
    padding: 18px 24px;
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    border-radius: 14px;
    color: var(--text-primary) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.host-profile-body .social-btn i {
    font-size: 1.3rem;
    color: var(--text-primary);
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.host-profile-body .social-btn span {
    margin-left: 16px;
    position: relative;
    z-index: 1;
}

.host-profile-body .social-btn:hover {
    background: var(--surface-hover);
    border-color: rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.host-profile-body .social-btn:hover i {
    color: var(--gold-primary);
    transform: scale(1.15);
}

/* Podcast Section */
.host-profile-body .podcast {
    position: relative;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--surface-border) !important;
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.host-profile-body .podcast:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.host-profile-body .podcast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.host-profile-body .podcast-layout {
    display: flex;
    align-items: center;
    gap: 24px;
}

.host-profile-body .podcast-img {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.host-profile-body .podcast-content {
    flex: 1;
    text-align: left;
}

.host-profile-body .podcast-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.host-profile-body .podcast-content p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* As Featured In */
.host-profile-body .featured-in {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.host-profile-body .featured-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.host-profile-body .featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #888;
    font-size: 14px;
}

.host-profile-body .dot {
    color: var(--gold-primary);
    opacity: 0.5;
}

/* Buttons */
.host-profile-body .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.host-profile-body .primary-btn {
    background: var(--gold-gradient);
    color: #000 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    padding: 12px 24px;
    font-size: 13px;
}

.host-profile-body .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.host-profile-body .outline-btn {
    background: transparent;
    border: 2px solid var(--gold-primary) !important;
    color: var(--gold-primary) !important;
}

.host-profile-body .outline-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

/* Stats Row */
.host-profile-body .stats-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.host-profile-body .stat-box {
    flex: 1;
    background: var(--surface-color);
    border: 1px solid var(--surface-border) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.host-profile-body .stat-num {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-primary);
}

.host-profile-body .stat-label {
    font-size: 11px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .host-profile-body .profile-container {
        padding: 0 20px;
    }

    .host-profile-body .name {
        font-size: 28px;
    }

    .host-profile-body .title {
        font-size: 14px;
    }

    .host-profile-body .headshot-wrapper {
        width: 120px;
        height: 120px;
    }

    .host-profile-body .podcast-layout {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .host-profile-body .featured-logos {
        flex-direction: column;
        gap: 8px;
    }

    .host-profile-body .dot {
        display: none;
    }
}

/* Desktop Layout */
@media (min-width: 900px) {
    .host-profile-body .profile-container {
        max-width: 97%;
        padding: 0 1.25rem;
    }

    .host-profile-body .grid-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        grid-template-areas: "left right";
        gap: 60px;
        align-items: start;
    }

    .host-profile-body .desktop-left {
        grid-area: left;
        position: sticky;
        top: 0;
    }

    .host-profile-body .desktop-right {
        grid-area: right;
    }
}
