:root {
    --bg: #eedeff;
    --bg-soft: rgba(246, 235, 255, 0.88);
    --surface: rgba(249, 240, 255, 0.78);
    --surface-strong: rgba(253, 248, 255, 0.94);
    --line: rgba(112, 83, 157, 0.18);
    --line-strong: rgba(112, 83, 157, 0.32);
    --text: #2f1d4f;
    --muted: #6e5896;
    --lavender: #b89cfc;
    --lavender-deep: #8e66f7;
    --rose: #e88fb8;
    --pink: #f1bfe0;
    --lilac: #dcceff;
    --mint: #c9e7d3;
    --shadow: 0 24px 60px rgba(135, 78, 250, 0.16);
    --shadow-lift: 0 32px 80px rgba(135, 78, 250, 0.24);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background:
        radial-gradient(circle at top, rgba(235, 215, 255, 0.9), transparent 50%),
        linear-gradient(180deg, #faf5ff 0%, #dcc8ff 45%, #b48eff 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

body.lightbox-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

.page-glow,
.paper-grain,
.petal-corner,
.flower-field {
    pointer-events: none;
    position: fixed;
}

.page-glow {
    z-index: -4;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.75;
}

.glow-peach {
    width: 25rem;
    height: 25rem;
    top: -5rem;
    left: -7rem;
    background: rgba(238, 158, 199, 0.28);
}

.glow-rose {
    width: 28rem;
    height: 28rem;
    right: -7rem;
    top: 18rem;
    background: rgba(243, 198, 232, 0.34);
}

.glow-butter {
    width: 22rem;
    height: 22rem;
    left: 24%;
    bottom: -6rem;
    background: rgba(201, 231, 211, 0.22);
}

.glow-lavender {
    width: 34rem;
    height: 34rem;
    top: 8rem;
    left: 40%;
    background: rgba(197, 177, 255, 0.38);
}

.paper-grain {
    inset: 0;
    z-index: -3;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(circle at center, black 62%, transparent 100%);
}

.flower-field {
    inset: 0;
    z-index: -2;
}

.bg-flower {
    position: absolute;
    color: rgba(159, 132, 245, 0.18);
    filter: blur(0.2px);
    animation: flowerFloat 18s ease-in-out infinite;
}

.flower-a { top: 8%; left: 9%; font-size: 3rem; }
.flower-b { top: 16%; right: 12%; font-size: 4.2rem; animation-delay: -2s; }
.flower-c { top: 44%; left: 5%; font-size: 2.6rem; animation-delay: -7s; }
.flower-d { top: 62%; right: 8%; font-size: 3.2rem; animation-delay: -10s; }
.flower-e { bottom: 12%; left: 16%; font-size: 4rem; animation-delay: -4s; }
.flower-f { bottom: 8%; right: 22%; font-size: 2.8rem; animation-delay: -12s; }

@keyframes flowerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(6deg); }
}

.petal-corner {
    width: 11rem;
    height: 11rem;
    z-index: 1;
    opacity: 0.6;
}

.petal-corner::before,
.petal-corner::after {
    content: "";
    position: absolute;
    border-radius: 50% 38% 58% 42%;
}

.petal-corner::before {
    inset: 0;
    border: 1px solid rgba(159, 132, 245, 0.35);
}

.petal-corner::after {
    inset: 1.2rem;
    border: 1px solid rgba(238, 158, 199, 0.28);
}

.petal-top-left { top: 1rem; left: 1rem; }
.petal-top-right { top: 1rem; right: 1rem; transform: rotate(90deg); }
.petal-bottom-left { bottom: 1rem; left: 1rem; transform: rotate(-90deg); }
.petal-bottom-right { right: 1rem; bottom: 1rem; transform: rotate(180deg); }

.verification-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 5;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.verification-card,
.section-shell,
.hero-photo-card,
.mini-note {
    background: var(--surface);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.verification-card {
    width: min(100%, 34rem);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}

.verification-badge,
.hero-kicker,
.section-eyebrow,
.photo-tag,
.mini-note-label {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.92rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floral-header-icon {
    margin: 1rem auto 0.75rem;
    font-size: 2.4rem;
    animation: gentleSpin 10s linear infinite;
}

@keyframes gentleSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.verify-title,
.main-title,
.section-title {
    font-family: var(--font-display);
    line-height: 0.95;
}

.verify-title {
    margin-top: 0.25rem;
    font-size: clamp(2.45rem, 6vw, 3.2rem);
    font-weight: 600;
}

.verify-subtitle,
.verify-help p,
.hero-note,
.section-subtitle,
.mini-note p,
.footer p,
.video-card-meta p {
    color: var(--muted);
}

.verify-subtitle {
    max-width: 27rem;
    margin: 0.9rem auto 1.75rem;
}

.webcam-wrapper {
    position: relative;
    width: min(14rem, 72vw);
    aspect-ratio: 1;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 0 0 10px rgba(197, 177, 255, 0.2);
    background: #1b1526;
}

#webcam {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.scan-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6), inset 0 0 32px rgba(197, 177, 255, 0.4);
}

.status-indicator {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(43, 30, 74, 0.8);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.bypass-btn {
    border: none;
    background: transparent;
    color: var(--lavender-deep);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.hidden-content {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

.show-content {
    display: block;
    animation: fadeInContent 1s ease forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    width: min(100%, 77rem);
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    position: relative;
    z-index: 2;
}

.hero-section {
    padding-top: 1.5rem;
    margin-bottom: 4rem;
}

.hero-copy {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.main-title {
    margin-top: 1rem;
    font-size: clamp(3.5rem, 9vw, 6.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hero-note {
    max-width: 39rem;
    margin: 1rem auto 0;
    font-size: 1.03rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.82fr);
    gap: 1.5rem;
    align-items: end;
    margin-top: 2.25rem;
}

.hero-photo-card {
    position: relative;
    border-radius: calc(var(--radius-xl) + 0.3rem);
    padding: 1rem;
    overflow: hidden;
}

.hero-photo-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 auto;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 177, 255, 0.34), transparent 70%);
}

.photo-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.central-photo-container {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-xl) - 0.2rem);
    background: var(--surface-strong);
}

.central-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

.hero-aside {
    display: grid;
    gap: 1rem;
}

.mini-note {
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.mini-note p {
    margin-top: 0.85rem;
    font-size: 0.96rem;
}

.hero-stats {
    display: grid;
    gap: 0.8rem;
}

.stat-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.stat-pill strong {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    color: var(--lavender-deep);
}

.stat-pill span {
    color: var(--muted);
    font-size: 0.92rem;
}

.floral-divider,
.footer-floral {
    text-align: center;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    font-size: 0.8rem;
}

.floral-divider {
    margin-top: 1.7rem;
}

.story-section {
    margin-bottom: 4.5rem;
}

.gallery-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.section-shell {
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
    border-radius: var(--radius-xl);
}

.section-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(197, 177, 255, 0.12), transparent 18%),
        radial-gradient(circle at 88% 86%, rgba(238, 158, 199, 0.12), transparent 16%);
    pointer-events: none;
}

.section-heading {
    position: relative;
    z-index: 1;
    max-width: 44rem;
    margin: 0 auto 1.65rem;
    text-align: center;
}

.section-title {
    margin-top: 1rem;
    font-size: clamp(2.7rem, 5vw, 3.9rem);
    font-weight: 600;
}

.section-subtitle {
    margin-top: 0.65rem;
    font-size: 0.98rem;
}

.video-stage {
    position: relative;
    width: min(100%, 800px);
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    overflow: clip;
    border-radius: var(--radius-xl);
    border: 6px solid var(--surface-strong);
    box-shadow: var(--shadow-lift);
}

.video-controls-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(18, 12, 28, 0.85));
    pointer-events: none;
}

.video-control-btn {
    pointer-events: auto;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.45);
    transform: scale(1.08);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn i {
    width: 1.2rem;
    height: 1.2rem;
}

.video-indicators {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    gap: 0.35rem;
}

.video-indicator-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.video-indicator-progress {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: var(--lavender);
    border-radius: 999px;
}

.video-card {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 0;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(36, 25, 52, 0.96), rgba(18, 12, 28, 0.98));
    border-radius: 0;
    overflow: hidden;
    overflow: clip;
    box-shadow: var(--shadow);
    min-height: 100%;
    opacity: 0;
    transform: translateX(36px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(24, 15, 36, 0.16));
    pointer-events: none;
}

.video-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.reel-video-backdrop,
.reel-video {
    position: absolute;
    inset: 0;
    margin: auto;
    aspect-ratio: auto;
    display: block;
    background: transparent;
}

.reel-video-backdrop {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(34px) saturate(1.08);
    transform: scale(1.14);
    opacity: 0.92;
}

.reel-video {
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    max-width: 100%;
    max-height: 100%;
}

.video-card.rotated .reel-video-backdrop,
.video-card.rotated .reel-video {
    aspect-ratio: auto;
    width: var(--video-stage-height);
    height: var(--video-stage-width);
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
}

.video-card.rotated .reel-video-backdrop {
    object-fit: cover;
    transform: translate(-50%, -50%) rotate(-90deg) scale(1.14);
}

.video-card.rotated .reel-video {
    object-fit: cover;
    object-position: center;
    max-width: none;
    max-height: none;
}

.photo-gallery-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.photo-heading {
    width: min(100% - 2rem, 58rem);
    margin: 0 auto 2rem;
}

.photo-marquee {
    position: relative;
    display: grid;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.photo-marquee::before,
.photo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    z-index: 2;
    pointer-events: none;
}

.photo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(246, 240, 255, 0.96), transparent);
}

.photo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(246, 240, 255, 0.96), transparent);
}

.photo-track {
    display: flex;
    width: max-content;
    gap: 1rem;
}

.photo-track-left {
    animation: photoMarqueeLeft 34s linear infinite;
}

.photo-track-right {
    animation: photoMarqueeRight 38s linear infinite;
}

.photo-strip {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
}

.photo-frame {
    position: relative;
    flex: 0 0 auto;
    width: clamp(12rem, 18vw, 17rem);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 45px rgba(119, 92, 178, 0.14);
    transform: rotate(var(--frame-tilt, 0deg));
    animation: frameDrift var(--drift-speed, 9s) ease-in-out infinite;
}

.photo-strip .photo-frame:nth-child(3n + 1) { --frame-tilt: -1.6deg; }
.photo-strip .photo-frame:nth-child(3n + 2) { --frame-tilt: 1.4deg; }
.photo-strip .photo-frame:nth-child(3n + 3) { --frame-tilt: -0.6deg; }
.photo-strip .photo-frame:nth-child(4n + 1) { --drift-speed: 8s; }
.photo-strip .photo-frame:nth-child(4n + 2) { --drift-speed: 10s; }
.photo-strip .photo-frame:nth-child(4n + 3) { --drift-speed: 9s; }
.photo-strip .photo-frame:nth-child(4n + 4) { --drift-speed: 11s; }

.photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.photo-frame:hover img {
    transform: scale(1.05);
    filter: saturate(1.07);
}

@keyframes photoMarqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 0.5rem)); }
}

@keyframes photoMarqueeRight {
    from { transform: translateX(calc(-50% - 0.5rem)); }
    to { transform: translateX(0); }
}

@keyframes frameDrift {
    0%, 100% { transform: rotate(var(--frame-tilt, 0deg)) translateY(0); }
    50% { transform: rotate(calc(var(--frame-tilt, 0deg) + 0.8deg)) translateY(-10px); }
}

.hot-shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(238, 158, 199, 0.18), transparent 22%),
        radial-gradient(circle at 82% 72%, rgba(197, 177, 255, 0.22), transparent 20%),
        linear-gradient(180deg, rgba(255, 252, 255, 0.88), rgba(248, 241, 255, 0.82));
}

.hot-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hot-shell::after {
    content: "";
    position: absolute;
    inset: auto -4rem -5rem auto;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 158, 199, 0.2), transparent 68%);
    filter: blur(18px);
    pointer-events: none;
}

.hot-layout {
    display: grid;
    gap: 1.35rem;
    align-items: stretch;
}

.hot-feature,
.hot-shot {
    position: relative;
    overflow: hidden;
    border-radius: 1.7rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 60px rgba(119, 92, 178, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.hot-feature {
    min-height: 32rem;
    isolation: isolate;
    grid-column: 1 / -1;
}

.hot-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
    animation: hotOrbFloat 8s ease-in-out infinite;
}

.hot-orb-a {
    width: 11rem;
    height: 11rem;
    top: -2rem;
    right: -1rem;
    background: rgba(197, 177, 255, 0.32);
}

.hot-orb-b {
    width: 8rem;
    height: 8rem;
    left: -1rem;
    bottom: 3rem;
    background: rgba(238, 158, 199, 0.24);
    animation-delay: -3s;
}

.hot-video,
.hot-shot img,
.hot-grid-video {
    width: 100%;
    height: 100%;
    display: block;
}

.hot-video {
    position: relative;
    z-index: 0;
    object-fit: contain;
    transition: transform 0.7s ease;
    filter: saturate(1.06) contrast(1.03);
    background:
        radial-gradient(circle at top, rgba(197, 177, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #221833, #181125);
}

.hot-feature:hover .hot-video {
    transform: scale(1.01);
}

.hot-overlay {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.15rem;
    z-index: 2;
    padding: 1rem 1.05rem 1.15rem;
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(34, 24, 51, 0.14), rgba(34, 24, 51, 0.72));
    backdrop-filter: blur(8px);
    color: #fff;
}

.hot-chip {
    display: inline-flex;
    padding: 0.36rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hot-feature-title {
    max-width: 20rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 0.95;
    font-weight: 600;
}

.hot-feature-note {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
}

.hot-stamp {
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    z-index: 3;
    background: rgba(43, 30, 74, 0.82);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: stampBounce 4s ease-in-out infinite;
}

.hot-grid {
    position: relative;
    min-height: 42rem;
}

.hot-shot {
    position: absolute;
    margin: 0;
    will-change: transform;
    transition:
        top 1s cubic-bezier(0.45, 0.05, 0.55, 0.95),
        left 1s cubic-bezier(0.45, 0.05, 0.55, 0.95),
        width 1s cubic-bezier(0.45, 0.05, 0.55, 0.95),
        height 1s cubic-bezier(0.45, 0.05, 0.55, 0.95),
        transform 1s cubic-bezier(0.45, 0.05, 0.55, 0.95),
        box-shadow 0.5s ease;
}

.hot-slot-1 { top: 0; left: 0; width: calc(25% - 0.75rem); height: 26rem; transform: rotate(-1.4deg); }
.hot-slot-2 { top: 0.6rem; left: calc(25% + 0.25rem); width: calc(50% - 1rem); height: 12rem; transform: rotate(1deg); }
.hot-slot-3 { top: 13.6rem; left: calc(25% + 0.25rem); width: calc(50% - 1rem); height: 12rem; transform: rotate(-0.8deg); }
.hot-slot-4 { top: 27.1rem; left: 0.2rem; width: calc(25% - 0.9rem); height: 12rem; transform: rotate(0.9deg); }
.hot-slot-5 { top: 27.25rem; left: calc(25% + 0.25rem); width: calc(25% - 0.75rem); height: 12rem; transform: rotate(-1deg); }
.hot-slot-6 { top: 27.1rem; left: calc(50% + 0.45rem); width: calc(25% - 0.75rem); height: 12rem; transform: rotate(1.2deg); }
.hot-slot-7 { top: 40.35rem; left: 0.2rem; width: calc(50% - 0.6rem); height: 12rem; transform: rotate(-0.9deg); }
.hot-slot-8 { top: 40.15rem; left: calc(50% + 0.4rem); width: calc(50% - 0.6rem); height: 12rem; transform: rotate(0.8deg); }

.hot-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(42, 24, 58, 0.18) 100%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.hot-shot::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
    transform: translateX(-120%);
    animation: hotShimmer 7s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hot-shot img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.hot-grid-video {
    position: relative;
    z-index: 1;
    object-fit: contain;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.hot-shot:hover img,
.hot-shot:hover .hot-grid-video {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.02);
}

.hot-shot:hover::after {
    opacity: 0.15;
}

@keyframes hotOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.05); }
}

@keyframes stampBounce {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-4px); }
}

@keyframes hotShimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

.hot-ticker {
    position: relative;
    overflow: hidden;
    margin-top: 1.2rem;
    padding-top: 0.25rem;
}

.hot-ticker::before,
.hot-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5rem;
    z-index: 1;
    pointer-events: none;
}

.hot-ticker::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 241, 255, 0.95), transparent);
}

.hot-ticker::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 241, 255, 0.95), transparent);
}

.hot-ticker-track {
    display: flex;
    gap: 0.85rem;
    width: max-content;
    animation: hotTickerMove 18s linear infinite;
}

.hot-ticker-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(159, 132, 245, 0.16);
    color: var(--lavender-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(119, 92, 178, 0.08);
}

@keyframes hotTickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 0.425rem)); }
}

.chat-gallery-container {
    max-width: 100%;
    margin: 0 auto;
}

.chat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1rem;
}

.chat-card {
    position: relative;
    overflow: hidden;
    padding: 2.8rem 1rem 1rem;
    border-radius: 1.65rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 239, 255, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

.panel-header {
    position: absolute;
    top: 0.95rem;
    left: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(197, 177, 255, 0.24);
    color: var(--lavender-deep);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.chat-screenshot,
.screenshot-placeholder {
    width: 100%;
    min-height: 20rem;
    border-radius: 1rem;
}

.chat-screenshot {
    position: relative;
    z-index: 1;
    object-fit: contain;
    background: transparent;
}

.screenshot-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
    background: rgba(255, 252, 255, 0.85);
    border: 1px dashed rgba(159, 132, 245, 0.24);
}

.placeholder-icon {
    width: 2rem;
    height: 2rem;
    color: var(--lavender-deep);
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1rem;
}

.spotify-card {
    padding: 0.75rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(119, 92, 178, 0.1);
}

.canvas-container {
    position: relative;
    height: 24rem;
    overflow: hidden;
    border-radius: 1.7rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 44%),
        linear-gradient(180deg, rgba(236, 228, 255, 0.84), rgba(250, 246, 255, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

#sparklesCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.wish-reveal-box {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    width: min(90%, 36rem);
    padding: 1rem 1.2rem;
    text-align: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(159, 132, 245, 0.18);
    box-shadow: 0 16px 35px rgba(119, 92, 178, 0.11);
}

#wishText {
    font-size: 0.98rem;
}

.footer {
    margin-top: 3rem;
    padding: 2rem 1.4rem;
    text-align: center;
}

.footer p {
    margin-top: 0.6rem;
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-petal {
    position: fixed;
    z-index: 0;
    opacity: 0.42;
    pointer-events: none;
    border-radius: 75% 0 75% 0;
    animation: fallAndWiggle linear infinite;
}

.media-blur-frame {
    position: relative;
    isolation: isolate;
}

.media-blur-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--media-image);
    background-size: cover;
    background-position: center;
    filter: blur(28px) saturate(1.08);
    transform: scale(1.12);
    opacity: 0.88;
    pointer-events: none;
}

.media-blur-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(34, 24, 51, 0.12));
    pointer-events: none;
}

.chat-card.media-blur-frame::before,
.chat-card.media-blur-frame::after {
    inset: 2.8rem 1rem 1rem;
    border-radius: 1rem;
}

.central-photo-container.media-blur-frame::before,
.central-photo-container.media-blur-frame::after {
    border-radius: calc(var(--radius-xl) - 0.2rem);
}

.hot-shot.media-blur-frame::before,
.hot-shot.media-blur-frame::after,
.photo-frame.media-blur-frame::before,
.photo-frame.media-blur-frame::after {
    border-radius: inherit;
}

.zoomable-media {
    cursor: zoom-in;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.media-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.media-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 14, 34, 0.78), rgba(22, 14, 34, 0.9));
    backdrop-filter: blur(18px);
}

.media-lightbox-backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--lightbox-image);
    background-size: cover;
    background-position: center;
    filter: blur(42px) saturate(1.08);
    transform: scale(1.08);
    opacity: 0.5;
}

.media-lightbox-stage {
    position: relative;
    z-index: 1;
    width: min(96vw, 76rem);
    height: min(90vh, 56rem);
    border-radius: 1.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 32px 80px rgba(15, 9, 24, 0.36);
}

.media-lightbox-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--lightbox-image);
    background-size: cover;
    background-position: center;
    filter: blur(38px) saturate(1.05);
    transform: scale(1.08);
    opacity: 0.84;
}

.media-lightbox-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(24, 15, 36, 0.16));
}

.media-lightbox-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.media-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(12px);
    cursor: pointer;
}

@keyframes fallAndWiggle {
    0% { transform: translateY(-12vh) translateX(0) rotate(0deg); }
    50% { transform: translateY(52vh) translateX(40px) rotate(180deg); }
    100% { transform: translateY(112vh) translateX(-18px) rotate(360deg); }
}

@media (max-width: 900px) {
    .hot-feature {
        min-height: 24rem;
    }

    .hot-grid {
        min-height: 68rem;
    }

    .hot-slot-1 { top: 0; left: 0; width: calc(50% - 0.5rem); height: 20rem; }
    .hot-slot-2 { top: 0.5rem; left: calc(50% + 0.5rem); width: calc(50% - 0.5rem); height: 13rem; }
    .hot-slot-3 { top: 14.5rem; left: calc(50% + 0.5rem); width: calc(50% - 0.5rem); height: 13rem; }
    .hot-slot-4 { top: 21.5rem; left: 0; width: calc(50% - 0.5rem); height: 13rem; }
    .hot-slot-5 { top: 28.5rem; left: calc(50% + 0.5rem); width: calc(50% - 0.5rem); height: 13rem; }
    .hot-slot-6 { top: 35.5rem; left: 0; width: calc(50% - 0.5rem); height: 13rem; }
    .hot-slot-7 { top: 49.5rem; left: calc(50% + 0.5rem); width: calc(50% - 0.5rem); height: 13rem; }
    .hot-slot-8 { top: 56.5rem; left: 0; width: calc(50% - 0.5rem); height: 13rem; }

    .hero-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hot-grid {
        min-height: 100rem;
    }

    .hot-slot-1 { top: 0; left: 0; width: 100%; height: 16rem; }
    .hot-slot-2 { top: 12.5rem; left: 0; width: 100%; height: 10.5rem; }
    .hot-slot-3 { top: 25rem; left: 0; width: 100%; height: 10.5rem; }
    .hot-slot-4 { top: 37.5rem; left: 0; width: 100%; height: 10.5rem; }
    .hot-slot-5 { top: 50rem; left: 0; width: 100%; height: 10.5rem; }
    .hot-slot-6 { top: 62.5rem; left: 0; width: 100%; height: 10.5rem; }
    .hot-slot-7 { top: 75rem; left: 0; width: 100%; height: 10.5rem; }
    .hot-slot-8 { top: 87.5rem; left: 0; width: 100%; height: 10.5rem; }

    .container {
        padding: 1.8rem 1rem 3rem;
    }

    .verification-container {
        padding: 1rem;
    }

    .verification-card,
    .section-shell,
    .hero-photo-card,
    .mini-note {
        backdrop-filter: blur(12px);
    }

    .main-title {
        font-size: 3.35rem;
    }

    .chat-gallery-container {
        overflow: hidden;
    }

    .chat-grid {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .chat-grid::-webkit-scrollbar {
        display: none;
    }

    .chat-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 2.7rem 0.85rem 0.85rem;
    }

    .video-card {
        min-height: 28rem;
    }

    .wish-reveal-box {
        border-radius: 1.4rem;
    }

    .petal-corner {
        width: 7rem;
        height: 7rem;
        opacity: 0.35;
    }

    .bg-flower {
        opacity: 0.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Stable 3x3 override for devahot grid */
.hot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    min-height: 0;
    width: 100%;
    margin: 0;
}

.hot-grid .hot-shot {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transform: none;
    transition: opacity 0.28s ease, transform 0.45s ease, box-shadow 0.5s ease;
}

.hot-grid .hot-shot::before {
    content: none;
    animation: none;
}

.hot-grid .hot-shot::after {
    opacity: 0.22;
}

.hot-grid .hot-shot:nth-child(3n + 1) {
    transform: rotate(-1.1deg);
}

.hot-grid .hot-shot:nth-child(3n + 2) {
    transform: rotate(0.85deg);
}

.hot-grid .hot-shot:nth-child(3n + 3) {
    transform: rotate(-0.7deg);
}

.hot-grid .hot-shot.swap-out {
    opacity: 0.18;
    transform: scale(0.96);
}

.hot-grid .hot-shot.swap-in {
    opacity: 1;
    transform: scale(1.02);
}

.hot-grid .hot-shot img,
.hot-grid .hot-shot .hot-grid-video {
    object-fit: contain;
    background: transparent;
}

@media (max-width: 900px) {
    .hot-layout {
        grid-template-columns: 1fr;
    }

    .hot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hot-layout {
        grid-template-columns: 1fr;
    }

    .hot-feature {
        min-height: 20rem;
    }

    .hot-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        width: 100% !important;
    }

    .hot-grid .hot-shot {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
    }
}

/* Mobile polish overrides */
@media (max-width: 640px) {
    .container {
        padding: 1.25rem 0.85rem 2.5rem;
    }

    .hero-section {
        padding-top: 0.5rem;
        margin-bottom: 2.8rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-kicker,
    .section-eyebrow,
    .photo-tag,
    .mini-note-label,
    .verification-badge {
        font-size: 0.68rem;
        padding: 0.42rem 0.75rem;
        letter-spacing: 0.06em;
    }

    .main-title {
        font-size: 2.95rem;
        line-height: 0.95;
    }

    .hero-note,
    .section-subtitle,
    .verify-subtitle {
        font-size: 0.94rem;
    }

    .hero-layout {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-photo-card,
    .mini-note,
    .section-shell {
        border-radius: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .stat-pill {
        padding: 0.85rem 0.95rem;
    }

    .stat-pill strong {
        font-size: 1.45rem;
    }

    .story-section {
        margin-bottom: 3rem;
    }

    .section-shell {
        padding: 1rem;
    }

    .section-heading {
        margin-bottom: 1.1rem;
    }

    .section-title {
        font-size: 2.55rem;
        line-height: 0.96;
    }

    .gallery-section,
    .photo-gallery-section,
    .hot-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .video-card {
        min-height: 100%;
    }

    .photo-heading {
        width: min(100% - 1.4rem, 42rem);
        margin-bottom: 1.25rem;
    }

    .photo-marquee {
        gap: 0.8rem;
    }

    .photo-marquee::before,
    .photo-marquee::after {
        width: 3.5rem;
    }

    .photo-strip {
        gap: 0.7rem;
        padding-right: 0.7rem;
    }

    .photo-frame {
        width: 9.5rem;
        border-radius: 1.1rem;
    }

    .hot-shell {
        padding: 1rem;
    }

    .hot-feature {
        min-height: 18rem;
        border-radius: 1.3rem;
    }

    .hot-overlay {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
        padding: 0.8rem 0.85rem 0.95rem;
        border-radius: 1rem;
    }

    .hot-feature-title {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .hot-feature-note {
        font-size: 0.88rem;
    }

    .hot-stamp {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 0.65rem;
        padding: 0.5rem 0.7rem;
    }

    .hot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.7rem;
    }

    .hot-grid .hot-shot {
        border-radius: 1.05rem;
    }

    .hot-ticker {
        margin-top: 0.9rem;
    }

    .hot-ticker-track span {
        font-size: 0.68rem;
        padding: 0.55rem 0.85rem;
    }

    .chat-gallery-container {
        overflow: visible;
    }

    .chat-grid {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        padding: 0 0.2rem 0.35rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .chat-grid::-webkit-scrollbar {
        display: none;
    }

    .chat-card {
        flex: 0 0 84%;
        scroll-snap-align: center;
        padding: 2.55rem 0.8rem 0.8rem;
        border-radius: 1.35rem;
    }

    .chat-screenshot,
    .screenshot-placeholder {
        min-height: 18.5rem;
        border-radius: 0.9rem;
    }

    .chat-card.media-blur-frame::before,
    .chat-card.media-blur-frame::after {
        inset: 2.55rem 0.8rem 0.8rem;
        border-radius: 0.9rem;
    }

    .spotify-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .canvas-container {
        height: 20rem;
        border-radius: 1.35rem;
    }

    .wish-reveal-box {
        width: calc(100% - 1.4rem);
        bottom: 0.9rem;
        padding: 0.85rem 0.95rem;
        border-radius: 1rem;
    }

    #wishText {
        font-size: 0.9rem;
    }

    .footer {
        padding: 1.35rem 1rem;
    }

    .petal-corner {
        width: 5.5rem;
        height: 5.5rem;
        opacity: 0.24;
    }

    .bg-flower {
        opacity: 0.45;
    }

    .media-lightbox {
        padding: 1rem;
    }

    .media-lightbox-stage {
        width: 100%;
        height: min(82svh, 42rem);
        border-radius: 1.2rem;
    }

    .media-lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.55rem 0.8rem;
        font-size: 0.82rem;
    }
}

.hot-grid .hot-shot.media-blur-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--media-image);
    background-size: cover;
    background-position: center;
    filter: blur(28px) saturate(1.08);
    transform: scale(1.12);
    opacity: 0.88;
    pointer-events: none;
}

.hot-grid .hot-shot.media-blur-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(34, 24, 51, 0.12));
    opacity: 1;
    pointer-events: none;
}

/* Handwritten letter layout rules */
.letter-card {
    background: var(--surface-strong);
    border: 1px solid rgba(112, 83, 157, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(119, 92, 178, 0.08);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.letter-card::before {
    content: "✉️";
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.3rem;
    opacity: 0.25;
}

.letter-date {
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.letter-body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.letter-body p {
    margin: 0;
}

.letter-greeting {
    font-weight: 600;
}

.letter-vouch {
    font-style: italic;
    color: var(--lavender-deep);
    margin-top: 0.4rem !important;
}

.letter-sign {
    margin-top: 0.6rem;
    border-top: 1px dashed rgba(112, 83, 157, 0.18);
    padding-top: 0.6rem;
    font-size: 0.85rem;
}

.letter-sign p {
    line-height: 1.4;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lavender-deep);
    margin-top: 0.15rem !important;
}

/* Meme Carousel Rules */
.meme-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    max-width: 500px;
}

.meme-carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--surface-strong);
    border: 1px solid rgba(112, 83, 157, 0.12);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
}

.meme-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.meme-carousel-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.meme-carousel-item img,
.meme-carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #110d18;
}

.carousel-nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--surface-strong);
    color: var(--lavender-deep);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(119, 92, 178, 0.08);
    transition: transform 0.2s ease, background 0.25s ease;
}

.carousel-nav-btn:hover {
    background: var(--lilac);
    transform: scale(1.08);
}

.carousel-nav-btn i {
    width: 1.3rem;
    height: 1.3rem;
}

/* Full screen 2x3 Stickers grid */
.stickers-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 4rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 100vw;
    gap: 0;
}

.sticker-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(112, 83, 157, 0.08);
}

.sticker-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sticker-card:hover img {
    transform: scale(1.08) rotate(2deg);
}
