:root {
    --bg-color: #030303; 
    --text-color: #ffffff;
    --font-ui: 'Montserrat', sans-serif;
    --font-script: 'Caveat', cursive; /* Fully supporting Latin Extended */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-ui);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 15px; /* Extremely constrained base text scaling */
    letter-spacing: 0.02em;
}

strong, b { font-weight: 700; }
h1, h2, h3, h4, p, a, input, textarea, button, span { font-family: var(--font-ui); }

.container {
    max-width: 1200px; /* Tighter layout for minimal geometry */
    margin: 0 auto;
    width: 100%;
}

/* --- INTERACTIVE NOISE & FLUID WAVE BACKGROUND --- */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: -1;
    /* High frequency fractal noise for grainy smoke effect mapping */
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="1.2" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.25;
    mix-blend-mode: soft-light; /* Makes the deep blacks pure, and the white blobs immensely textured */
}

.wave-container {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2;
    background-color: #020202; 
    overflow: hidden;
    filter: blur(80px); /* Massive blur merges geometric blobs into continuous liquid */
    animation: containerBreathe 20s infinite alternate ease-in-out;
}

@keyframes containerBreathe {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

/* Base blobs that drift */
.wave-blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.wave-1 {
    width: 60vw; height: 50vh;
    top: -10%; left: -20%;
    animation: liquidShape 10s infinite linear, waveDrift 10s infinite alternate ease-in-out;
}

.wave-2 {
    width: 50vw; height: 60vh;
    bottom: -10%; right: -20%;
    background: rgba(255, 255, 255, 0.2);
    animation: liquidShape 12s infinite linear, waveDriftRev 12s infinite alternate ease-in-out;
}

.wave-4 {
    width: 60vw; height: 50vh;
    top: 30%; right: -10%;
    background: rgba(255, 255, 255, 0.15);
    animation: liquidShape 14s infinite linear, waveDriftCross 15s infinite alternate ease-in-out;
}

/* Mouse tracking interactive wave component - Reduced size per user request */
.wave-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 1) 0%, rgba(147, 51, 234, 0.7) 25%, rgba(147, 51, 234, 0) 50%);
    /* Tightly packed ultra-bright electric purple radial core mapping through the massive 80px container blur */
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    animation: liquidShape 8s infinite linear;
}

@keyframes waveDrift {
    0% { transform: translate(0vw, 0vh) scale(0.8) rotate(0deg); }
    100% { transform: translate(60vw, 40vh) scale(1.6) rotate(60deg); }
}

@keyframes waveDriftRev {
    0% { transform: translate(0vw, 0vh) scale(0.9) rotate(0deg); }
    100% { transform: translate(-50vw, -40vh) scale(1.8) rotate(-50deg); }
}

@keyframes waveDriftCross {
    0% { transform: translate(0vw, 0vh) scale(0.9) rotate(0deg); }
    100% { transform: translate(-70vw, 20vh) scale(1.5) rotate(-60deg); }
}

@keyframes liquidShape {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    33% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
    66% { border-radius: 30% 70% 60% 40% / 60% 40% 50% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* --- MAIN SECTION LAYOUTS --- */
#main-content {
    opacity: 0; /* Hidden initially, reveals after the GSAP fly-through zoom */
    position: relative;
    z-index: 10;
    will-change: opacity;
}

/* --- HERO WRAPPER --- */
.hero-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: transparent; /* Lets the active purple waves bleed directly through the landing page */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    will-change: transform;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform;
}

.initials-lh {
    font-size: clamp(80px, 25vw, 280px);
    line-height: 0.8;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.05em;
    transform-origin: 50% 50%;
    will-change: transform;
}

.hero-solid-text {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    will-change: opacity, transform;
}

.hero-script {
    font-family: var(--font-ui); /* Emulates the requested Causten font globally */
    font-size: clamp(11px, 1.2vw, 16px); /* Radically scaled down per user critique */
    color: var(--text-color);
    font-weight: 300; /* Light variant applied directly */
    letter-spacing: 0.3em; /* Expanded tracking to compensate for the micro scaling */
    text-transform: uppercase;
}

/* --- MAIN CONTENT TYPOGRAPHY --- */
.nav-minimal {
    padding: 2.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left strong { font-size: 16px; letter-spacing: 0.1em; pointer-events: auto; }
.nav-right { display: flex; gap: 2.5rem; pointer-events: auto; }
.nav-right a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}
.nav-right a:hover { color: var(--text-color); }

.page-section {
    padding: 8vh 5vw; /* Radically reduced vertical gaps */
    position: relative;
}

/* Headings scale strictly controlled Max 40-50px */
.section-title {
    font-size: clamp(30px, 4vw, 45px); /* Constrained Heading Limit */
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.section-title span {
    font-weight: 300;
    opacity: 0.5;
}

/* GRID STRUCTURE (AI, Foto, Grafika, PPC) */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.focus-card {
    border: 1px solid rgba(255,255,255,0); 
    padding: 3rem;
    background: rgba(255,255,255,0.02);
    border-radius: 4px; /* Minimal edge */
    transition: background 0.4s ease, border-color 0.4s ease;
}

.focus-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.icon-wrapper {
    margin-bottom: 2rem;
}

.focus-icon {
    width: 32px;
    height: 32px;
    color: rgba(255,255,255,0.5); /* Dim initial state */
}

.focus-card h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.focus-card p {
    font-size: 15px; /* Hard lock to 15px */
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.mt-4 { margin-top: 3rem; }

.qr-link {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s;
    cursor: pointer;
}

.qr-link:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
}

.qr-img { width: 90px; height: 90px; filter: invert(1); opacity: 0.8; }

/* --- PORTFOLIO GALLERY (Fotka pri Fotke) --- */
.portfolio-category-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.portfolio-category-label:first-of-type {
    margin-top: 0;
}

.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.gallery-img {
    height: 250px; /* Constrains height globally, auto scales width cleanly */
    width: auto;
    object-fit: contain; /* Enforces native uncropped visibility */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border-radius: 4px; /* Exceedingly gentle soft edge */
}

/* If some PNGs lack any background, they mix straight into the void natively */

.gallery-img:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6); /* Physical object hover lift */
}

@media(max-width: 900px) {
    .gallery-img { height: 160px; }
}

/* Vertical Timeline (Umelecká činnosť) */
.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 120px; 
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-row {
    display: flex;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-year {
    width: 100px;
    text-align: right;
    padding-right: 2rem;
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    padding-top: 2px;
}

.timeline-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-color);
    position: absolute;
    left: 115px; 
    top: 8px;
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
    z-index: 2;
}

.timeline-content {
    padding-left: 4rem;
    flex: 1;
}

.timeline-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 4px;
    transition: background 0.3s, border-color 0.3s;
}

.timeline-card:hover {
    background: rgba(255,255,255,0.05); /* Interactive card highlighting */
    border-color: rgba(255,255,255,0.2);
}

.timeline-card h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.timeline-card span {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.mt-2 { margin-top: 1rem; }

@media(max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-year { width: auto; text-align: left; position: absolute; top: -30px; left: 40px; }
    .timeline-node { left: 15px; }
    .timeline-content { padding-left: 3.5rem; padding-top: 1.5rem; }
}

/* Table/Box Form (Contact Grid) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.contact-info h3 {
    font-size: 26px;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-info p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-color);
}

.contact-form-box {
    width: 100%;
}

.table-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

.table-form input,
.table-form textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-color);
    padding: 1rem 1.2rem;
    font-size: 15px;
    border-radius: 4px;
    outline: none;
    font-weight: 500;
    transition: border-color 0.3s, background 0.3s;
}

.table-form textarea {
    resize: vertical;
}

.table-form input:focus,
.table-form textarea:focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.6);
}

.submit-btn {
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 1rem;
    transition: transform 0.3s, opacity 0.3s;
    width: fit-content;
}

.submit-btn:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
}

.footer-minimal {
    padding: 4rem 5vw;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
}

/* --- PRICING SECTION --- */
.pricing-category {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-cat-icon {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.45);
}

.pricing-category-header h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.pricing-category-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
}

/* Pricing Grids */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media(max-width: 900px) {
    .pricing-grid,
    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 2rem;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.pricing-card-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.pricing-card-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-card-price span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.pricing-card-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    font-size: 6px;
    top: 0.65rem;
    color: rgba(255,255,255,0.5);
}

/* Tier Cards (Svadby, Pet, PPC) */
.pricing-card-tier {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-tier-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    width: fit-content;
}

.pricing-tier-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pricing-tier-details span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    padding-left: 1rem;
    position: relative;
}

.pricing-tier-details span::before {
    content: '●';
    position: absolute;
    left: 0;
    font-size: 6px;
    top: 0.35em;
    color: rgba(255,255,255,0.5);
}

.pricing-card-tier .pricing-card-price {
    margin-bottom: 0;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Sub-sections (Svadby, Pet) */
.pricing-sub-section {
    margin-top: 2.5rem;
}

.pricing-sub-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Table-style Cards (Grafický dizajn) */
.pricing-table-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

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

.pricing-table-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 2rem;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.pricing-table-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
}

.pricing-table-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-table-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-table-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    flex-wrap: wrap;
    gap: 0.3rem;
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-row > span:first-child {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.pricing-table-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
}

.pricing-table-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    width: 100%;
}

/* PPC Grid */
.pricing-ppc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    align-items: start;
}

.pricing-ppc-block {
    display: flex;
    flex-direction: column;
}

.pricing-ppc-block .pricing-card-tier {
    flex: 1;
}

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

.pricing-ppc-platform {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-ppc-platform span {
    font-weight: 400;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-transform: none;
}

/* GSAP Start States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

@media(max-width: 900px) {
    .focus-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .nav-minimal { flex-direction: column; gap: 1.5rem; }
    .nav-right { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
}

/* --- SUCCESS MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.85) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-checkmark {
    margin: 0 auto 2rem;
    width: 72px;
    height: 72px;
}

.checkmark-svg {
    width: 72px;
    height: 72px;
}

.checkmark-circle {
    stroke: #4ade80;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
}

.checkmark-check {
    stroke: #4ade80;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.modal-overlay.active .checkmark-circle {
    animation: circleAnim 0.6s ease 0.2s forwards;
}

.modal-overlay.active .checkmark-check {
    animation: checkAnim 0.4s ease 0.7s forwards;
}

@keyframes circleAnim {
    to { stroke-dashoffset: 0; }
}

@keyframes checkAnim {
    to { stroke-dashoffset: 0; }
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.modal-close-btn {
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s, opacity 0.3s;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
