/*
 * video-select-finder.com - Screen Accurate Style (Dark Enterprise)
 * -------------------------------------------------------
 * スクリーンショットに基づいた完全再現デザイン
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Outfit:wght@400;700;900&display=swap');

:root {
    --accent:      #06b6d4;  /* Cyan */
    --accent-dim:  #06b6d433;
    --bg-main:     #020617;  
    --bg-card:     #0f172a / 0.5; /* 半透明のカード背景 */
    --bg-elevated: #1e293b;
    --border:      rgba(255, 255, 255, 0.05);
    --text-primary:#f1f5f9;
    --text-muted:  #94a3b8;
    --font-main:   'Noto Sans JP', sans-serif;
    --font-num:    'Outfit', sans-serif;
}

/* =====================================================
   基本・リセット
   ===================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
.container { 
    max-width: 1240px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
    box-sizing: border-box; 
    position: relative;
}

/* =====================================================
   ヒーローセクション (巨大ロゴ & 背景グラデ)
   ===================================================== */
.portal-hero {
    position: relative;
    padding: 6rem 0 3rem;
    text-align: center;
    z-index: 10;
}
/* 背景のぼかしグラデーション */
.portal-hero::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: -1;
}

.huge-logo {
    font-family: var(--font-num);
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .huge-logo { font-size: 3rem; }
}

/* =====================================================
   検索フォーム & ジャンルチップ
   ===================================================== */
.search-form-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}
.search-wrapper {
    display: flex;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem;
    padding: 4px;
}
.search-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 1.5rem;
    font-size: 0.9rem;
}
.search-wrapper button {
    background: var(--accent);
    color: #000;
    font-weight: 900;
    padding: 1rem 2.5rem;
    border-radius: 1.25rem;
    border: none;
    cursor: pointer;
}

.genre-chips {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.genre-chip {
    padding: 0.5rem 1.2rem;
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.genre-chip:hover { border-color: var(--accent); color: #fff; }

/* =====================================================
   系列サイト (Sister Sites) & ナビゲーション
   ===================================================== */
.sister-header {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.15em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.sister-header::before { content: ""; width: 8px; height: 8px; background: var(--accent); }

.sister-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-bottom: 5rem;
}
.sister-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 1.5rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sister-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent); 
    background: #1e293b;
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.3);
}
.sister-card-icon { font-size: 1.8rem; margin-bottom: 0.2rem; }
.sister-card-name { font-size: 0.75rem; font-weight: 800; color: #fff; margin-bottom: 0.1rem; }
.sister-card-catch { font-size: 0.6rem; font-weight: 900; opacity: 1; }

/* ページ上部ナビゲーションボタン */
.sister-nav { margin-bottom: 2.5rem; }
.sister-nav-list {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}
.sister-nav-list::-webkit-scrollbar { display: none; }

.sister-nav-link {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 9999px;
    white-space: nowrap;
    color: var(--text-muted);
    transition: all 0.3s;
}
.sister-nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.sister-nav-link.is-active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-dim);
}

@media (max-width: 900px) {
    .sister-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================
   セクションタイトル
   ===================================================== */
.section-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section-title::before {
    content: ""; display: inline-block; width: 6px; height: 32px; background: var(--accent); border-radius: 3px;
}

/* =====================================================
   動画グリッド & カード
   ===================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 大きめデスクトップで5列にしカードを縮小 */
    gap: 1.25rem;
    margin: 2rem 0;
}
@media (max-width: 1200px) {
    .video-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
@media (max-width: 800px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (max-width: 500px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

.video-card { 
    display: flex; flex-direction: column; 
    background: rgba(15, 23, 42, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 1.5rem; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.video-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--accent); 
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6); 
    background: rgba(30, 41, 59, 0.6);
}

.thumbnail-wrapper { 
    position: relative; 
    width: 100%;
    aspect-ratio: 3 / 4; /* Portrait jacket focus */
    background: #000; 
    overflow: hidden; 
}
.thumbnail-link { display: block; width: 100%; height: 100%; }
.thumbnail-img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    transition: transform 1.2s ease; 
    filter: brightness(0.8);
}
.video-card:hover .thumbnail-img { 
    transform: scale(1.1); 
    filter: brightness(1);
}

.card-badges { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 10; }
.badge-content-id { background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); color: var(--accent); font-size: 0.6rem; font-weight: 900; padding: 0.2rem 0.6rem; border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.1); }

.sample-badge { 
    position: absolute; bottom: 0.75rem; right: 0.75rem; background: rgba(8,145,178,0.9); 
    color: #fff; font-size: 0.55rem; font-weight: 900; padding: 0.2rem 0.6rem; border-radius: 0.5rem; z-index: 10;
    text-transform: uppercase; letter-spacing: 0.05em; pointer-events: none;
}
.thumbnail-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, #020617 0%, transparent 50%); opacity: 0.6; pointer-events: none; }

.card-content { padding: 1.25rem; flex-grow: 1; display: flex; flex-direction: column; box-sizing: border-box; }
.card-title { font-size: 0.85rem; font-weight: 800; color: #f1f5f9; line-height: 1.4; height: 2.8em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical; margin-bottom: 1rem; transition: color 0.3s; }
.video-card:hover .card-title { color: var(--accent); }

.card-genres { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; height: 1.5rem; overflow: hidden; }
.card-genre-tag { font-size: 0.6rem; background: #1e293b; color: #64748b; padding: 0.2rem 0.5rem; border-radius: 0.4rem; transition: all 0.2s; text-decoration: none; font-weight: 700; }
.card-genre-tag:hover { color: var(--accent); background: #334155; }

.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }
.card-actress-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; overflow: hidden; }
.actress-avatar { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: #1e293b; color: #64748b; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; font-weight: 800; }
.actress-name { font-size: 0.7rem; color: #64748b; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 80px; transition: color 0.3s; }
.card-actress-link:hover .actress-name { color: var(--accent); }
.card-actress-link:hover .actress-avatar { border-color: var(--accent); color: var(--accent); }

.card-cta { display: flex; align-items: center; gap: 0.25rem; font-size: 0.65rem; font-weight: 900; color: var(--accent); text-decoration: none; text-transform: uppercase; }
.card-cta svg { width: 0.75rem; height: 0.75rem; transition: transform 0.3s; }
.card-cta:hover svg { transform: translateX(2px); }

/* サムネイル & バッジ */
.thumb-container {
    position: relative;
    aspect-ratio: 147 / 100;
    overflow: hidden;
}
.thumb-container img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.badge-cid {
    position: absolute;
    top: 8px; left: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2px 6px;
    font-size: 10px;
    font-family: var(--font-num);
    border-radius: 4px;
}
.badge-sample {
    position: absolute;
    bottom: 8px; right: 8px;
    background: var(--accent);
    color: #000;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 900;
    border-radius: 4px;
}

.video-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.video-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

/* ハッシュタグ */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.video-tag {
    background: #1e293b;
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
}

/* カードフッター (女優 & 詳細へ) */
.card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.actress-info { display: flex; align-items: center; gap: 0.5rem; }
.actress-avatar {
    width: 24px; height: 24px;
    background: #1e293b;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 900;
}
.actress-name { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; }

.view-detail {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--accent);
}

/* =====================================================
   スマホ表示 (2カラム)
   ===================================================== */
@media (max-width: 768px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .video-info { padding: 0.75rem; }
    .video-title { font-size: 0.75rem; }
    .video-tag { font-size: 0.6rem; padding: 1px 5px; }
    .card-footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .view-detail { align-self: flex-end; }
}

/* =====================================================
   Rich UI Components (Added for Migration)
   ===================================================== */

/* Home Genre Menu */
.home-genre-menu { margin-top: 2rem; position: relative; }
.genre-nav-scroll { width: 100%; padding-bottom: 2rem; }
.genre-nav-inner { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 100%; margin: 0 auto; }
.genre-chip-btn { 
    display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.4rem; 
    background: #0f172a; border: 1px solid #1e293b; color: #94a3b8; 
    border-radius: 999px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.genre-chip-btn:hover { color: #fff; border-color: var(--accent); background: #1e293b; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.genre-chip-btn.active { background: #1e293b; color: var(--accent); border-color: var(--accent); }
.genre-chip-btn.more-btn { background: rgba(6, 182, 212, 0.1); color: var(--accent); border-color: rgba(6, 182, 212, 0.2); }

.genre-dropdown-overlay { 
    position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%); 
    width: 600px; max-width: 95vw; background: #020617; border: 1px solid #1e293b; 
    border-radius: 1.5rem; padding: 2rem; z-index: 1000; display: none; 
    box-shadow: 0 40px 80px -10px rgba(0,0,0,0.9);
    animation: fadeInScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes fadeInScale {
    from { opacity: 0; transform: translateX(-50%) translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.genre-dropdown-overlay.is-open { display: block; }
.dropdown-header { color: var(--accent); font-weight: 900; font-size: 0.8rem; margin-bottom: 1.5rem; border-bottom: 1px solid #1e293b; padding-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.dropdown-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; max-height: 400px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #1e293b transparent; }
.dropdown-grid::-webkit-scrollbar { width: 4px; }
.dropdown-grid::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }
.dropdown-item { padding: 0.45rem 1rem; background: #0f172a / 0.8; color: #94a3b8; font-size: 0.7rem; border-radius: 0.6rem; border: 1px solid transparent; transition: all 0.2s; font-weight: 700; }
.dropdown-item:hover { background: #1e293b; color: #fff; border-color: var(--accent); }

/* Sister Sites Section */
.sister-grid-scroll { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
.sister-card-rich { 
    background: rgba(15,23,42,0.4); border: 1px solid rgba(255,255,255,0.05); 
    padding: 1.75rem 0.5rem; border-radius: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden;
    backdrop-filter: blur(8px);
}
.sister-card-rich:hover { transform: translateY(-8px); background: #1e293b; border-color: #fff; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.sister-card-rich .icon { font-size: 2rem; margin-bottom: 0.4rem; filter: drop-shadow(0 0 8px rgba(255,255,255,0.2)); }
.sister-card-rich .name { font-size: 0.8rem; font-weight: 900; color: #fff; margin-bottom: 0.1rem; }
.sister-card-rich .catch { font-size: 0.65rem; font-weight: 900; opacity: 0.8; letter-spacing: -0.01em; }

.brand-ladies { border-bottom: 3px solid #fbbf24; }
.brand-ladies:hover { border-color: #fbbf24; }
.brand-mm { border-bottom: 3px solid #06b6d4; }
.brand-mm:hover { border-color: #06b6d4; }
.brand-sod { border-bottom: 3px solid #ec4899; }
.brand-sod:hover { border-color: #ec4899; }
.brand-jk { border-bottom: 3px solid #3b82f6; }
.brand-jk:hover { border-color: #3b82f6; }
.brand-wife { border-bottom: 3px solid #a855f7; }
.brand-wife:hover { border-color: #a855f7; }
.brand-s1 { border-bottom: 3px solid #f59e0b; }
.brand-s1:hover { border-color: #f59e0b; }

/* Content Section Layout */
.main-content { padding-top: 6rem; }
.content-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.03); padding-bottom: 2.5rem; gap: 2rem; }
.content-main-heading { font-size: 2.25rem; font-weight: 900; display: flex; align-items: center; gap: 1.25rem; color: #fff; line-height: 1.1; letter-spacing: -0.03em; }
.heading-accent { width: 8px; height: 36px; background: var(--accent); border-radius: 4px; box-shadow: 0 0 20px var(--accent-dim); }

.sort-tabs-container { display: flex; background: #0f172a; padding: 0.35rem; border-radius: 1.25rem; border: 1px solid #1e293b; box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }
.sort-tab { padding: 0.6rem 1.5rem; font-size: 0.75rem; font-weight: 900; color: #64748b; border-radius: 1rem; transition: all 0.3s; }
.sort-tab:hover { color: #fff; background: rgba(255,255,255,0.03); }
.sort-tab.active { background: #1e293b; color: var(--accent); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }

/* No items placeholder */
.no-items-placeholder { text-align: center; padding: 8rem 0; background: rgba(15,23,42,0.2); border: 2px dashed rgba(255,255,255,0.03); border-radius: 2rem; }
.no-items-placeholder .icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: 0.3; }
.no-items-placeholder p { color: #475569; font-weight: 700; }

/* Site Intro Description */
.site-intro-desc { margin: 10rem 0 5rem; }
.desc-card { background: rgba(15,23,42,0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 2rem; padding: 2.5rem; max-width: 850px; margin: 0 auto; text-align: center; backdrop-filter: blur(10px); }
.desc-toggle-btn { background: transparent; border: none; font-size: 0.75rem; font-weight: 900; color: var(--accent); cursor: pointer; transition: all 0.3s; opacity: 0.7; }
.desc-toggle-btn:hover { opacity: 1; transform: translateY(-1px); }
.desc-content { max-height: 0; overflow: hidden; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; margin-top: 0; }
.desc-content.is-open { max-height: 600px; opacity: 1; margin-top: 2rem; }
.desc-content p { font-size: 0.85rem; color: #94a3b8; line-height: 2; text-align: justify; }

/* =====================================================
   Responsive Overrides
   ===================================================== */
@media (max-width: 1024px) {
    .sister-grid-scroll { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .content-header-flex { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .content-main-heading { font-size: 1.75rem; }
    .genre-dropdown-overlay { width: 90vw; padding: 1.5rem; }
    .video-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 768px) {
    .sister-grid-scroll { display: flex; overflow-x: auto; padding: 0.5rem 0 1.5rem; margin: 0 -1rem; padding-left: 1rem; scrollbar-width: none; -ms-overflow-style: none; }
    .sister-grid-scroll::-webkit-scrollbar { display: none; }
    .sister-card-rich { width: 140px; flex-shrink: 0; padding: 1.25rem 0.5rem; }
    .video-grid { grid-template-columns: repeat(2, 1fr); padding: 0; gap: 0.75rem; }
    .portal-hero { padding: 4rem 1rem 2rem; }
    .huge-logo { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .video-grid { grid-template-columns: repeat(1, 1fr); }
}
/* Global Navbar - Enlarged & Realigned */
.global-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
    background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}
body { padding-top: 8rem; } /* Account for fixed header height - Increased for clarity */

.navbar-wrapper { 
    width: 100%; 
    max-width: 1400px; /* Wider than main container for 'floating' look */
    margin: 0 auto; 
    padding: 0 2rem; 
}

.navbar-inner { 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; /* Align all to the right */
    gap: 3rem; 
}
body.is-brand-mode .navbar-inner { justify-content: space-between; flex-direction: row; }

.navbar-brand { 
    display: flex; 
    flex-direction: column; 
    gap: 0.1rem; 
    align-items: flex-end; 
    order: 2; /* Put brand/logo to the right of search */
}
body.is-brand-mode .navbar-brand { align-items: flex-start; order: 1; }

.navbar-search { width: 380px; flex-shrink: 0; order: 1; }
body.is-brand-mode .navbar-search { order: 2; }
.navbar-search-form { display: flex; background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; height: 2.8rem; transition: all 0.4s; }
.navbar-search-form:focus-within { border-color: var(--accent); background: #0f172a; box-shadow: 0 0 30px rgba(6, 182, 212, 0.2); }
.navbar-search-form input { flex: 1; background: transparent; border: none; padding: 0 1.5rem; color: #fff; font-size: 0.9rem; outline: none; }
.navbar-search-form button { background: transparent; border: none; padding: 0 1rem; color: #64748b; font-size: 1rem; cursor: pointer; transition: color 0.3s; }
.navbar-search-form button:hover { color: var(--accent); }

@media (max-width: 1100px) {
    .navbar-tagline { display: none; }
}

@media (max-width: 850px) {
    .global-navbar { padding: 1.1rem 0; }
    .navbar-logo { font-size: 1.4rem; }
    .navbar-search { width: 320px; }
    .navbar-search-form { height: 2.8rem; }
}

@media (max-width: 640px) {
    .navbar-inner { flex-direction: column; gap: 1.25rem; align-items: center; text-align: center; }
    .navbar-brand { flex: none; align-items: center; }
    .navbar-search { width: 100%; }
}

/* See More CTA */
.more-items-cta { margin-top: 6rem; text-align: center; margin-bottom: 2rem; }
.cta-more-btn { 
    display: inline-flex; align-items: center; gap: 1.5rem; padding: 1.25rem 4rem; 
    background: linear-gradient(135deg, var(--accent) 0%, #22d3ee 100%); 
    color: #000; font-size: 1.1rem; font-weight: 900; border-radius: 999px; 
    text-decoration: none; transition: all 0.4s; box-shadow: 0 20px 40px -10px rgba(6,182,212,0.4);
}
.cta-more-btn:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -15px rgba(6,182,212,0.6); }
.cta-more-btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.cta-more-btn:hover svg { transform: translateX(8px); }

@media (max-width: 768px) {
    .more-items-cta { margin-top: 4rem; padding: 0 1rem; }
    .cta-more-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1.25rem 2rem; }
}
