/* ===========================
   HUSTLE UP — INTERVIEWS PAGE
   =========================== */

:root {
    --bg-color: #1C1C1C;
    --text-color: #FFFFFF;
    --accent-color: #DDF247;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-title: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-speed: 0.3s;
    --radius-lg: 20px;
    --radius-md: 12px;
}

/* ===========================
   LANGUAGE SWITCHER
   =========================== */
.top-bar {
    position: fixed;
    top: 70px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    z-index: 999;
    flex-wrap: wrap;
    max-width: calc(100% - 40px);
}

.lang-switcher {
    position: relative;
    z-index: 100;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 90px;
    justify-content: space-between;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(37, 38, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-menu.active {
    display: flex;
}

.lang-option {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option.selected {
    color: var(--accent-color);
    font-weight: 700;
    background: rgba(221, 242, 71, 0.1);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.lang-arrow {
    font-size: 10px;
}

/* Access Button (Login / Download) */
.access-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap;
}

.access-btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(221, 242, 71, 0.3);
    transform: translateY(-2px);
}

/* Store Modal */
.store-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.store-modal-overlay.active {
    display: flex;
}

.store-modal {
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px 30px;
    max-width: 360px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.store-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.store-modal-close:hover {
    color: var(--text-color);
}

.store-modal-title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 24px;
}

.store-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.store-modal-btn.apple {
    background: var(--text-color);
    color: var(--bg-color);
}

.store-modal-btn.apple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.store-modal-btn.google {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.store-modal-btn.google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 242, 71, 0.3);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===========================
   NAVIGATION BAR
   =========================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 28, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand img {
    height: 30px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: color var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all var(--transition-speed);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 140px 20px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(221, 242, 71, 0.1);
    border: 1px solid rgba(221, 242, 71, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-family: var(--font-title);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: var(--accent-color);
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===========================
   FILTER TAGS
   =========================== */
.filter-bar {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.6s ease-out 0.2s backwards;
}

.filter-tag {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-speed);
    -webkit-user-select: none;
    user-select: none;
}

.filter-tag:hover {
    background: rgba(221, 242, 71, 0.1);
    border-color: rgba(221, 242, 71, 0.3);
    color: var(--accent-color);
}

.filter-tag.active {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    font-weight: 700;
}

/* ===========================
   INTERVIEW GRID
   =========================== */
.interviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

/* ===========================
   INTERVIEW CARD
   =========================== */
.interview-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: slideUp 0.6s ease-out backwards;
}

.interview-card:nth-child(1) {
    animation-delay: 0.1s;
}

.interview-card:nth-child(2) {
    animation-delay: 0.15s;
}

.interview-card:nth-child(3) {
    animation-delay: 0.2s;
}

.interview-card:nth-child(4) {
    animation-delay: 0.25s;
}

.interview-card:nth-child(5) {
    animation-delay: 0.3s;
}

.interview-card:nth-child(6) {
    animation-delay: 0.35s;
}

.interview-card:nth-child(7) {
    animation-delay: 0.4s;
}

.interview-card:nth-child(8) {
    animation-delay: 0.45s;
}

.interview-card:nth-child(9) {
    animation-delay: 0.5s;
}

.interview-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(221, 242, 71, 0.08);
}

/* Video Thumbnail Container */
.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    overflow: hidden;
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.interview-card:hover .video-thumbnail {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.interview-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    box-shadow: 0 4px 25px rgba(221, 242, 71, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.interview-card:hover .play-btn {
    transform: scale(1.15);
    box-shadow: 0 6px 35px rgba(221, 242, 71, 0.6);
}

/* Language Flag Badge */
.lang-flag-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 8px;
    padding: 5px 7px;
    z-index: 2;
    pointer-events: none;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Card Content */
.card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(221, 242, 71, 0.12);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-tag svg {
    width: 12px;
    height: 12px;
}

.card-duration {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.card-title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-color);
}

.card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-guest {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guest-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #a8b834);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--bg-color);
    flex-shrink: 0;
}

.guest-info {
    display: flex;
    flex-direction: column;
}

.guest-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
}

.guest-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* ===========================
   YOUTUBE CTA BANNER
   =========================== */
.yt-cta {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.yt-cta-inner {
    background: linear-gradient(135deg, rgba(221, 242, 71, 0.1), rgba(221, 242, 71, 0.03));
    border: 1px solid rgba(221, 242, 71, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.yt-cta-text h3 {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.yt-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.yt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF0000;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.yt-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.yt-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   MOBILE NAV
   =========================== */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #1A1A1A;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s ease-in-out;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    /* Burger Animation */
    .burger-menu.toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger-menu.toggle span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ===========================
   TABLET
   =========================== */
@media (max-width: 768px) {
    .top-bar {
        left: 0;
        right: 0;
        justify-content: center;
        gap: 10px;
        max-width: 100%;
        padding: 0 15px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-width: unset;
    }

    .access-btn {
        padding: 6px 14px;
        font-size: 11px;
    }

    .hero {
        padding: 130px 20px 40px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .interviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .yt-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 480px) {
    .hero {
        padding: 110px 16px 30px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .hero p {
        font-size: 14px;
    }

    .filter-bar {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .interviews-grid {
        padding: 0 16px 60px;
    }

    .card-info {
        padding: 16px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }

    .yt-cta {
        padding: 0 16px;
        margin-bottom: 60px;
    }

    .yt-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ===========================
   SMALL PHONES
   =========================== */
@media (max-width: 340px) {
    .hero h1 {
        font-size: 24px;
    }

    .filter-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    .interviews-grid {
        grid-template-columns: 1fr;
    }
}