/* ═══════════════════════════════════════════════════════════
   FOODIE ADVENTURES — Pixel-Perfect CSS
   Colors: #FFD700, #000000, #111111, #FFFFFF, #AAAAAA, #666666
   Font: Montserrat (400, 500, 600, 700, 800, 900)
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    height: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 0;
    flex-shrink: 0;
}

.logo-foodie {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-adventures {
    font-size: 10px;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 12px;
    font-weight: 600;
    color: #AAAAAA;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFD700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon {
    color: #FFFFFF;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}

.social-icon:hover {
    color: #FFD700;
    transform: scale(1.15);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.btn-subscribe {
    background: #FFD700;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
}

.btn-subscribe:hover {
    background: #e6c200;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 560px;
    padding-top: 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0800 0%, #1a1008 30%, #0d0800 60%, #1a0a00 100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255,180,50,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,100,0,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight-yellow {
    color: #FFD700;
    font-size: 56px;
}

.hero-subtext {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFD700;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s, transform 0.1s;
}

.btn-outline:hover {
    border-color: #FFFFFF;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-icon.youtube-icon { color: #FF0000; }
.stat-icon.tiktok-icon { color: #FFFFFF; }
.stat-icon.instagram-icon { color: #FFFFFF; }

.stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #AAAAAA;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Media (Right) */
.hero-media {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 300px;
    height: 420px;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.hero-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.hero-curved-text {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
    color: #FFD700;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

.hero-float-card {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 200px;
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transform: rotate(2deg);
    transition: transform 0.3s;
    z-index: 2;
}

.hero-float-card:hover {
    transform: rotate(0deg) scale(1.03);
}

.float-card-thumb {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.float-card-thumb svg {
    width: 100%;
    height: 100%;
}

.float-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.float-card-info {
    padding: 10px 12px;
}

.float-card-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 4px;
}

.float-card-meta {
    display: block;
    font-size: 10px;
    color: #666666;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   CREATOR INTRO BAND
   ═══════════════════════════════════════════════════════════ */
.intro-band {
    background: #111111;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.intro-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.intro-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.intro-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #FFD700;
}

.intro-avatar svg {
    width: 100%;
    height: 100%;
}

.intro-text-block {
    min-width: 0;
}

.intro-greeting {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.hey-im {
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.foodie-name {
    font-size: 22px;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.foodie-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
}

.intro-desc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 400px;
}

.intro-features {
    display: flex;
    gap: 36px;
    flex-shrink: 0;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.feature-desc {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666666;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTENT LAYOUT
   ═══════════════════════════════════════════════════════════ */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.content-area {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.section-block {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    font-size: 13px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.view-all:hover {
    color: #e6c200;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO GRID
   ═══════════════════════════════════════════════════════════ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.video-card {
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.08);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1206;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
}

.thumb-placeholder svg {
    width: 100%;
    height: 100%;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.85);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn-large {
    color: #FFFFFF;
    font-size: 36px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 12px 14px 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    padding: 0 14px 14px;
}

/* ═══════════════════════════════════════════════════════════
   RESTAURANT GRID
   ═══════════════════════════════════════════════════════════ */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.restaurant-card {
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.08);
}

.restaurant-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1206;
}

.restaurant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #000000;
    font-size: 14px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.restaurant-name {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 12px 14px 4px;
    line-height: 1.3;
}

.restaurant-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    padding: 0 14px 14px;
}

.pin-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: #666666;
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.sidebar-card {
    background: #111111;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.find-me-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.find-me-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.find-me-item:first-of-type {
    padding-top: 0;
}

.find-me-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.find-me-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.find-me-icon svg {
    width: 20px;
    height: 20px;
}

.find-me-icon.youtube-icon { color: #FF0000; }
.find-me-icon.tiktok-icon { color: #FFFFFF; }
.find-me-icon.instagram-icon { color: #E4405F; }

.find-me-platform {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.find-me-count {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666666;
}

.btn-yt-subscribe,
.btn-tt-follow,
.btn-ig-follow {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s, transform 0.1s;
    flex-shrink: 0;
}

.btn-yt-subscribe {
    background: #FF0000;
    color: #FFFFFF;
}

.btn-tt-follow {
    background: #111111;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ig-follow {
    background: #1877F2;
    color: #FFFFFF;
}

.btn-yt-subscribe:hover,
.btn-tt-follow:hover,
.btn-ig-follow:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ── Merch Card ── */
.merch-card {
    background: #FFD700;
    padding: 0;
    overflow: hidden;
}

.merch-banner {
    background: #FFD700;
    color: #000000;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px 8px;
    text-align: center;
}

.merch-images {
    padding: 8px 20px 16px;
    text-align: center;
}

.merch-placeholder {
    display: flex;
    justify-content: center;
}

.merch-placeholder svg {
    width: 180px;
    height: 130px;
}

.btn-shop-now {
    display: block;
    background: #000000;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    transition: background 0.2s;
}

.btn-shop-now:hover {
    background: #222222;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 20px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px 30px;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
}

.footer-brand .logo {
    align-items: flex-start;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-brand .social-icons {
    gap: 12px;
}

.footer-brand .social-icon {
    width: 20px;
    height: 20px;
}

.footer-brand .social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 4px;
}

.newsletter-form input {
    flex: 1;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 10px 14px;
    font-size: 13px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
    color: #555555;
}

.newsletter-form input:focus {
    border-color: #FFD700;
}

.btn-newsletter {
    background: #FFD700;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: #e6c200;
}

/* ── Footer Bottom ── */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom span {
    font-size: 12px;
    font-weight: 400;
    color: #555555;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    font-weight: 400;
    color: #555555;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

/* ═══════════════════════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════════════════════ */
.flash-messages {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-msg {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.flash-msg.success { background: #22c55e; color: #000; }
.flash-msg.error { background: #ef4444; color: #fff; }
.flash-msg.info { background: #3b82f6; color: #fff; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ── Fade-in animation ── */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-media { width: 100%; justify-content: center; margin-top: 20px; }
    .intro-band-inner { flex-direction: column; text-align: center; }
    .intro-left { flex-direction: column; align-items: center; }
    .intro-greeting { justify-content: center; }
    .intro-desc { text-align: center; }
    .intro-features { flex-wrap: wrap; justify-content: center; }
    .main-content { flex-direction: column; }
    .sidebar { width: 100%; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; }
    .main-nav { display: none; }
    .hero-headline { font-size: 32px; }
    .highlight-yellow { font-size: 38px; }
    .hero-inner { padding: 40px 20px 30px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .intro-features { flex-direction: column; align-items: center; gap: 16px; }
}
/* ═══════════════════════════════════════════════════════════
   DOYAN LAHAP — Additional Styles
   Logo, Banner, Merch, Mobile, Dynamic Elements
   ═══════════════════════════════════════════════════════════ */

/* ── Logo Image ── */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-footer {
    height: 50px;
}

/* ── Mobile Menu Toggle ── */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
}

/* ── Hero Banner Background ── */
.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFD700;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ── Hero Stats ── */
.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.youtube-icon { color: #FF0000; }
.tiktok-icon { color: #fff; }
.instagram-icon { color: #E4405F; }

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Intro Band ── */
.intro-band {
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
}

.intro-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.intro-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD700;
    flex-shrink: 0;
}

.intro-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text-block {
    flex: 1;
}

.intro-greeting {
    margin-bottom: 8px;
}

.hey-im {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.foodie-name {
    font-size: 20px;
    font-weight: 900;
    color: #FFD700;
    margin-left: 8px;
}

.intro-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.intro-features {
    display: flex;
    gap: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 28px;
}

.feature-title {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-desc {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

/* ── Main Content ── */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 30px;
}

.content-area {
    flex: 1;
}

.section-block {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-all {
    font-size: 12px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.view-all:hover {
    color: #fff;
}

/* ── Video Grid ── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,215,0,0.08);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1206;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.video-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.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn-large {
    font-size: 40px;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 12px 14px 4px;
    line-height: 1.3;
}

.video-meta {
    font-size: 12px;
    color: #666;
    padding: 0 14px 14px;
}

/* ── Restaurant Grid ── */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.restaurant-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,215,0,0.08);
}

.restaurant-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1206;
}

.restaurant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-restaurant {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-initials {
    font-size: 28px;
    font-weight: 900;
    color: #FFD700;
    letter-spacing: 2px;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #000;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.restaurant-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    padding: 12px 14px 4px;
}

.restaurant-location {
    font-size: 12px;
    color: #888;
    padding: 0 14px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pin-icon {
    width: 14px;
    height: 14px;
    color: #FFD700;
}

/* ── Sidebar ── */
.sidebar {
    width: 340px;
    flex-shrink: 0;
}

.sidebar-card {
    background: #111;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.find-me-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.find-me-item:last-child {
    border-bottom: none;
}

.find-me-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.find-me-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.find-me-icon svg {
    width: 20px;
    height: 20px;
}

.find-me-platform {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.find-me-count {
    display: block;
    font-size: 11px;
    color: #888;
}

.btn-yt-subscribe,
.btn-tt-follow,
.btn-ig-follow {
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-yt-subscribe {
    background: #FF0000;
    color: #fff;
}

.btn-tt-follow {
    background: #fff;
    color: #000;
}

.btn-ig-follow {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

/* ── Merchandise Section ── */
.merch-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.merch-inner {
    width: 100%;
}

.merch-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
}

.merch-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.merch-overlay {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.merch-title {
    font-size: 36px;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.merch-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.btn-merch {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-merch:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

/* ── Newsletter Section ── */
.newsletter-section {
    padding: 60px 40px;
    background: #111;
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FFD700;
}

.btn-newsletter {
    background: #FFD700;
    color: #000;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: #fff;
}

/* ── Footer ── */
.footer {
    background: #0a0a0a;
    padding: 60px 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #888;
    transition: all 0.2s;
}

.footer-social .social-icon:hover {
    background: #FFD700;
    color: #000;
}

.footer-social .social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #FFD700;
}

/* ── Subscribe Button ── */
.btn-subscribe {
    display: inline-block;
    background: #FF0000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-subscribe:hover {
    background: #cc0000;
}

/* ── Header Social Icons ── */
.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    color: #888;
    transition: color 0.2s;
}

.social-icon:hover {
    color: #FFD700;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .intro-band-inner {
        flex-direction: column;
        gap: 30px;
    }
    .intro-features {
        flex-wrap: wrap;
    }
    .main-content {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .video-grid,
    .restaurant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.active {
        display: flex;
    }
    .header-right {
        display: none;
    }
    .hero-headline {
        font-size: 28px;
    }
    .hero-inner {
        padding: 80px 20px 40px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .intro-left {
        flex-direction: column;
        text-align: center;
    }
    .intro-features {
        flex-direction: column;
    }
    .video-grid,
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
    .main-content {
        padding: 20px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .merch-section {
        padding: 30px 20px;
    }
    .merch-title {
        font-size: 24px;
    }
    .newsletter-form {
        flex-direction: column;
    }
}


/* ═══════════════════════════════════════════════
   POLISH — UI/UX Fixes
   ═══════════════════════════════════════════════ */

/* ── Fade-in animation ── */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(20px);
}
.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ── Mobile menu overlay ── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.mobile-nav-overlay.active {
    display: block;
}

/* ── Mobile menu close button ── */
.mobile-menu-close {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    top: 10px;
    right: 20px;
}

/* ── Video card embed container ── */
.video-thumb iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    border-radius: 0;
}

/* ── Video card play button always visible on mobile ── */
@media (max-width: 768px) {
    .video-overlay {
        opacity: 1;
        background: rgba(0,0,0,0.15);
    }
    .play-btn-large {
        font-size: 32px;
    }
}

/* ── Footer bottom links (now spans) ── */
.footer-bottom-links span {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ── Merch button disabled state ── */
.btn-merch[style*="opacity"] {
    pointer-events: none;
    user-select: none;
}

/* ── Better mobile hero ── */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 24px;
        letter-spacing: 1px;
    }
    .hero-subtext {
        font-size: 14px;
    }
    .btn-primary, .btn-outline {
        font-size: 12px;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }
    .hero-buttons {
        gap: 10px;
    }
    .stat-item {
        gap: 8px;
    }
    .stat-number {
        font-size: 16px;
    }
    .stat-label {
        font-size: 9px;
    }
    .section-title {
        font-size: 18px;
    }
    .video-title {
        font-size: 13px;
    }
    .restaurant-name {
        font-size: 14px;
    }
    .newsletter-section {
        padding: 40px 20px;
    }
    .merch-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .merch-subtitle {
        font-size: 14px;
    }
    .merch-overlay {
        padding: 40px 20px;
    }
}

/* ── Tablet (481-768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-headline {
        font-size: 30px;
    }
    .video-grid,
    .restaurant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ── Desktop small (769-1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-grid,
    .restaurant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .header-inner {
        padding: 0 20px;
    }
    .main-nav {
        gap: 16px;
    }
    .nav-link {
        font-size: 11px;
    }
}

/* ── Desktop large (1025+) ── */
@media (min-width: 1025px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .restaurant-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Smooth scroll offset for fixed header ── */
html {
    scroll-padding-top: 70px;
}

/* ── Better focus states for accessibility ── */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* ── Loading state for video cards ── */
.video-card.loading .video-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-card.loading .video-thumb::after {
    content: 'Loading...';
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
}

/* ── Better newsletter input on mobile ── */
@media (max-width: 768px) {
    .newsletter-form input {
        padding: 12px 16px;
        font-size: 16px; /* prevents iOS zoom */
    }
    .btn-newsletter {
        padding: 12px 24px;
        width: 100%;
    }
}

/* ── Intro band avatar ── */
.intro-avatar-img {
    background: #1a1206;
}

/* ── Social icons in header mobile ── */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
    }
    .logo-img {
        height: 36px;
    }
}

/* ── Flash messages ── */
.flash-msg {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 10000;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
    max-width: 300px;
}
.flash-msg.success {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
}
.flash-msg.error {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}
.flash-msg.info {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    border: 1px solid rgba(59,130,246,0.3);
}

/* ── Video card cursor pointer ── */
.video-card {
    cursor: pointer;
}

/* ── Better hover states for touch devices ── */
@media (hover: none) {
    .video-card:hover,
    .restaurant-card:hover {
        transform: none;
        box-shadow: none;
    }
    .video-card:active,
    .restaurant-card:active {
        transform: scale(0.98);
    }
}
/* ═══════════════════════════════════════════════════════════
   REDESIGN ADDITIONS — Hero Video Card + Sidebar Merch
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Layout: Content Left + Featured Video Right ── */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 40px;
}

.hero-layout .hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-right {
    flex-shrink: 0;
    width: 380px;
    position: relative;
}

/* ── Hero Featured Video Card ── */
.hero-featured-video {
    background: #111111;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-featured-video:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255,215,0,0.1);
}

.hero-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.hero-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-video-thumb:hover img {
    transform: scale(1.05);
}

.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,215,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-video-thumb:hover .hero-video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #FFD700;
}

.hero-video-info {
    padding: 16px 18px;
}

.hero-video-title {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-video-meta {
    font-size: 12px;
    color: #888888;
    font-weight: 400;
}

/* ── Handwritten Arrow "New videos every week!" ── */
.hero-new-videos-arrow {
    position: relative;
    margin-top: 16px;
    text-align: center;
    height: 60px;
}

.arrow-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.arrow-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Caveat', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #FFD700;
    white-space: nowrap;
}

/* ── Sidebar Merch Card ── */
.merch-sidebar-card {
    background: #111111;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.15);
    position: relative;
}

.merch-sidebar-inner {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.merch-sidebar-badge {
    display: inline-block;
    background: #FFD700;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.merch-sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.3;
}

.btn-merch-sidebar {
    display: inline-block;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-merch-sidebar:hover {
    background: #FFD700;
    color: #000;
}

.merch-sidebar-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── Responsive: Hero Layout ── */
@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 90px 30px 30px;
        gap: 30px;
    }
    .hero-layout .hero-content {
        max-width: 100%;
    }
    .hero-right {
        width: 100%;
        max-width: 400px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-layout {
        padding: 80px 20px 20px;
        gap: 24px;
    }
    .hero-right {
        max-width: 340px;
    }
    .hero-video-title {
        font-size: 13px;
    }
    .arrow-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-layout {
        padding: 70px 16px 16px;
    }
    .hero-right {
        max-width: 300px;
    }
    .hero-new-videos-arrow {
        display: none;
    }
}
