/*
Theme Name: GOGOPAPA Hyper
Theme URI: https://gogopapa.com
Author: GOGOPAPA
Author URI: https://gogopapa.com
Description: A premium Gen Z animated WordPress streaming theme for video, music, live drops, playlists, and creator content.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gogopapa-hyper
Tags: entertainment, blog, custom-logo, custom-menu, featured-images, wide-blocks, full-site-editing, portfolio
*/

:root {
  --gp-bg: #07000e;
  --gp-bg-2: #12001f;
  --gp-panel: rgba(33, 20, 54, .78);
  --gp-panel-2: rgba(72, 34, 105, .58);
  --gp-glass: rgba(255,255,255,.075);
  --gp-border: rgba(255,255,255,.14);
  --gp-border-bright: rgba(191, 255, 0, .55);
  --gp-text: #f8f3ff;
  --gp-muted: #bbaed2;
  --gp-soft: #89749f;
  --gp-acid: #c8ff00;
  --gp-cyan: #09d9ff;
  --gp-violet: #8d4cff;
  --gp-pink: #ff39c7;
  --gp-orange: #ff7b54;
  --gp-radius-xl: 34px;
  --gp-radius-lg: 24px;
  --gp-radius-md: 16px;
  --gp-shadow: 0 24px 80px rgba(0,0,0,.48);
  --gp-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 12%, rgba(126, 32, 168, .48), transparent 28rem),
    radial-gradient(circle at 82% 26%, rgba(21, 5, 47, .92), transparent 34rem),
    linear-gradient(145deg, #210033 0%, #090012 45%, #040008 100%);
  color: var(--gp-text);
  font-family: var(--gp-font);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
  z-index: 0;
}
body.gp-modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.gp-site { position: relative; z-index: 1; min-height: 100vh; }

.gp-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(45px);
  opacity: .32;
  pointer-events: none;
  z-index: 0;
  animation: gpFloat 12s ease-in-out infinite alternate;
}
.gp-orb-one { left: -140px; top: 190px; background: var(--gp-pink); }
.gp-orb-two { right: -150px; top: 60px; background: var(--gp-violet); animation-delay: -4s; }
.gp-orb-three { left: 52%; bottom: -220px; background: var(--gp-cyan); animation-delay: -8s; opacity: .18; }
@keyframes gpFloat { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px,-32px,0) scale(1.12); } }

.gp-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 82px;
  padding: 18px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-left: 0;
  border-radius: 0 26px 26px 0;
  background: rgba(12, 4, 28, .72);
  backdrop-filter: blur(22px);
  z-index: 20;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.gp-side-link {
  display: grid;
  place-items: center;
  gap: 5px;
  min-height: 62px;
  color: #b7a4df;
  font-size: 10px;
  font-weight: 800;
  transition: .25s ease;
  border-radius: 20px;
  position: relative;
}
.gp-side-link svg { width: 20px; height: 20px; stroke-width: 2.3; }
.gp-side-link.is-active, .gp-side-link:hover {
  color: var(--gp-acid);
  background: rgba(200,255,0,.13);
  transform: translateX(4px);
}
.gp-side-link.is-active::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 17px;
  bottom: 17px;
  width: 3px;
  border-radius: 10px;
  background: var(--gp-acid);
  box-shadow: 0 0 18px var(--gp-acid);
}

.gp-topbar {
  width: min(1260px, calc(100vw - 160px));
  margin: 0 auto;
  padding: 26px 0 8px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.gp-logo {
  grid-column: 2;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .26em;
  color: var(--gp-acid);
  text-shadow: 0 0 18px rgba(200,255,0,.58), 0 0 44px rgba(200,255,0,.22);
  transform: translateX(.13em);
  text-align: center;
}
.gp-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.gp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(200,255,0,.5);
  background: rgba(255,255,255,.04);
  color: white;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(141,76,255,.25);
  transition: .25s ease;
}
.gp-pill:hover { background: var(--gp-acid); color: #090012; transform: translateY(-2px); box-shadow: 0 0 32px rgba(200,255,0,.35); }
.gp-avatar { width: 46px; height: 46px; border-radius: 999px; border: 2px solid rgba(200,255,0,.68); object-fit: cover; background: linear-gradient(135deg, var(--gp-violet), var(--gp-orange)); }

.gp-shell { width: min(1260px, calc(100vw - 160px)); margin: 0 auto; padding: 0 0 54px; }
.gp-searchbar { max-width: 760px; margin: 8px auto 26px; position: relative; }
.gp-searchbar input {
  width: 100%; height: 58px; border-radius: 999px; border: 1px solid rgba(141,76,255,.72); outline: 0;
  color: white; background: rgba(255,255,255,.07); backdrop-filter: blur(18px);
  padding: 0 64px 0 32px; font-size: 15px; font-weight: 700; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 34px rgba(141,76,255,.18);
}
.gp-searchbar input:focus { border-color: var(--gp-acid); box-shadow: 0 0 36px rgba(200,255,0,.18), inset 0 0 0 1px rgba(255,255,255,.08); }
.gp-searchbar button { position: absolute; right: 10px; top: 9px; width: 42px; height: 42px; border: 0; border-radius: 999px; background: transparent; color: white; cursor: pointer; }

.gp-channel-tabs { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin: 0 0 30px; }
.gp-tab { color: #c4b5e7; font-weight: 900; padding: 12px 0; position: relative; transition: .2s ease; }
.gp-tab span { color: var(--gp-violet); margin-right: 8px; }
.gp-tab.is-active, .gp-tab:hover { color: var(--gp-acid); }
.gp-tab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 999px; background: var(--gp-acid); box-shadow: 0 0 20px var(--gp-acid); }

.gp-hero-grid { display: grid; grid-template-columns: 1fr 330px; gap: 22px; align-items: stretch; }
.gp-hero {
  min-height: 505px; border-radius: var(--gp-radius-xl); overflow: hidden; position: relative; isolation: isolate;
  border: 1px solid rgba(255,255,255,.14); background: #11071d; box-shadow: var(--gp-shadow);
}
.gp-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: gpHeroZoom 12s ease-in-out infinite alternate; }
.gp-hero-bg::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,0,22,.92) 0%, rgba(10,0,22,.57) 38%, rgba(10,0,22,.1) 100%), linear-gradient(0deg, rgba(6,0,12,.85) 0%, transparent 55%);
}
@keyframes gpHeroZoom { from { transform: scale(1.04) translateX(0); } to { transform: scale(1.12) translateX(-1.5%); } }
.gp-hero-content { position: relative; z-index: 2; width: min(530px, 70%); padding: 168px 42px 42px; }
.gp-kicker { color: var(--gp-acid); text-transform: uppercase; font-weight: 1000; font-size: 13px; letter-spacing: .06em; }
.gp-hero h1 { font-size: clamp(42px, 5.3vw, 76px); line-height: .9; margin: 14px 0 10px; letter-spacing: -.06em; text-transform: uppercase; }
.gp-hero-sub { color: #d8c8ff; font-size: clamp(16px, 1.6vw, 24px); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 18px; }
.gp-hero-copy { color: #cabbdf; font-size: 17px; line-height: 1.55; max-width: 390px; }
.gp-hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.gp-play-main { border: 0; background: var(--gp-acid); color: #0a0015; height: 54px; padding: 0 28px; border-radius: 999px; font-weight: 1000; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; box-shadow: 0 0 36px rgba(200,255,0,.34); }
.gp-secondary { height: 54px; padding: 0 26px; border-radius: 999px; border: 1px solid rgba(255,255,255,.24); color: white; background: rgba(255,255,255,.045); font-weight: 800; cursor: pointer; }
.gp-play-main:hover, .gp-secondary:hover { transform: translateY(-2px); }
.gp-slider-dots { position: absolute; right: 36px; bottom: 28px; display: flex; align-items: center; gap: 8px; z-index: 2; }
.gp-slider-dots span { width: 26px; height: 3px; background: rgba(255,255,255,.32); border-radius: 999px; }
.gp-slider-dots span:first-child { background: white; }

.gp-trending-panel { border-radius: var(--gp-radius-lg); background: rgba(43, 20, 68, .84); border: 1px solid var(--gp-border); padding: 24px 22px; box-shadow: var(--gp-shadow); }
.gp-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.gp-panel-head h3 { margin: 0; font-size: 17px; letter-spacing: -.03em; text-transform: uppercase; }
.gp-view-all { color: var(--gp-acid); font-size: 11px; font-weight: 1000; text-transform: uppercase; }
.gp-trend-list { display: grid; gap: 16px; }
.gp-trend-item { display: grid; grid-template-columns: 28px 58px 1fr; gap: 12px; align-items: center; }
.gp-trend-rank { color: var(--gp-acid); font-weight: 1000; font-size: 12px; }
.gp-trend-thumb { width: 58px; height: 42px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #2b0058, #09d9ff); }
.gp-trend-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gp-trend-title { font-size: 12px; font-weight: 900; line-height: 1.15; color: white; }
.gp-trend-meta { font-size: 10px; color: var(--gp-muted); margin-top: 4px; }

.gp-section { margin-top: 38px; }
.gp-section-header { display: flex; align-items: center; justify-content: space-between; margin: 0 0 16px; }
.gp-section-title { margin: 0; font-size: 22px; letter-spacing: -.04em; display: flex; align-items: center; gap: 10px; }
.gp-section-title span { color: var(--gp-violet); }
.gp-row-wrap { position: relative; }
.gp-card-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 18px; overflow-x: auto; padding: 2px 2px 10px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.gp-card-row::-webkit-scrollbar { display: none; }
.gp-card { scroll-snap-align: start; min-width: 0; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.055); border-radius: 18px; overflow: hidden; position: relative; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.gp-card:hover { transform: translateY(-8px) scale(1.015); border-color: rgba(200,255,0,.48); box-shadow: 0 22px 55px rgba(0,0,0,.42), 0 0 26px rgba(141,76,255,.22); }
.gp-card-media { height: 154px; position: relative; background: linear-gradient(135deg, #35104f, #090012); overflow: hidden; }
.gp-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gp-card:hover img { transform: scale(1.08); }
.gp-badge { position: absolute; top: 12px; left: 12px; color: #0b0013; background: var(--gp-acid); border-radius: 999px; padding: 6px 10px; font-size: 10px; font-weight: 1000; text-transform: uppercase; z-index: 2; }
.gp-badge.video { background: #b76cff; color: white; }
.gp-badge.live { background: #ff304f; color: white; }
.gp-card-play { position: absolute; inset: auto 12px 12px auto; width: 42px; height: 42px; border-radius: 999px; background: rgba(255,255,255,.92); color: #090012; border: 0; display: grid; place-items: center; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.gp-card:hover .gp-card-play { opacity: 1; transform: translateY(0); }
.gp-card-body { padding: 16px 16px 18px; min-height: 122px; }
.gp-card-title { margin: 0 0 7px; font-size: 15px; line-height: 1.2; text-transform: uppercase; letter-spacing: -.02em; }
.gp-card-meta { color: var(--gp-muted); font-size: 12px; display: grid; gap: 5px; }
.gp-stars { color: #ffc400; letter-spacing: -1px; margin-top: 7px; font-size: 13px; }
.gp-row-next { position: absolute; right: -22px; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 999px; border: 0; background: linear-gradient(135deg, var(--gp-violet), #5717e4); color: white; box-shadow: 0 16px 40px rgba(0,0,0,.4); cursor: pointer; font-size: 28px; }

.gp-promo { margin-top: 50px; border: 1px solid rgba(200,255,0,.55); border-radius: 26px; padding: 28px 34px; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr) auto; gap: 26px; align-items: center; background: linear-gradient(100deg, rgba(105,28,130,.55), rgba(20,6,36,.72)); box-shadow: 0 0 32px rgba(200,255,0,.11); }
.gp-promo h3 { margin: 0 0 7px; color: #ff8a65; font-size: 24px; text-transform: uppercase; }
.gp-promo p { margin: 0; color: #d0c3df; }
.gp-feature { color: #eae2ff; font-size: 13px; font-weight: 800; display: flex; gap: 10px; align-items: center; }
.gp-feature span { color: var(--gp-violet); font-size: 20px; }

.gp-footer { width: min(1260px, calc(100vw - 160px)); margin: 0 auto; padding: 36px 0 42px; display: flex; align-items: center; justify-content: space-between; color: #a996c0; }
.gp-footer-logo { color: var(--gp-acid); font-weight: 1000; letter-spacing: .16em; font-size: 22px; }
.gp-footer-links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 13px; }

.gp-modal { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.82); backdrop-filter: blur(18px); display: none; align-items: center; justify-content: center; padding: 28px; }
.gp-modal.is-open { display: flex; }
.gp-player { width: min(1060px, 96vw); aspect-ratio: 16 / 9; border-radius: 28px; background: #000; border: 1px solid rgba(255,255,255,.16); overflow: hidden; position: relative; box-shadow: 0 35px 120px rgba(0,0,0,.7); }
.gp-player iframe, .gp-player video { width: 100%; height: 100%; display: block; }
.gp-player-fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at center, #35104f, #050007 70%); }
.gp-player-fallback h2 { font-size: clamp(42px, 8vw, 92px); margin: 0; color: var(--gp-acid); text-transform: uppercase; }
.gp-modal-close { position: absolute; right: 24px; top: 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: white; width: 48px; height: 48px; border-radius: 999px; font-size: 28px; cursor: pointer; z-index: 3; }

.gp-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.gp-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .gp-sidebar { display: none; }
  .gp-topbar, .gp-shell, .gp-footer { width: min(94vw, 1060px); }
  .gp-topbar { grid-template-columns: 1fr; justify-items: center; }
  .gp-logo { grid-column: auto; }
  .gp-actions { justify-self: center; }
  .gp-hero-grid { grid-template-columns: 1fr; }
  .gp-trending-panel { order: 2; }
  .gp-promo { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .gp-topbar { padding-top: 18px; }
  .gp-logo { font-size: 30px; letter-spacing: .18em; }
  .gp-actions { display: none; }
  .gp-searchbar input { height: 52px; padding-left: 20px; }
  .gp-channel-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 20px; padding-bottom: 8px; }
  .gp-hero { min-height: 560px; }
  .gp-hero-content { width: 100%; padding: 240px 24px 30px; }
  .gp-card-row { grid-auto-columns: 78%; }
  .gp-promo { grid-template-columns: 1fr; padding: 24px; }
  .gp-footer { align-items: flex-start; flex-direction: column; gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
