/* shared-styles.css - Used by all ZaZa The Vibe app pages */
:root {
    --bg-top: #050010;
    --bg-bottom: #120022;
    --card-top: #3b0a78;
    --card-bottom: #1b0035;
    --accent: #f58bff;
    --accent-soft: #d4b4ff;
    --text-main: #ffffff;
    --text-muted: #f3e6ff;
    --link: #f2b3ff;
    --link-hover: #ffffff;
    --radius-xl: 32px;
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.65);
}

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

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at top, #4b1fff 0, transparent 55%),
                radial-gradient(circle at bottom, #e400ff 0, transparent 60%),
                linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
    line-height: 1.6;
}


/* === CONSISTENT SIZES FOR ALL PAGES === */
/* Applied 2025-12-28 16:17 */

/* 1. HEADER - CONSISTENT across all pages */
.ztv-page-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(0,0,0,.18);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ztv-page-header img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.ztv-page-header .t1 {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .3px;
    line-height: 1.1;
}

.ztv-page-header .t2 {
    font-size: 16px;
    opacity: .9;
    line-height: 1.2;
}

.ztv-page-header .nav {
    margin-left: auto;
    font-size: 16px;
    opacity: .95;
    white-space: nowrap;
}

.ztv-page-header .nav a {
    margin-left: 16px;
    text-decoration: none;
    color: var(--accent-soft);
}

.ztv-page-header .nav a:hover {
    color: var(--link-hover);
}

/* 2. MAIN CONTAINER - CONSISTENT */
.page-container, .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* 3. APP CARDS - CONSISTENT (bubbles) */
.app-card, .apps-card {
    background: radial-gradient(circle at top left, var(--card-top), var(--card-bottom));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    margin: 32px 0;
}

.app-card h1, .apps-card h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-card h2, .apps-card h2 {
    font-size: 1.8rem;
    margin: 28px 0 20px 0;
    color: var(--accent);
}

.app-card p, .apps-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 4. APP GRID - CONSISTENT */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.app-grid-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.app-grid-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

/* 5. LINKS - CONSISTENT */
.app-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.app-link:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* 6. BANNER/HERO - CONSISTENT */
.hero-container {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin: 32px 0;
}

.hero-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* 7. FOOTER - CONSISTENT */
.site-footer {
    text-align: center;
    padding: 40px 24px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 1rem;
}

/* === CONSISTENT MOBILE SIZES === */
@media (max-width: 1024px) {
    .ztv-page-header { padding: 18px 20px; gap: 14px; }
    .ztv-page-header img { width: 36px; height: 36px; }
    .ztv-page-header .t1 { font-size: 20px; }
    .ztv-page-header .t2 { font-size: 14px; }
    .ztv-page-header .nav { font-size: 14px; }
    .page-container, .main-content { padding: 32px 20px; }
    .app-card, .apps-card { padding: 32px; margin: 28px 0; }
    .app-card h1, .apps-card h1 { font-size: 2.4rem; }
    .app-card h2, .apps-card h2 { font-size: 1.6rem; }
    .app-grid { gap: 20px; margin: 32px 0; }
}

@media (max-width: 768px) {
    .ztv-page-header { padding: 16px 18px; gap: 12px; }
    .ztv-page-header img { width: 32px; height: 32px; }
    .ztv-page-header .t1 { font-size: 18px; }
    .ztv-page-header .t2 { font-size: 13px; }
    .ztv-page-header .nav { font-size: 13px; }
    .page-container, .main-content { padding: 24px 16px; }
    .app-card, .apps-card { padding: 24px; margin: 24px 0; }
    .app-card h1, .apps-card h1 { font-size: 2rem; }
    .app-card h2, .apps-card h2 { font-size: 1.4rem; }
    .app-card p, .apps-card p { font-size: 1rem; }
    .app-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; margin: 28px 0; }
    .app-grid-item { padding: 20px; }
    .site-footer { padding: 32px 20px; margin-top: 48px; }
}

@media (max-width: 480px) {
    .ztv-page-header { padding: 14px 16px; gap: 10px; }
    .ztv-page-header img { width: 28px; height: 28px; }
    .ztv-page-header .t1 { font-size: 16px; }
    .ztv-page-header .t2 { font-size: 12px; }
    .ztv-page-header .nav { font-size: 12px; }
    .page-container, .main-content { padding: 20px 12px; }
    .app-card, .apps-card { padding: 20px; margin: 20px 0; }
    .app-card h1, .apps-card h1 { font-size: 1.8rem; }
    .app-card h2, .apps-card h2 { font-size: 1.3rem; }
    .app-card p, .apps-card p { font-size: 0.95rem; }
    .app-grid { grid-template-columns: 1fr; gap: 12px; margin: 24px 0; }
    .app-grid-item { padding: 16px; }
    .site-footer { padding: 24px 16px; margin-top: 40px; font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .apps-card {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 768px) {
  .ztv-plain-wrap {
    display: flex;
    justify-content: center;
  }

  .ztv-plain-wrap > * {
    width: 100%;
    max-width: 1200px;
  }
}

@media (max-width: 768px) {
  .ztv-plain-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .ztv-plain-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

#ztv-global-nav {
  max-height: 96px;
  padding: 10px 20px;
}
#ztv-global-nav img {
  height: 56px;
  width: auto;
}
.ztv-nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ztv-links a {
  margin-right: 12px;
  font-size: 14px;
}
#ztv-global-nav {
  height: 72px;
  background: linear-gradient(90deg,#2a004f,#4b006e);
}

#ztv-global-nav img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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