/* ============================================================
 * PIE NOVELS — Homepage styles
 * Loaded only on the front page (enqueued in functions.php).
 * ============================================================ */

:root {
    --hp-bg: #0b0b12;
    --hp-card: rgba(255,255,255,0.03);
    --hp-card-hover: rgba(255,255,255,0.07);
    --hp-border: rgba(255,255,255,0.07);
    --hp-purple: #7c3aed;
    --hp-purple-d: #4c1d95;
    --hp-purple-l: #a78bfa;
    --hp-teal: #14b8a6;
    --hp-teal-l: #5eead4;
    --hp-teal-d: #0d9488;
    --hp-text: #f1f1f1;
    --hp-text2: #94a3b8;
    --hp-gold: #fbbf24;
    --hp-radius: 14px;
}

.hp { margin-top: 16px; }
.hp * { box-sizing: border-box; }

/* Accessibility: visible keyboard focus everywhere on the homepage */
.hp a:focus-visible,
.hp button:focus-visible,
.hp summary:focus-visible {
    outline: 2px solid var(--hp-purple-l);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Screen-reader-only utility */
.hp-sr { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===== COMPACT SEO H1 ===== */
.hp-h1 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hp-text2);
    margin: 0 0 14px;
    letter-spacing: 0.2px;
}
.hp-h1 strong { color: var(--hp-purple-l); font-weight: 700; }

/* ===== SCROLL REVEAL ===== */
.hp-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
    will-change: opacity, transform;
}
.hp-reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }
.hp-ri {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(.16,1,.3,1) var(--d, 0s), transform 0.5s cubic-bezier(.16,1,.3,1) var(--d, 0s);
}
.hp-reveal.visible .hp-ri { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .hp-reveal, .hp-ri { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hp * { animation: none !important; }
    .hp-hero-info > * { opacity: 1 !important; }
    .hp-hero-title { -webkit-text-fill-color: #fff !important; background: none !important; }
    .hp-dot.active::after { width: 100% !important; }
    .hp-swipe-hint { display: none !important; }
    html { scroll-behavior: auto; }
}

/* ===== SECTION LAYOUT ===== */
.hp-section { margin-bottom: 52px; }
.hp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    gap: 15px;
}
.hp-title {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, var(--hp-teal-l) 50%, var(--hp-purple-l) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hp-shimmer 6s linear infinite;
}
.hp-subtitle { color: var(--hp-text2); font-size: 0.9rem; margin: 5px 0 0; }
.hp-view-all {
    color: var(--hp-teal);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.2s, gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.hp-view-all:hover { color: var(--hp-teal-l); gap: 8px; }

/* ===== COMMON COMPONENTS ===== */
.hp-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}
.hp-badge-ongoing { background: var(--hp-purple-d); }
.hp-badge-completed { background: var(--hp-purple-l); }
.hp-badge-onhold { background: #d97706; }
.hp-badge-dropped { background: #dc2626; }
.hp-badge-newlyadded { background: var(--hp-purple); }

.hp-tag {
    background: rgba(139,92,246,0.15);
    color: var(--hp-purple-l);
    border: 1px solid rgba(20,184,166,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
}
.hp-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

.hp-pill {
    background: rgba(139,92,246,0.2);
    color: var(--hp-purple-l);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    border: 1px solid rgba(20,184,166,0.2);
    width: fit-content;
}

.hp-stars { color: var(--hp-gold); font-size: 1rem; letter-spacing: 1px; }
.hp-stars-sm { color: var(--hp-gold); font-size: 0.8rem; letter-spacing: 1px; }

/* ===== HERO CAROUSEL ===== */
.hp-hero {
    position: relative;
    border-radius: var(--hp-radius);
    overflow: hidden;
    margin-bottom: 50px;
    height: 420px;
    background: #14101f;
}
.hp-hero-track { position: relative; width: 100%; height: 100%; }

.hp-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.hp-hero-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }

/* Ken Burns — slow zoom+pan on background for cinematic feel */
@keyframes hp-kenburns {
    0%   { transform: scale(1.18) translate(0, 0); }
    50%  { transform: scale(1.28) translate(-1.5%, 1%); }
    100% { transform: scale(1.18) translate(0, 0); }
}
.hp-hero-bg {
    position: absolute;
    inset: -30px;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.4);
    transform: scale(1.18);
}
.hp-hero-slide.active .hp-hero-bg {
    animation: hp-kenburns 18s ease-in-out infinite;
}
.hp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,18,0.85) 0%, rgba(11,11,18,0.45) 50%, rgba(11,11,18,0.82) 100%);
}

.hp-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 40px;
    height: 100%;
}

.hp-hero-cover {
    flex-shrink: 0;
    width: 200px;
    height: 290px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(20,184,166,0.12);
    transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}
.hp-hero-cover:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 40px rgba(20,184,166,0.2);
}
/* Cover floating breathe animation */
@keyframes hp-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hp-hero-slide.active .hp-hero-cover {
    animation: hp-float 4s ease-in-out infinite;
}
.hp-hero-cover:hover { animation-play-state: paused !important; }
.hp-hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Animated shine sweep on cover */
@keyframes hp-shine-sweep {
    0%   { transform: translateX(-100%) rotate(12deg); }
    100% { transform: translateX(200%) rotate(12deg); }
}
.hp-hero-cover-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    pointer-events: none;
}
.hp-hero-slide.active .hp-hero-cover-shine {
    animation: hp-shine-sweep 3s ease-in-out 0.6s;
}

/* Staggered text entrance — each child slides up + fades in */
@keyframes hp-text-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hp-hero-info { flex: 1; min-width: 0; }
.hp-hero-info > * {
    opacity: 0;
    animation: hp-text-in 0.55s cubic-bezier(.16,1,.3,1) forwards;
    animation-play-state: paused;
}
.hp-hero-slide.active .hp-hero-info > * { animation-play-state: running; }
.hp-hero-slide.active .hp-hero-info > :nth-child(1) { animation-delay: 0.15s; }
.hp-hero-slide.active .hp-hero-info > :nth-child(2) { animation-delay: 0.25s; }
.hp-hero-slide.active .hp-hero-info > :nth-child(3) { animation-delay: 0.35s; }
.hp-hero-slide.active .hp-hero-info > :nth-child(4) { animation-delay: 0.45s; }
.hp-hero-slide.active .hp-hero-info > :nth-child(5) { animation-delay: 0.55s; }
.hp-hero-slide.active .hp-hero-info > :nth-child(6) { animation-delay: 0.65s; }
.hp-hero-slide.active .hp-hero-info > :nth-child(7) { animation-delay: 0.75s; }

.hp-hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hp-purple-l);
    margin-bottom: 4px;
}
/* Title gradient shimmer */
@keyframes hp-title-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.hp-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 8px 0;
    line-height: 1.2;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    background: linear-gradient(90deg, #fff 0%, #fff 35%, var(--hp-teal-l) 50%, #fff 65%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-hero-slide.active .hp-hero-title {
    animation: hp-text-in 0.55s cubic-bezier(.16,1,.3,1) forwards,
               hp-title-shimmer 3s ease-in-out 1s;
}
.hp-hero-summary {
    color: var(--hp-text2);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.hp-hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}
.hp-views-count { color: var(--hp-text2); font-size: 0.85rem; }

.hp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 30px;
    background: linear-gradient(135deg, var(--hp-teal-d) 0%, var(--hp-teal) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(20,184,166,0.35);
}
@keyframes hp-cta-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(20,184,166,0.35); }
    50%      { box-shadow: 0 4px 30px rgba(20,184,166,0.6), 0 0 15px rgba(20,184,166,0.25); }
}
.hp-hero-slide.active .hp-cta {
    animation: hp-cta-glow 2.5s ease-in-out 1.2s infinite;
}
.hp-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(20,184,166,0.5); animation: none !important; }
.hp-cta-arrow { transition: transform 0.3s; }
.hp-cta:hover .hp-cta-arrow { transform: translateX(4px); }

/* Slide counter (01 / 06) */
.hp-hero-counter {
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 10;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    font-variant-numeric: tabular-nums;
}
.hp-hero-counter .hp-counter-current {
    color: #fff;
    font-size: 1.1rem;
}

/* Progress-bar dots */
@keyframes hp-dot-fill {
    from { width: 0; }
    to   { width: 100%; }
}
.hp-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hp-dot {
    width: 32px; height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.hp-dot::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    border-radius: 2px;
    background: var(--hp-purple-l);
}
.hp-dot.active::after {
    animation: hp-dot-fill 5s linear forwards;
}
.hp-dot:hover { background: rgba(255,255,255,0.35); }

.hp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}
.hp-hero-arrow:hover { background: var(--hp-purple-d); transform: translateY(-50%) scale(1.1); }
.hp-hero-prev { left: 15px; }
.hp-hero-next { right: 15px; }

/* Swipe hint — mobile only */
@keyframes hp-swipe-nudge {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50%      { transform: translateX(-10px); opacity: 1; }
}
.hp-swipe-hint {
    display: none;
    position: absolute;
    bottom: 40px;
    right: 20px;
    z-index: 10;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: none;
    animation: hp-swipe-nudge 1.8s ease-in-out 2s 3;
    animation-fill-mode: both;
}
.hp-swipe-hint svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.5);
}
.hp-swipe-hint.hp-hide { opacity: 0; transition: opacity 0.4s; }

/* ===== BROWSE BY GENRE ===== */
.hp-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hp-genre-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: 30px;
    color: var(--hp-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.25s cubic-bezier(.16,1,.3,1), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.hp-genre-pill:hover {
    transform: translateY(-3px);
    background: rgba(20,184,166,0.1);
    border-color: rgba(20,184,166,0.35);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    color: #fff;
}
.hp-genre-count {
    font-size: 0.72rem;
    color: var(--hp-text2);
    background: rgba(255,255,255,0.06);
    padding: 1px 8px;
    border-radius: 10px;
}
.hp-genre-pill:hover .hp-genre-count { color: var(--hp-teal); }

/* ===== MONTHLY BEST SELLERS ===== */
.hp-scroll-wrap { overflow: hidden; margin: 0 -5px; }
.hp-scroll-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 5px 20px;
}
.hp-scroll-row::-webkit-scrollbar { display: none; }

.hp-best-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--hp-text);
    position: relative;
    transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s, border-color 0.3s;
}
.hp-best-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 20px rgba(20,184,166,0.1);
    border-color: rgba(20,184,166,0.3);
}

.hp-best-rank {
    position: absolute;
    top: 8px; left: 8px;
    z-index: 5;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(30,30,45,0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.1);
}
.hp-rank-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000; border-color: #fbbf24; animation: hp-pulse-gold 2.5s ease-in-out infinite; }
.hp-rank-2 { background: linear-gradient(135deg, #d1d5db, #9ca3af); color: #000; border-color: #d1d5db; box-shadow: 0 0 12px rgba(209,213,219,0.3); }
.hp-rank-3 { background: linear-gradient(135deg, #d97706, #b45309); color: #fff; border-color: #d97706; box-shadow: 0 0 12px rgba(217,119,6,0.3); }

.hp-best-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.hp-best-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.hp-best-card:hover .hp-best-img img { transform: scale(1.08); }

.hp-best-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hp-best-body h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== TOOLTIP ===== */
.hp-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 220px;
    background: rgba(15,15,25,0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20,184,166,0.2);
    border-radius: 10px;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 50;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.hp-tip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(20,184,166,0.2);
}
.hp-best-card:hover .hp-tip,
.hp-pop-card:hover .hp-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.hp-tip-text { font-size: 0.8rem; color: var(--hp-text2); margin: 0 0 8px; line-height: 1.5; }
.hp-tip-footer { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--hp-text2); }
.hp-tip-bottom { bottom: auto; top: calc(100% + 8px); }
.hp-tip-bottom::after { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: rgba(20,184,166,0.2); }

/* ===== MOST POPULAR GRID ===== */
.hp-pop-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.hp-pop-card {
    position: relative;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    overflow: visible;
    text-decoration: none;
    color: var(--hp-text);
    transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s, border-color 0.3s;
}
.hp-pop-link,
.hp-pop-link:hover,
.hp-pop-link:active,
.hp-pop-link:focus {
    display: block;
    text-decoration: none !important;
    color: inherit;
    border-radius: var(--hp-radius);
    overflow: hidden;
}
.hp-pop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 20px rgba(20,184,166,0.1);
    border-color: rgba(20,184,166,0.3);
    z-index: 20;
}
.hp-pop-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.hp-pop-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.hp-pop-card:hover .hp-pop-img img { transform: scale(1.08); }

.hp-pop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,184,166,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.hp-pop-card:hover .hp-pop-overlay { opacity: 1; }
.hp-pop-read {
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.3s;
}
.hp-pop-card:hover .hp-pop-read { transform: translateY(0); }

.hp-pop-status {
    position: absolute;
    top: 8px; right: 8px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}
.hp-pop-type {
    position: absolute;
    top: 8px; left: 8px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #fff;
    background: rgba(30,30,45,0.8);
    backdrop-filter: blur(4px);
}
.hp-pop-body { padding: 10px 12px; }
.hp-pop-body h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-pop-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hp-pop-tag {
    font-size: 0.7rem;
    color: var(--hp-text2);
    background: rgba(255,255,255,0.05);
    padding: 1px 8px;
    border-radius: 10px;
}

/* --- Hover Detail Preview (sakuraze-style) ---
 * Floats next to the card (not on top of it). Shows cover + info. */
.hp-preview {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 6px;
    width: 260px;
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-8px);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.16,1,.3,1);
}
.hp-pop-card:hover .hp-preview {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.hp-preview-inner,
.hp-preview-inner:hover,
.hp-preview-inner:active,
.hp-preview-inner:focus {
    text-decoration: none !important;
    color: var(--hp-text);
}
.hp-preview-inner * { text-decoration: none !important; }
.hp-preview-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: rgba(16,12,28,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(20,184,166,0.25);
    border-radius: var(--hp-radius);
    box-shadow: 0 16px 50px rgba(0,0,0,0.75), 0 0 20px rgba(20,184,166,0.08);
    text-decoration: none;
    color: var(--hp-text);
}
.hp-preview-cover {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.hp-preview-cover img {
    width: 70px;
    height: 94px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.hp-preview-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hp-preview-info h4 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-preview-info .hp-badge { font-size: 0.65rem; padding: 2px 9px; width: fit-content; }
.hp-preview-desc {
    margin: 0;
    font-size: 0.78rem;
    color: var(--hp-text2);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.hp-preview-tags span {
    font-size: 0.68rem;
    background: rgba(20,184,166,0.1);
    color: var(--hp-purple-l);
    border: 1px solid rgba(20,184,166,0.2);
    padding: 2px 8px;
    border-radius: 12px;
}
.hp-preview-stats {
    display: flex;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--hp-text2);
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hp-preview-stats span { display: flex; align-items: center; gap: 3px; }

/* Right-edge cards: flip preview to the left */
.hp-pop-grid > .hp-pop-card:nth-child(5n) .hp-preview {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 6px;
    transform: translateX(8px);
}
.hp-pop-grid > .hp-pop-card:nth-child(5n):hover .hp-preview {
    transform: translateX(0);
}
@media (max-width: 1100px) {
    .hp-pop-grid > .hp-pop-card:nth-child(5n) .hp-preview { left: 100%; right: auto; margin-right: 0; margin-left: 6px; transform: translateX(-8px); }
    .hp-pop-grid > .hp-pop-card:nth-child(5n):hover .hp-preview { transform: translateX(0); }
    .hp-pop-grid > .hp-pop-card:nth-child(4n) .hp-preview { left: auto; right: 100%; margin-left: 0; margin-right: 6px; transform: translateX(8px); }
    .hp-pop-grid > .hp-pop-card:nth-child(4n):hover .hp-preview { transform: translateX(0); }
}

/* ===== LATEST RELEASES + RANKINGS (revamped) ===== */
.hp-bottom { display: flex; gap: 22px; }
.hp-latest { flex: 1; min-width: 0; overflow: hidden; }
.hp-rankings { width: 320px; flex-shrink: 0; }

/* --- Latest Releases header --- */
.hp-latest-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--hp-purple-d) 0%, #4c1d95 50%, var(--hp-purple) 100%);
    background-size: 200% 200%;
    animation: hp-gradient-shift 6s ease infinite;
    padding: 14px 20px;
    border-radius: 14px 14px 0 0;
    position: relative;
    overflow: hidden;
}
.hp-latest-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    animation: hp-bar-shine 3s ease-in-out infinite;
}
@keyframes hp-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes hp-bar-shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}
.hp-latest-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    position: relative;
}
.hp-latest-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: hp-pulse-dot 2s ease-in-out infinite;
}
@keyframes hp-pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
    50% { opacity: 0.5; box-shadow: 0 0 14px #22c55e; }
}
.hp-latest-bar h2 { margin: 0; font-weight: 700; font-size: 1.1rem; color: #fff; z-index: 1; position: relative; }
.hp-latest-bar a {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    z-index: 1;
    position: relative;
    border: 1px solid rgba(255,255,255,0.15);
}
.hp-latest-bar a:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }

/* --- Latest grid --- */
.hp-latest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: rgba(15,12,25,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--hp-border);
    border-top: none;
    border-radius: 0 0 14px 14px;
}

/* --- Release card --- */
.hp-rel-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-right: 1px solid rgba(255,255,255,0.04);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    overflow: hidden;
    min-width: 0;
    position: relative;
    border-left: 3px solid transparent;
}
.hp-rel-card:hover {
    background: rgba(20,184,166,0.04);
    border-left-color: var(--hp-teal);
}
.hp-rel-card:nth-child(2n) { border-right-color: transparent; }

.hp-rel-img {
    flex-shrink: 0;
    width: 72px;
    height: 102px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s, transform 0.3s;
}
.hp-rel-card:hover .hp-rel-img {
    box-shadow: 0 6px 20px rgba(20,184,166,0.2);
    transform: scale(1.03);
}
.hp-rel-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hp-rel-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.hp-rel-info h3 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-rel-info h3 a {
    color: var(--hp-text);
    text-decoration: none;
    transition: color 0.2s;
}
.hp-rel-info h3 a:hover { color: var(--hp-purple-l); }

.hp-rel-chapters { display: flex; flex-direction: column; gap: 5px; }
.hp-rel-ch { display: flex; justify-content: space-between; align-items: center; gap: 8px; }

.hp-ch-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--hp-text);
    text-decoration: none;
    padding: 3px 12px;
    border-radius: 14px;
    font-size: 0.75rem;
    transition: all 0.25s;
    white-space: nowrap;
}
.hp-ch-pill:hover {
    background: linear-gradient(135deg, var(--hp-teal-d), var(--hp-teal));
    border-color: var(--hp-teal);
    transform: translateX(2px);
    box-shadow: 0 2px 10px rgba(20,184,166,0.3);
}
.hp-ch-fresh {
    border-color: rgba(34,197,94,0.25);
    background: rgba(34,197,94,0.08);
}
.hp-ch-new {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #22c55e;
    color: #000;
    padding: 1px 5px;
    border-radius: 4px;
    animation: hp-pulse-new 2s ease-in-out infinite;
}
@keyframes hp-pulse-new {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.hp-ch-time { font-size: 0.7rem; color: var(--hp-text2); white-space: nowrap; }

/* ===== RANKINGS SIDEBAR (revamped) ===== */
.hp-rank-header {
    background: linear-gradient(135deg, rgba(20,16,31,0.95), rgba(30,22,50,0.95));
    padding: 16px 18px 8px;
    border-radius: 14px 14px 0 0;
    border: 1px solid var(--hp-border);
    border-bottom: none;
}
.hp-rank-header h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--hp-purple-l) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-rank-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 14px 12px;
    background: linear-gradient(135deg, rgba(20,16,31,0.95), rgba(30,22,50,0.95));
    border-left: 1px solid var(--hp-border);
    border-right: 1px solid var(--hp-border);
}
.hp-rank-tab {
    flex: 1;
    padding: 8px 6px;
    border: none;
    background: rgba(255,255,255,0.04);
    color: var(--hp-text2);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.hp-rank-tab:hover { background: rgba(255,255,255,0.08); color: #fff; }
.hp-rank-tab.active {
    background: linear-gradient(135deg, var(--hp-purple-d), var(--hp-purple));
    color: #fff;
    box-shadow: 0 2px 12px rgba(109,40,217,0.4);
}

.hp-rank-list {
    background: rgba(15,12,25,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--hp-border);
    border-top: none;
    border-radius: 0 0 14px 14px;
    min-height: 420px;
    max-height: 720px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--hp-purple-d) transparent;
    padding: 6px;
}

.hp-rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--hp-text);
    border-radius: 10px;
    margin-bottom: 4px;
    position: relative;
    transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.hp-rank-item:hover {
    background: rgba(20,184,166,0.08);
    transform: translateX(4px);
}
.hp-rank-featured {
    background: rgba(20,184,166,0.03);
    border: 1px solid rgba(20,184,166,0.08);
}
.hp-rank-featured:hover {
    border-color: rgba(20,184,166,0.3);
    box-shadow: 0 4px 16px rgba(20,184,166,0.12);
}

.hp-rank-num {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid var(--hp-border);
    transition: transform 0.3s;
}
.hp-rank-item:hover .hp-rank-num { transform: scale(1.1); }
.hp-rank-num.top-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-color: #fbbf24;
    box-shadow: 0 0 14px rgba(251,191,36,0.4);
    animation: hp-pulse-gold 2.5s ease-in-out infinite;
}
.hp-rank-num.top-2 {
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
    color: #000;
    border-color: #cbd5e1;
    box-shadow: 0 0 10px rgba(148,163,184,0.3);
}
.hp-rank-num.top-3 {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #fff;
    border-color: #d97706;
    box-shadow: 0 0 10px rgba(217,119,6,0.3);
}

.hp-rank-thumb {
    width: 50px; height: 66px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.hp-rank-item:hover .hp-rank-thumb { transform: scale(1.05); }
.hp-rank-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hp-rank-info { flex: 1; min-width: 0; }
.hp-rank-info p {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-rank-genre { font-size: 0.7rem !important; color: var(--hp-text2) !important; font-weight: 400 !important; margin-top: 2px !important; }

.hp-rank-fire {
    font-size: 0.9rem;
    flex-shrink: 0;
    animation: hp-fire-bounce 1.5s ease-in-out infinite;
}
@keyframes hp-fire-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.hp-rank-loading { padding: 30px; text-align: center; color: var(--hp-text2); font-size: 0.9rem; }

/* ===== TRUST / STATS STRIP ===== */
.hp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: linear-gradient(135deg, rgba(20,184,166,0.08), rgba(76,29,149,0.06));
    border: 1px solid rgba(20,184,166,0.15);
    border-radius: var(--hp-radius);
    padding: 26px 20px;
    text-align: center;
}
.hp-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff, var(--hp-teal-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-stat-label { color: var(--hp-text2); font-size: 0.85rem; margin-top: 6px; }
.hp-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}
.hp-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--hp-text);
}
.hp-value svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--hp-purple-l); }

/* ===== FAQ ===== */
.hp-faq { max-width: 860px; margin: 0 auto; }
.hp-faq-item {
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}
.hp-faq-item[open] { border-color: rgba(20,184,166,0.3); }
.hp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--hp-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    position: relative;
    transition: transform 0.3s;
}
.hp-faq-icon::before, .hp-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--hp-purple-l);
    border-radius: 2px;
}
.hp-faq-icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.hp-faq-icon::after { top: 2px; left: 9px; width: 2px; height: 16px; transition: transform 0.3s; }
.hp-faq-item[open] .hp-faq-icon::after { transform: rotate(90deg); }
.hp-faq-answer { padding: 0 20px 18px; color: var(--hp-text2); font-size: 0.9rem; line-height: 1.65; }
.hp-faq-answer a { color: var(--hp-purple-l); text-decoration: none; }
.hp-faq-answer a:hover { text-decoration: underline; }

/* ===== DISCORD COMMUNITY (greenz-style) ===== */
.hp-discord {
    padding: 50px 0 10px;
}
.hp-discord h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 28px;
    line-height: 1.25;
}

.hp-discord-members {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 40px;
    padding: 8px 22px 8px 10px;
    width: fit-content;
}

.hp-discord-avatars {
    display: flex;
}
.hp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--hp-bg, #0b0b12);
    margin-left: -10px;
    position: relative;
    transition: transform 0.3s;
    object-fit: cover;
    display: block;
}
span.hp-avatar {
    background: linear-gradient(135deg,
        hsl(var(--hue, 270) 60% 45%),
        hsl(var(--hue, 270) 70% 65%));
}
.hp-avatar:first-child { margin-left: 0; }
.hp-discord-members:hover .hp-avatar {
    transform: translateY(-2px);
}
.hp-discord-members:hover .hp-avatar:nth-child(1) { transition-delay: 0s; }
.hp-discord-members:hover .hp-avatar:nth-child(2) { transition-delay: 0.05s; }
.hp-discord-members:hover .hp-avatar:nth-child(3) { transition-delay: 0.1s; }
.hp-discord-members:hover .hp-avatar:nth-child(4) { transition-delay: 0.15s; }

.hp-discord-count {
    font-size: 0.9rem;
    color: var(--hp-text2);
    white-space: nowrap;
}

.hp-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: var(--hp-text);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.hp-discord-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hp-discord-btn svg { flex-shrink: 0; color: #5865F2; }

@media (max-width: 600px) {
    .hp-discord { padding: 35px 0 10px; }
    .hp-discord h2 { font-size: 1.4rem; }
    .hp-discord-members { padding: 6px 16px 6px 8px; }
    .hp-avatar { width: 30px; height: 30px; margin-left: -8px; }
    .hp-discord-count { font-size: 0.8rem; }
    .hp-discord-btn { padding: 10px 22px; font-size: 0.88rem; }
}

/* ===== KEYFRAMES ===== */
@keyframes hp-pulse-gold {
    0%, 100% { box-shadow: 0 0 8px rgba(251,191,36,0.3); }
    50% { box-shadow: 0 0 18px rgba(251,191,36,0.6); }
}
@keyframes hp-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hp-pop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hp-rankings { width: 280px; }
}
@media (max-width: 900px) {
    .hp-pop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hp-bottom { flex-direction: column; }
    .hp-rankings { width: 100%; }
    .hp-rank-list { max-height: 360px; }
}
@media (max-width: 768px) {
    /* Full-bleed immersive hero on mobile */
    .hp-hero {
        height: auto;
        min-height: 480px;
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 35px;
    }
    .hp-hero-track { min-height: 480px; }

    /* Stacked: cover top, text bottom */
    .hp-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px 24px 55px;
        gap: 18px;
    }
    .hp-hero-cover {
        width: 140px;
        height: 200px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.7), 0 0 25px rgba(124,58,237,0.15);
    }
    .hp-hero-info { text-align: center; }
    .hp-hero-eyebrow { margin-bottom: 2px; }
    .hp-hero-title { font-size: 1.35rem; -webkit-line-clamp: 2; }
    .hp-hero-summary { font-size: 0.85rem; -webkit-line-clamp: 2; }
    .hp-hero-meta { justify-content: center; }
    .hp-tag-row { justify-content: center; }
    .hp-hero-arrow { display: none; }

    /* Full-width CTA for thumb reach */
    .hp-cta {
        width: 100%;
        justify-content: center;
        padding: 13px 30px;
        font-size: 0.95rem;
    }

    /* Bigger touch-friendly dots */
    .hp-dot { width: 28px; height: 5px; }
    .hp-hero-dots { bottom: 16px; gap: 6px; }

    /* Counter repositioned */
    .hp-hero-counter { top: 14px; right: 18px; }

    /* Swipe hint arrow */
    .hp-swipe-hint { display: flex; }

    /* Stronger bg gradient for text readability */
    .hp-hero-bg::after {
        background: linear-gradient(180deg,
            rgba(11,11,18,0.5) 0%,
            rgba(11,11,18,0.65) 30%,
            rgba(11,11,18,0.88) 70%,
            rgba(11,11,18,0.95) 100%);
    }

    .hp-title { font-size: 1.4rem; }
    .hp-section-head { flex-direction: column; align-items: flex-start; }

    .hp-best-card { flex: 0 0 140px; }
    .hp-pop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .hp-latest-grid { grid-template-columns: 1fr; }
    .hp-rel-card { border-right: none !important; }

    .hp-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 20px 12px; }
    .hp-stat-num { font-size: 1.5rem; }

    .hp-tip { display: none; }
    .hp-preview { display: none !important; }
}
@media (max-width: 500px) {
    .hp-hero { min-height: 440px; }
    .hp-hero-track { min-height: 440px; }
    .hp-hero-content { padding: 28px 18px 50px; gap: 14px; }
    .hp-hero-cover { width: 120px; height: 172px; }
    .hp-hero-title { font-size: 1.15rem; }
    .hp-hero-meta { flex-direction: row; gap: 10px; align-items: center; justify-content: center; }
    .hp-tag-row { display: none; }
    .hp-hero-counter { top: 10px; right: 14px; font-size: 0.7rem; }
    .hp-hero-counter .hp-counter-current { font-size: 0.9rem; }
    .hp-dot { width: 20px; height: 4px; }

    .hp-pop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .hp-pop-body h3 { font-size: 0.8rem; }
    .hp-pop-body { padding: 8px 10px; }

    .hp-best-card { flex: 0 0 130px; }
    .hp-best-body h3 { font-size: 0.78rem; }

    .hp-section { margin-bottom: 38px; }
    .hp-stat-num { font-size: 1.25rem; }
    .hp-stat-label { font-size: 0.72rem; }
    .hp-genre-pill { padding: 8px 14px; font-size: 0.82rem; }
}
