/* DDAZZL.com - Prismatic Brilliance */
/* Palette: #0a0a1a, #7b2ff7, #f72fb0, #00f0ff, #ffc847, #e8e4f0, #f0eef5 */
/* Fonts: Syne (display), Plus Jakarta Sans (body), Space Mono (accent) */

:root {
    --violet: #7b2ff7;
    --magenta: #f72fb0;
    --cyan: #00f0ff;
    --pearl: #e8e4f0;
    --void: #0a0a1a;
    --frost: #f0eef5;
    --gold: #ffc847;
    --scroll-y: 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--void);
    color: var(--frost);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   SPARKLE PARTICLES — 30 tiny diamond shapes drifting
   ============================================================ */
.sparkle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--frost);
    transform: rotate(45deg);
    opacity: 0;
    animation: sparkleDrift var(--dur) linear infinite;
    animation-delay: var(--delay);
}

@keyframes sparkleDrift {
    0% {
        opacity: 0;
        transform: rotate(45deg) translateY(0) scale(0.5);
    }
    15% {
        opacity: var(--peak-opacity, 0.6);
    }
    85% {
        opacity: var(--peak-opacity, 0.6);
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translateY(-100vh) scale(0.5);
    }
}

/* ============================================================
   NAVIGATION — Translucent pill, top-right
   ============================================================ */
.pill-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

.pill-nav:hover {
    background: rgba(10, 10, 26, 0.85);
    border-color: rgba(0, 240, 255, 0.4);
    padding: 0.6rem 1.5rem;
}

.pill-nav-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
    flex-shrink: 0;
}

.pill-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--frost);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pill-nav-links {
    display: flex;
    gap: 1.2rem;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: max-width 0.5s ease, opacity 0.4s ease 0.1s, margin 0.4s ease;
    margin-left: 0;
    white-space: nowrap;
}

.pill-nav:hover .pill-nav-links {
    max-width: 600px;
    opacity: 1;
    margin-left: 1rem;
}

.pill-nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pearl);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pill-nav-links a:hover {
    color: var(--cyan);
}

/* ============================================================
   PRISM SECTIONS — base styles
   ============================================================ */
.prism-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlapping sections with negative margins */
.prism-section + .prism-section {
    margin-top: -4rem;
}

/* ============================================================
   SECTION 1: ORIGIN — Dark void with light point
   ============================================================ */
.origin {
    background: var(--void);
    min-height: 100vh;
}

.light-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 20px 10px rgba(255, 255, 255, 0.4),
        0 0 60px 30px rgba(123, 47, 247, 0.2),
        0 0 100px 50px rgba(0, 240, 255, 0.1);
    z-index: 2;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                width 1.2s ease,
                height 1.2s ease,
                box-shadow 1.2s ease;
}

.light-point.expanded {
    width: 30px;
    height: 30px;
    box-shadow:
        0 0 80px 40px rgba(255, 255, 255, 0.5),
        0 0 160px 80px rgba(123, 47, 247, 0.3),
        0 0 250px 120px rgba(247, 47, 176, 0.15),
        0 0 350px 160px rgba(0, 240, 255, 0.1);
}

.prismatic-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 0;
    transform-origin: top center;
    opacity: 0;
    border-radius: 2px;
    transition: height 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 1.2s ease;
}

.ray.active {
    opacity: 0.7;
    height: 140vh;
}

.hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-text.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.site-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(5rem, 15vw, 14rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.letter {
    display: inline-block;
    background: linear-gradient(
        135deg,
        hsl(calc(var(--hue) * 1deg), 85%, 60%),
        hsl(calc((var(--hue) + 40) * 1deg), 85%, 70%)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterShimmer 3s ease infinite;
    animation-delay: calc(var(--hue) * 0.01s);
    --hue: 280;
}

@keyframes letterShimmer {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.4) saturate(1.2); }
}

/* Chromatic aberration on headlines */
.chromatic {
    text-shadow: 2px 0 var(--cyan), -2px 0 var(--magenta);
}

/* Override for letters that use background-clip */
.site-title.chromatic {
    text-shadow: none;
}

.site-title .letter {
    filter: drop-shadow(2px 0 0 rgba(0, 240, 255, 0.3)) drop-shadow(-2px 0 0 rgba(247, 47, 176, 0.3));
}

.hero-sub {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(232, 228, 240, 0.4);
    margin-top: 1.8rem;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    transition: opacity 1s ease;
}

.scroll-hint.visible {
    opacity: 1;
}

.scroll-hint.hidden {
    opacity: 0;
}

.scroll-hint-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(232, 228, 240, 0.3);
}

.scroll-hint-arrow {
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(232, 228, 240, 0.3);
    border-bottom: 1px solid rgba(232, 228, 240, 0.3);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   SECTION 2: REFRACTION — Faceted cards with 3D tumble
   ============================================================ */
.refraction {
    background: linear-gradient(160deg, var(--void) 0%, rgba(123, 47, 247, 0.06) 50%, var(--void) 100%);
    min-height: 120vh;
    padding: 8rem 0;
}

.diagonal-slice {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: linear-gradient(165deg,
        transparent 45%,
        rgba(123, 47, 247, 0.04) 49%,
        rgba(123, 47, 247, 0.06) 51%,
        transparent 55%
    );
    pointer-events: none;
}

.diagonal-slice.reverse {
    background: linear-gradient(-165deg,
        transparent 45%,
        rgba(0, 240, 255, 0.04) 49%,
        rgba(0, 240, 255, 0.06) 51%,
        transparent 55%
    );
}

.section-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 2rem;
    margin: 0 auto;
}

.section-content.centered {
    text-align: center;
    max-width: 800px;
}

.refraction-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Facet Cards — gemstone clip-path, 3D tumble entrance */
.facet-card {
    position: relative;
    background: rgba(232, 228, 240, 0.025);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(123, 47, 247, 0.12);
    clip-path: var(--clip);
    padding: 3.5rem 4.5rem;
    transform: perspective(800px) rotateY(70deg) scale(0.8) rotate(var(--card-rotate, 0deg));
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    overflow: hidden;
}

.facet-card.visible {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg) scale(1) rotate(var(--card-rotate, 0deg));
}

.facet-card:hover {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.08);
}

/* Holographic sheen overlay on cards */
.holo-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        calc(var(--scroll-y, 0) * 0.36deg),
        rgba(123, 47, 247, 0.06) 0%,
        rgba(0, 240, 255, 0.04) 33%,
        rgba(247, 47, 176, 0.06) 66%,
        rgba(255, 200, 71, 0.04) 100%
    );
    mix-blend-mode: screen;
    pointer-events: none;
    transition: background 0.1s linear;
}

.facet-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--cyan);
    display: block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.facet-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    text-transform: uppercase;
    color: var(--pearl);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.facet-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(232, 228, 240, 0.6);
    position: relative;
    z-index: 1;
}

/* Light beams — prismatic streaks */
.light-beam {
    position: absolute;
    width: 2px;
    height: 250%;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
    animation: beamDrift 14s ease-in-out infinite alternate;
}

.beam-1 {
    left: 15%;
    background: linear-gradient(to bottom, transparent, var(--violet), transparent);
    transform: rotate(12deg);
    animation-delay: 0s;
}

.beam-2 {
    left: 40%;
    background: linear-gradient(to bottom, transparent, var(--magenta), transparent);
    transform: rotate(-8deg);
    animation-delay: 3.5s;
}

.beam-3 {
    left: 65%;
    background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
    transform: rotate(6deg);
    animation-delay: 7s;
}

.beam-4 {
    left: 88%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: rotate(-14deg);
    animation-delay: 10.5s;
}

@keyframes beamDrift {
    0% { transform: translateY(-15%) rotate(var(--beam-rot, 10deg)); opacity: 0.08; }
    50% { opacity: 0.18; }
    100% { transform: translateY(15%) rotate(var(--beam-rot, 10deg)); opacity: 0.08; }
}

/* ============================================================
   SECTION 3: SPECTRUM — Gem cards in asymmetric grid
   ============================================================ */
.spectrum {
    background: linear-gradient(180deg, var(--void) 0%, rgba(0, 240, 255, 0.04) 50%, var(--void) 100%);
    min-height: 100vh;
    padding: 6rem 0;
}

.section-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, var(--violet), var(--magenta), var(--cyan), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spectrum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gem-card {
    position: relative;
    background: rgba(232, 228, 240, 0.02);
    border: 1px solid rgba(232, 228, 240, 0.06);
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
    /* 3D tumble entrance */
    opacity: 0;
    transform: perspective(800px) rotateY(60deg) scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.gem-card.visible {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg) scale(1);
}

/* Slight rotations for asymmetric feel */
.gem-card:nth-child(1) { transform-origin: left center; }
.gem-card:nth-child(2) { transform-origin: right center; }
.gem-card:nth-child(3) { transform-origin: left center; }
.gem-card:nth-child(4) { transform-origin: right center; }

.gem-card.visible:nth-child(1) { transform: perspective(800px) rotateY(0deg) rotate(-1deg) scale(1); }
.gem-card.visible:nth-child(2) { transform: perspective(800px) rotateY(0deg) rotate(1.5deg) scale(1); }
.gem-card.visible:nth-child(3) { transform: perspective(800px) rotateY(0deg) rotate(0.5deg) scale(1); }
.gem-card.visible:nth-child(4) { transform: perspective(800px) rotateY(0deg) rotate(-1.5deg) scale(1); }

/* Gem card hover color accents */
.gem-card.violet:hover { border-color: var(--violet); box-shadow: 0 0 40px rgba(123, 47, 247, 0.12); }
.gem-card.cyan:hover { border-color: var(--cyan); box-shadow: 0 0 40px rgba(0, 240, 255, 0.12); }
.gem-card.magenta:hover { border-color: var(--magenta); box-shadow: 0 0 40px rgba(247, 47, 176, 0.12); }
.gem-card.gold:hover { border-color: var(--gold); box-shadow: 0 0 40px rgba(255, 200, 71, 0.12); }

.gem-shape {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.8rem;
}

.gem-shape svg {
    width: 100%;
    height: 100%;
}

.gem-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pearl);
    margin-bottom: 0.8rem;
}

.gem-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(232, 228, 240, 0.5);
}

/* ============================================================
   SECTION 4: BRILLIANCE — Full gradient, typewriter, energy
   ============================================================ */
.brilliance {
    background: var(--void);
    min-height: 100vh;
    padding: 8rem 0;
}

.holo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from calc(var(--scroll-y, 0) * 0.5deg) at 50% 50%,
        rgba(123, 47, 247, 0.07),
        rgba(247, 47, 176, 0.07),
        rgba(255, 200, 71, 0.07),
        rgba(0, 240, 255, 0.07),
        rgba(123, 47, 247, 0.07)
    );
    animation: holoSpin 30s linear infinite;
    pointer-events: none;
}

@keyframes holoSpin {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.brilliance-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 9vw, 7rem);
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--frost), var(--gold), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.brilliance-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(232, 228, 240, 0.6);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Typewriter effect */
.typewriter-container {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 3rem;
    min-height: 1.5em;
}

.typewriter-cursor {
    display: inline-block;
    animation: cursorBlink 0.8s step-end infinite;
    color: var(--cyan);
    font-weight: 700;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.brilliance-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--frost);
    text-shadow: 0 0 20px rgba(123, 47, 247, 0.3);
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(232, 228, 240, 0.35);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ============================================================
   SECTION 5: RESOLUTION — Golden-white calm, convergence
   ============================================================ */
.resolution {
    background: radial-gradient(ellipse at center,
        rgba(255, 200, 71, 0.06) 0%,
        rgba(123, 47, 247, 0.04) 40%,
        var(--void) 70%
    );
    min-height: 80vh;
    padding: 8rem 0 4rem;
}

.resolution-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 7vw, 5rem);
    text-transform: uppercase;
    color: var(--pearl);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.resolution-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(232, 228, 240, 0.55);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.convergence-point {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(
        var(--violet),
        var(--magenta),
        var(--gold),
        var(--cyan),
        var(--violet)
    );
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 0 50px rgba(123, 47, 247, 0.3),
        0 0 100px rgba(0, 240, 255, 0.15),
        0 0 150px rgba(255, 200, 71, 0.1);
}

.convergence-point.visible {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

/* ============================================================
   FOOTER — Prismatic gradient dissolving into spectral beams
   ============================================================ */
.prism-footer {
    position: relative;
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg,
        var(--void) 0%,
        rgba(123, 47, 247, 0.04) 40%,
        rgba(255, 200, 71, 0.06) 100%
    );
    text-align: center;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-mark {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    background: linear-gradient(90deg, var(--violet), var(--magenta), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-year {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: rgba(232, 228, 240, 0.25);
}

.spectral-beams {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.spectral-beam {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 0;
    opacity: 0;
    transition: height 1.5s ease, opacity 1s ease;
    transform-origin: bottom center;
}

.spectral-beam.active {
    opacity: 0.25;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .spectrum-grid {
        grid-template-columns: 1fr;
    }

    .gem-card.visible:nth-child(1),
    .gem-card.visible:nth-child(2),
    .gem-card.visible:nth-child(3),
    .gem-card.visible:nth-child(4) {
        transform: perspective(800px) rotateY(0deg) rotate(0deg) scale(1);
    }
}

@media (max-width: 768px) {
    .facet-card {
        padding: 2rem 2.5rem;
        clip-path: none;
        transform: perspective(800px) rotateY(0deg) scale(1) rotate(0deg);
    }

    .facet-card.visible {
        transform: perspective(800px) rotateY(0deg) scale(1) rotate(0deg);
    }

    .brilliance-stats {
        gap: 2.5rem;
    }

    .pill-nav {
        top: 1rem;
        right: 1rem;
    }

    .prism-section + .prism-section {
        margin-top: -2rem;
    }

    .brilliance-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }
}

@media (max-width: 480px) {
    .brilliance-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .site-title {
        font-size: clamp(3.5rem, 18vw, 8rem);
    }
}
