﻿html,
body {
    scroll-behavior: smooth !important;
    min-height: 100%;
    max-width: 1980px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    color: var(--fg);
    -webkit-text-size-adjust: 100%;
    /* avoid iOS text inflation */
    text-size-adjust: 100%;
}

body {
    min-height: 100svh;
    overflow-x: hidden;
    background-image: url('../../images/bg.png');
    background-repeat: repeat;
    background-size: 95px;
}

#smooth-wrapper,
#smooth-content {
    position: relative;
}

h2 {
    font-size: clamp(2rem, 8vw + 1rem, 7rem);
}

.card-stack {
    width: 100%;
    margin: 0;
    position: relative;
    /* margin-top: var(--nav-height); */
}

    .card-stack::after {
        content: "";
        display: block;
    }

.stacked-card {
    position: relative;
    width: 100%;
    min-height: calc(100svh - var(--nav-height));
    /*cannot set max height because content may be lengthier*/
    margin: 0;
    background: var(--card);
    border: none;
    border-radius: 0;
    box-shadow: none;
    will-change: transform, opacity;
}

    .stacked-card:not(:first-child) {
        margin-top: -1px;
        padding-top: 20px;
        padding-bottom: 20px;
    }


.card-body {
    padding: 2rem 3rem; /* decreasing padding creates horizontal scrolling and that upsets scroll trigger for card-out animation.*/
}

@media (prefers-reduced-motion: reduce) {
    /* .stacked-card {
         scroll-behavior: auto;
     } */
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    perspective: 50vh;
    perspective-origin: center;
    z-index: 5;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-effect-div {
    transition-duration: 200ms;
    width: 80%;
    height: 180%;
    background-color: var(--theme-teal);
    opacity: 0.3;
    border-radius: 50%;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    box-shadow: #0e2d1561 -3px -37px 17px 5px;
}

.sticky-nav-bar {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 40px;
    z-index: 5;
    background: transparent;
    /*transform: translateY(-130px);*/
    opacity: 0;
    transition: opacity 300ms ease;
    will-change: transform;
    overflow: visible;
}

.sticky-nav-bar-text {
    margin: 0;
    padding: 10px 20px;
}


.center-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.moving-gradient {
    --x: calc(var(--posX, 0) * 1px);
    --y: calc(var(--posY, 0) * 1px);
    /* why dark gradient? when user moves down from dark to bright light, then it hits the happiness emotion like seeing light after coming out of deep dark */
    /* this is orange gradient used in first publish   background-image: radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent 100px, #724000), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent 100px, #8f6501), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent, #ffc801), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent, #ff1818);*/
    background-image: radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent 100px, #042d21), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent 100px, var(--theme-teal)), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent 100px, var(--theme-teal-light)), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent 100px, #87ffdf), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent, #ffead7), radial-gradient(60vmax 40vmax at calc(50% + var(--x)) calc(0% + var(--y)), transparent, #ffb27c);
    /*background-blend-mode: multiply, multiply, difference, difference;*/
}

.brand-container {
    color: white;
    margin: auto;
    transition: filter 300ms ease-in-out;
}

.brand-img {
    max-height: 60px;
    max-width: 80svw;
    transition: filter 300ms ease;
    /*filter:saturate(2);*/
}

.brand-name {
    transition: filter 500ms;   
}
.brand-name-preset{
    opacity:0;
}
    .brand-name-hover {
        filter: drop-shadow(-1px -4px 1px rgba(0, 0, 0, 0.445));
    }


.brand-name {
    /* grid-row: 1;
     align-self: start; */
    /* Forces it to stick to the top */
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.brand-overview {
    position: fixed;
    bottom: clamp(10px,4dvh,15dvh);
    left: 0;
    color: #ffffffba;
    width: 100%;
    margin: auto;
    z-index: 1;
    transition: color 500ms ease;
    /*transition: filter 500ms ease, transform 200ms ease, color 500ms ease;  */
}

.brand-overview-text {
    max-width: 80%;
    width: 98svw;
    margin: auto;
    margin-bottom:20px;
}

.brand-overview-bg-effect {
    z-index: -1;
    left: 0;
    width: 100%;
    position: fixed;
    background-image: linear-gradient(0deg, #00c89c, #48ffe0, #84fff7, transparent);
    background-blend-mode: difference;
}

/* this class is added in theme.js in DOMContentLoaded function*/
.brand-overview-focus-hide {
    color: transparent;
}
.brand-overview-focus-color {
    color: black;
}

.prevent-select {
    /* Safari */
    -webkit-user-select: none;
    /* IE 10+ */
    -ms-user-select: none;
    /* Standard Syntax */
    user-select: none;
}
.hero-stats {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 21%;
}
.stat-badge {
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
    color:white;
    transition: color 500ms ease;
}
.hero-stats-hover-hide {
   opacity:0 !important;
}
.hero-stats-hover-color .stat-badge {
color:black !important;
} 



@media (max-width: 1280px) and (max-height:500px) {

    /* most landscape cases */
    .brand-overview-text {      
        max-width: 96svw;
    }
    .brand-img {
        /*  max-height: 100px;*/
        margin-top: -25px;
    }
}
@media(max-width:1024px){
    .brand-overview{
          bottom:5dvh;
    }
    .stat-badge i, .stat-badge  br{
        display:none;
    }
    .stat-badge {
        border: 1px solid rgba(0, 150, 136, 0.5);
    }
}
@media(max-height:440px){
    /*bm2511181040: max-height must be consistent*/
    .moving-gradient{
        background-image:unset;
        background-color:var(--theme-teal-dark);
    }
    .globe-container{
        display:none;
    }
    .hero-stats {
        top: 26%;
    }
    .brand-overview-focus {
        color: inherit;
    }
}
/*
    Media Queries use Windows object to calculate view port size.
    z-fold unfolded :  874 x 820
    z-fold folded :  480 x 1120
    Note-8: 411 x 750  
    
    z-fold unfolded :  875 x 971  (with screen object)
    Note-8: 412 x 846 (with screen object)
*/


.large-card-text {
    font-size: clamp(1rem, 1vw + 1rem, 3rem);
    margin-top: 50px;
}

.teaser {
    position: relative;
}

.teaser-text {
    /* this class is used to simulate text hopping on text card*/
    position: absolute;
    left: 50%;
    transform: scale(1) translate(-50%);
    display: inline-block;
    padding: 4px 8px;
    font-size: clamp(1rem, 8vw, 1.15rem);
    overflow: hidden;
    /*this is required for glow effect created by teaser-text::after class below*/
    white-space: nowrap;
}

.kickOutHTop {
    top: -12svh;
}

/* Glow layer */
.teaser-text.flash::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    /* start at START of text */
    width: 90%;
    /* glow width */
    height: 100%;
    background: radial-gradient(circle, rgba(70, 255, 212, 0.9) 10%, rgba(0, 201, 121, 0.4) 32%, transparent 70%);
    opacity: 0.75;
    border-radius: 50%;
    filter: blur(12px);
    animation: glowSweep 2.8s ease-in-out infinite;
}

/* Animation */
@keyframes glowSweep {
    0% {
        left: -120%;
    }

    45% {
        left: 115%;
    }
    /* sweep fully across text */
    100% {
        left: 115%;
    }
}

.card-bg-teal-orange {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 205, 137, 0.838) 35%, rgb(255, 149, 19) 70%);
    filter: blur(20px);
    mix-blend-mode: screen;
}

.card-bg-solid-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--shade-t1), var(--shade-o1));
    z-index: -1;
    /* transform: translateY(-1%); */
}

.gradient-text-primary {
    background-image: linear-gradient(45deg, #cd9000, #04b991);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .gradient-text-primary {
        background: none;
        background-image: none;
        color: #001f18;
    }
}

/* Feature Items */
.feature-item {
    background-color: #ffffff52;
    border: 1px solid #ffffff52;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .feature-item:hover {
        transform: scale(1.04) !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

/* Card Image Container Styling */
.card-image-container {
    max-width: 900px;
    width: 100%;
}

    .card-image-container img {
        /* Soften edges */
        border-radius: 0.75rem;
        /* More pronounced shadow */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

#whereIsH {
    height: 100svh;
}

#aboutDealersip header p {
    max-width: 700px;
}

/* Card 2 Specific Styles */

#whereIsH .card-body {
    color: #240e00;
    /* Light text color for dark background */
}

#whereIsH header p {
    font-weight: 700 !important;
    max-width: 800px;
}

/* Animated Heading - optional, but adds punch */
#whereIsH .animated-heading {
    color: var(--theme-orange);
    /* text-shadow: 0 0 15px rgb(177 67 0 / 50%), 0 0 30px rgb(57 105 0 / 20%); */
}

#whereIsH .solution-box {
    background-color: rgba(255, 255, 255, 0.08);
    /* Slightly transparent white for a frosted look */
    backdrop-filter: blur(5px);
    /* Optional: Frosted glass effect */
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

    #whereIsH .solution-box:hover {
        transform: translateY(-5px);
        background-color: rgba(255, 255, 255, 0.15);
    }

    #whereIsH .solution-box .list-unstyled li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }




/* Card 3 Specific Styles */
#dealersipImpact .card-bg-light-neutral {
    background-image: radial-gradient(circle at center top, var(--shade-t1) 0%, var(--shade-t2) 40%, var(--shade-o1) 65%, var(--shade-o2) 85%, white 100%);
    /* background-image: radial-gradient(circle at center top, #d7ffec 0%, #b6ffeb 40%, #ffefda 65%, #fff7f3 85%, white 100%); */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#dealersipImpact header p {
    max-width: 800px;
}

#dealersipImpact .kpi-block {
    background-color: #ffffff8f;
    border: 1px solid #ffffff8f;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease;
}

    #dealersipImpact .kpi-block:hover {
        transform: scale(1.05);        
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

#dealersipImpact .kpi-headline {
    font-size: 1.5rem;
}

#dealersipImpact .kpi-category {
    font-size: 1.1rem;
    color: #495057;
    margin-top: 10px;
}

.dadvantage {
    box-shadow: inset 2px 0px 0px 0px #e0e0e0;
}


/* Card 4 Specific Styles: The Gateway */

#dealersipFeatures {
    height: auto;
    min-height: 100vh;
}

    #dealersipFeatures .card-bg-subtle-light {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, var(--shade-o1), var(--shade-t1));
        z-index: 0;
    }

    #dealersipFeatures .card-body {
        position: relative;
        z-index: 1;
        color: #333;
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    #dealersipFeatures header p {
        max-width: 900px;
    }

.howIsItPossibleTop {
    top: -15svh;
}

/* Scroll Indicator Animation (optional, but highly recommended for flow) */
.scroll-down-animation {
    animation: bounce 2s infinite;
    display: block;
}

@keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* dealershipInventory styles */
#dealershipInventory .card-5bg {
    background-image: radial-gradient(#abffe8, transparent, #ffcdaf);
}

#dealershipInventory header p {
    max-width: 900px;
}

.invWithoutH {
    top: -12svh;
}

.websiteWithoutH {
    top: -12svh;
}

.result-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--shade-t1), var(--shade-o1));
    width: fit-content;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 15px;
}

    .result-box p {
        font-weight: 500;
    }

@media(max-width:850px) {
    .result-box {
        display: block;
        text-align: center;
    }
}


#dealershipWebsite p strong {
    font-weight: 600;
}

#dealershipWebsite .bg-subtle-white {
    background: #ffffff36;
}

#dealershipWebsite header p {
    max-width: 900px;
}


#aiContentWriter .sticky-note {
    white-space: normal;
    text-align: center;
    background: linear-gradient(var(--note-top), #ffffff00);
    transform: rotate(0deg) !important;
}

#aiContentWriter .sticky-note-shadow {
    box-shadow: none;
}

#aiContentWriter .sticky-note::before {
    display: none;
}

#aiContentWriter .sticky-note-yellow:after {
    background: #ddfff3;
    border-bottom: 1px solid var(--note-bottom);
}

#aiContentWriter header p {
    max-width: 900px;
}

#aiContentWriter .sticky-note-yellow {
    --note-top: #e4fff3;
    --note-bottom: #ffffff;
}

.contentWithoutH {
    top: -12svh;    
}

#aiContentWriter p strong {
    font-weight: 500;
}

.content-bg-accent {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(70% 60% at 15% 15%, #cffff5 0%, transparent 60%), radial-gradient(70% 50% at 85% 30%, #fff0d0 0%, transparent 60%), radial-gradient(90% 70% at 50% 100%, #fffdf9 0%, transparent 70%);
}


#socialMediaMarketing p strong {
    font-weight: 500;
}

#socialMediaMarketing header p {
    max-width: 900px;
}

.socialMediaMarketing-bg {
    background: radial-gradient(white, #d0fff3);
}

.visibilityWithoutH {
    top: -10svh;
}

.max-width-800 {
    max-width: 800px;
}

.max-width-900 {
    max-width: 900px;
}
/* --- dealershipCrm styles --- */
.crm-bg-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 10% 10%, #cffff5 0%, transparent 60%), radial-gradient(70% 55% at 90% 30%, #fff0d0 0%, transparent 60%), radial-gradient(90% 70% at 50% 100%, #fdfbf7 0%, transparent 60%);
    z-index: -1;
    filter: blur(0.2px);
}

/* Teaser align like others but unique card visuals */
.crmWithoutH {
    top: -10svh;
}

/* Glass panels */
.glass {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
}

/* Split layout */
.crm-split {
    row-gap: 2rem;
}

/* Pipeline rail */
.crm-rail {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.crm-rail-line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#12b88b, #ff6000);
    border-radius: 2px;
    opacity: .8;
}

.crm-node {
    position: relative;
}

.crm-node-dot {
    position: absolute;
    left: 2px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #12b88b;
    box-shadow: 0 0 0 4px #12b88b22;
}

.crm-node-card {
    margin-left: 28px;
    padding: 16px;
}

/* Stat chips */
.crm-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #eef2ef;
}

    .crm-chip i {
        font-size: 1rem;
        color: var(--theme-teal);
    }

/* Bars */
.crm-bars {
    --your: 52;
    --peer: 31;
}

.crm-bar-track {
    height: 10px;
    border-radius: 999px;
    background: #e9f7f3;
    overflow: hidden;
}

.crm-bar-fill {
    height: 100%;
    border-radius: 999px;
    width: 0;
    transition: width .8s ease;
}

    .crm-bar-fill.your {
        background: linear-gradient(90deg, #12b88b, #74ffda);
        width: calc(var(--your, 50) * 1%);
    }

    .crm-bar-fill.peer {
        background: linear-gradient(90deg, #ffb07a, #ff6000);
        width: calc(var(--peer, 30) * 1%);
    }

/* Action cues */
.crm-cue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    background: #f7fffb;
    border: 1px dashed #12b88b55;
}

    .crm-cue i {
        color: var(--theme-orange);
    }

/* Result ribbon */
.crm-result {
    background: linear-gradient(90deg, #fff4ea, #e8fff7);
    border: 1px solid #ffe6cf;
    border-radius: 14px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .crm-rail-line {
        left: 8px;
    }

    .crm-node-card {
        margin-left: 26px;
    }

    .crm-chip,
    .crm-cue {
        font-size: .95rem;
    }
}

@media (max-width: 575px) {

    .crm-chip,
    .crm-cue {
        width: 100%;
    }
}

.takeTheRightMove {
    top: -12svh;
}


/* getStarted styles */
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(120% 80% at 50% -20%, #fff0d0 0%, transparent 60%), radial-gradient(120% 80% at 50% 120%, #cffff5 0%, transparent 60%), linear-gradient(180deg, #ffffff, #ffffff);
}

.cta-copy {
    max-width: 880px;
}

/* Chips */
.cta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #eef2ef;
}

    .cta-chip i {
        color: var(--theme-teal);
    }

/* Panel + form */
.cta-panel {
    max-width: 720px;
    padding: 18px;
}

.btn-cta {
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1rem,2vw,2rem);
    white-space: nowrap;
    z-index: 2; /* required because prevent select div has z-index 1. So if this is not set then button is not clickable.*/
    position: relative;
}

    .btn-cta:hover {
        opacity: .92;
    }

/* Assurance line */
.cta-assurance {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 575px) {
    .cta-panel {
        padding: 14px;
    }

    .cta-form .input-group-lg > .form-control,
    .cta-form .input-group-lg > .btn {
        font-size: 1rem;
    }
}

/* --- Hesitation Card --- */
.hesitation-card {
    position: relative;
}

.hesitation-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(70% 55% at 15% 25%, var(--shade-o1) 0%, transparent 60%), radial-gradient(70% 55% at 85% 35%, var(--shade-t1) 0%, transparent 60%), linear-gradient(180deg, #ffffff, #ffffff);
}

/* Giant ghosted H with a scrape band that "removes" it */
.hesitation-watermark {
    position: relative;
    font-weight: 800;
    font-size: min(38vw, 520px);
    line-height: 0.8;
    color: #0000000f;
    /* very light */
    text-shadow: 0 8px 40px #0000000c;
}

    .hesitation-watermark .scrape {
        content: "";
        position: absolute;
        left: -5%;
        right: -5%;
        top: 44%;
        height: 14%;
        border-radius: 24px;
        background: #ffffff70;
        mix-blend-mode: screen;
        filter: blur(1px);
        box-shadow: 0 3px 2px #00000014, inset 0 0 0 1px #ffffff70;
        transform: rotate(-33deg);
    }


.stillThinking {
    top: -12svh;
}
/* Responsive */
@media (max-width: 991px) {
    .hesitation-watermark {
        display: none;
    }
}

.nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffffd2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: var(--theme-orange);
    backdrop-filter: blur(6px);
}

    /*.nav-toggle:afte1r {
        content: ' ';
        position: absolute;*/
    /* background: radial-gradient(circle at 50% 50%, #ffffff00, var(--theme-orange));*/
    /*background: var(--theme-orange);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        z-index: -1;
    }*/

    .nav-toggle:hover {
        background: var(--theme-teal);
        color: white;
    }

        .nav-toggle:hover:after {
            display: none;
        }
/* --- Slide-Out Panel --- */
.side-nav {
    position: fixed;
    top: -12px;
    right: -12px;
    height: 100svh;
    width: 0;
    overflow: hidden;
    background: radial-gradient(#ffd8c0 10%, #b4ffeb 100%, transparent);
    background: radial-gradient(#b4ffeb 10%, #ffd8c0 100%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: width 0.5s ease;
    z-index: 999;
}

    .side-nav.open {
        width: min(320px, 80vw);
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

/* Inner content */
.side-nav-inner {
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--theme-teal-dark);
    white-space: nowrap; /* when it collapses then text wraps. this is to stop it. */
}

.side-nav-link-contianer {
    position: relative;
    max-height: calc(100svh - 100px);
    overflow: hidden; /* so that longer text does not create scrollbar when it is being collapsed */
    overflow-y: auto;
    padding: 0 1.5rem;
}
/* Close Button */
.nav-close {
    background: none;
    border: none;
    color: var(--theme-orange);
    font-size: 1.3rem;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 2;
}

    .nav-close:hover {
        color: var(--theme-teal);
    }

/* Links */
.nav-list li {
    margin: 1rem 0;
}

.nav-list a {
    color: var(--theme-teal-dark);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .nav-list a:hover {
        color: var(--theme-orange);
        padding-left: 6px;
    }

/* Optional glow border on open */
.side-nav.open::before {
    content: "";
    position: absolute;
    top: 0;
    left: -4px;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--theme-teal), var(--theme-orange));
    border-radius: 0 2px 2px 0;
}

.nav-list .contact {
    max-width: 175px;
    margin-top: -12px;
}

/* styles for dollars  */
.viewContainerP1 {
    height: 100%;
    width: 100%;
    position: relative;
    margin: auto;
    max-width: 836px; /* 800 + (12*3) Because focusGame max to 800, so to make width same 36 is added. */
}

.viewContainerP2 {
    height: calc(100% - 24px);
    width: calc(100% - 24px);
    position: relative;
    max-height: 424px; /* 24 added to cover padding so that canvas always looks rounded. script sets max height of canvas as 400*/
}

#view {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    border-radius: 8px;
    width: 100%;
}

    #view:hover {
        cursor: pointer;
    }

.text-strike {
    text-decoration: line-through;
}

#clickToHateH {
    position: absolute;
    top: 0;
    left: -12px;
    width: calc(100% + 24px);
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1d1d1dff;
    pointer-events: none;
    opacity: 1;
    transition-duration: 500ms;
    background: #f6faef;
    border-radius: 8px;
    padding-bottom: 12px;
    cursor: pointer;
    text-align: center;
}

#finalPushMetaphor {
    top: -12svh;
}

.hidden-h-img {
    max-height: 60px;
    padding: 10px;
    border-radius: 8px;
}

#focusGame {   
    max-width: 800px;
    border-radius:8px;
    padding: 5px;
}

#loadingFocus {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    top: 60%;
}


