/* Variables */
:root {
  --primary: #705900;
  --primary-container: #fecb00;
  --on-primary-container: #584500;
  --background: #f9f6f5;
  --surface: #ffffff;
  --outline: #afadac;
  --text-main: #2f2f2e;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-hero: 'Abril Fatface', serif;
  --hero-text-y: 50%;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--background); color: var(--text-main); font-family: var(--font-body); position: relative; z-index: 2; overflow-x: hidden; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing:-0.02em; }
.light-text { color: white; }

/* Floating Navbar (Logo Button Only) */
.navbar {
  position: fixed; top: 1.5rem; left: 50%; 
  transform: translate(-50%, -150%); /* Start hidden and offscreen */
  width: auto; height: auto;
  padding: 0.4rem;
  display: flex; justify-content: center; align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  
  /* Hollow Transparent circular border */
  background: transparent; 
  backdrop-filter: none;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  
  /* Transition for hiding on scroll and visual states */
  transition: transform 0.4s ease-in-out, opacity 0.4s, background-color 0.4s, border-color 0.4s;
}
.navbar.navbar-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  background: #000000; 
  border: 2px solid #000000;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.navbar.navbar-scrolling {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  background: #000000;
  border-color: #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
/* nav-hidden removed — navbar stays visible once revealed */
.navbar nav { display: none !important; } /* Hide navigation links */
.brand-logo { height: 52px; width: 52px; display: block; margin: 0; transition: transform 0.1s ease-out; cursor: pointer; }

.nav-wa-icon { display: flex; align-items: center; justify-content: center; background: transparent; transition: all 0.3s; }
.nav-wa-icon svg { fill: #fff; transition: fill 0.3s;} 
.nav-wa-icon:hover { transform: scale(1.1); }
.nav-wa-icon:hover svg { fill: var(--primary-container); } /* Yellow on hover */

/* Rounded Button */
.btn-primary {
   background: #fff; 
   color: #000; 
   padding: 0.65rem 1.75rem; /* slightly smaller padding */
   border:none; 
   font-weight: 800; cursor:pointer; text-transform:uppercase; font-size: 0.85rem; 
   transition: all 0.3s; text-decoration: none; display: inline-block;
   border-radius: 99px;
}
.btn-primary:hover { transform: scale(1.05); background: var(--primary-container); color: var(--text-main); } /* Yellow background, black text */

/* Hero */
.hero-section { position: relative; height: 100vh; min-height: 100svh; background: #000; overflow: hidden;}
.canvas-container { position: absolute; top: 0; left: 0; height: 100%; width: 100%; }
#hero-canvas { width: 100%; height: 100%; object-fit: cover; }
.vignette { position: absolute; top:0; left:0; width:100%; height:100%; background: radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 100%), rgba(0,0,0,0.15); z-index: 2; pointer-events:none; } /* 15% opacity */
.hero-content {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100svh;
  text-align: center;
  pointer-events: none;
  z-index: 50;
}
.hero-text { 
  font-family: var(--font-hero);
  font-size: clamp(3rem, 10vw, 7rem); 
  color: #fff; position: absolute; top: var(--hero-text-y); left: 0; transform: translateY(-50%); 
  font-weight: 400; text-transform: none; /* Abril Fatface looks better un-uppercased mostly, but sticking to design */
  opacity:0; z-index: 51; text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  white-space: normal; padding: 0 5vw; width: 100%; box-sizing: border-box; line-height: 1.1; 
}

/* Mobile Category Dropdown (hidden on desktop) */
.cat-dropdown-mobile {
    display: none;
    position: relative;
    width: 100%;
}
.cat-dropdown-toggle {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--outline);
    border-radius: 99px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232f2f2e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 12px;
    text-align: left;
    transition: all 0.3s;
}
.cat-dropdown-toggle:focus {
    outline: none;
    border-color: var(--primary-container);
    box-shadow: 0 0 0 3px rgba(254, 203, 0, 0.25);
}
.cat-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 2px solid var(--primary-container);
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.16);
    z-index: 300;
}
.cat-dropdown-mobile.open .cat-dropdown-menu {
    display: block;
}
.cat-dropdown-option {
    display: block;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 0;
    background: #fff;
    color: #000;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}
.cat-dropdown-option:hover,
.cat-dropdown-option.active {
    background: var(--primary-container);
    color: #000;
}

/* Ripple Partition */
.ripple-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; background: #f3f0ef; z-index: 20; }
.ripple-divider svg { position: relative; display: block; width: 200%; height: 70px; }
.ripple-divider .shape-fill { fill: #000000; }

/* Decks Section Controls */
.decks-section { padding: 4rem 4rem 2.5rem 4rem; background: #f3f0ef; min-height: 100vh; position: relative; z-index: 20;}
.section-header h2 { font-size: 3.5rem; margin-bottom: 2rem; text-transform: uppercase; font-weight: 900;}
.section-header h2,
.deck-controls,
.decks-masonry {
    will-change: transform, opacity;
}

.deck-controls { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; align-items: center; }
.cat-btn { background: transparent; border: 2px solid var(--outline); padding: 0.6rem 1.5rem; border-radius: 99px; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: all 0.3s; color: var(--text-main); font-size: 1.05rem; display: flex; align-items: center;}
.cat-btn.active, .cat-btn:hover, .dropdown-anchor:hover { background: var(--primary-container); border-color: var(--primary-container); color: #000; }

/* Minimal Controls Style */
.deck-controls { position: relative; z-index: 100; }

/* CSS Grid Masonry + Frame Dynamics */
.decks-masonry { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    grid-auto-rows: clamp(220px, 20vw, 300px); /* Enforce uniform row height */
    grid-auto-flow: dense;
    gap: 1.5rem; 
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.deck-card { 
    background: var(--surface); position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
    width: 100%; height: 100%;
    aspect-ratio: auto;
}
.deck-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 5; }

/* Masonry Aspect Ratio Blocks */
.deck-wide { 
    grid-column: span 2; 
}
.deck-tall { grid-row: span 2; }

/* True Embed Cover Masking (More zoomed out natively!) */
.card-media { width: 100%; height: 100%; background: #222; position: absolute; overflow: hidden; top: 0; left: 0; }
.canva-iframe {
    position: absolute;
    top: 50%; left: 50%;
    /* Locks aspect strictly to 16:9 natively to ensure no bars, but min-size allows much more frame info gracefully! */
    aspect-ratio: 16/9;
    min-width: 105%; min-height: 105%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    border: none; pointer-events: none;
}

.card-overlay { position: absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; display: flex; flex-direction: column; justify-content: space-between; }
.card-grad { position: absolute; bottom:0; left:0; width:100%; height:60%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); z-index: 1; }

.card-title-area { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem;}
/* Clickable Category Tag (Always visible) */
.card-cat { background: #000; color: var(--primary-container); padding: 0.4rem 1rem; border-radius: 99px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; pointer-events: all; text-decoration: none; transition: background 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.card-cat:hover { background: var(--primary-container); color: #000; }
.card-title { color: #fff; font-size: 1.8rem; text-shadow: 0 2px 10px rgba(0,0,0,0.8); font-family: var(--font-display); font-weight: 800; line-height: 1.1; }

.stat-prefix { color: var(--primary-container); text-decoration: underline; font-weight: 800; margin-right: 4px; }
.card-stats { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.8); color: #fff; padding: 0.6rem 0.8rem; border-radius: 8px; font-size: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; opacity: 0; transform: translateX(10px); transition: all 0.3s; text-align: right; z-index: 2;}
.deck-card:hover .card-stats { opacity: 1; transform: translateX(0); }

/* Custom Text Line Divider */
.see-more-divider {
    display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; 
    margin-top: 4rem; margin-bottom: 2rem; cursor:pointer; transition: all 0.3s;
}
.see-more-text {
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 800; color: #000; transition: color 0.3s;
}
.see-more-line-wrap {
    display: flex; align-items: center; width: 100%;
}
.divider-line {
    flex: 1; height: 1px; background: rgba(0,0,0,0.15); margin: 0 1rem;
}
.see-more-arrow { font-size: 0.8rem; color: #000; margin: 0 1rem; transition: transform 0.3s, color 0.3s; }

.see-more-divider:hover .see-more-text { color: var(--primary-container); }
.see-more-divider:hover .see-more-arrow { color: var(--primary-container); transform: translateY(5px); }

/* Fullscreen Overlay */
#fullscreen-overlay { position: fixed; top:0; left:0; width:100vw; height:100vh; background: rgba(0,0,0,0.9); z-index: 2000; display:flex; justify-content:center; align-items:center; opacity:0; pointer-events:none; transition: opacity 0.4s; }
#fullscreen-overlay.active { opacity:1; pointer-events:all; }
.fullscreen-content { width: 90%; height: 90%; background: var(--surface); border-radius: 16px; overflow: hidden; position: relative; display:flex; flex-direction: column; }
#close-fullscreen { position: absolute; top: 1rem; right: 1rem; font-size: 1.5rem; cursor:pointer; background: #fff; border:none; width: 40px; height: 40px; border-radius: 50%; z-index:10; }
#fullscreen-media { flex: 1; background: #ccc; }
.fullscreen-meta { padding: 2rem; }

/* Contact Section (Tree Skyline Reveal) */
.join-tribe-section {
  position: relative;
  /* Height ≈ the treeline itself (the PNG is ~43% as tall as it is wide) plus a sliver of sky,
     so the full-width skyline shows with NO side crop and still sits right under SEE MORE.
     Because the whole section is basically the trees, they come into view — and start parting —
     the instant the footer edges up from the bottom. */
  height: 48vw;
  min-height: 430px;
  overflow: hidden;
  z-index: 10;
  /* Pale yellow to white sky */
  background: linear-gradient(to bottom, #f3f0ef 0%, #fffacd 45%, #ffffff 100%);
}

/* Three superimposed tree-skyline layers forming one silhouette.
   Fills the (shortened) section so the trees sit high, right under "SEE MORE". */
.footer-skyline {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
  z-index: 20; pointer-events: none;
}
.footer-layer {
  position: absolute; inset: 0;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;  /* full image width — shows the whole skyline with its rounded ends, no side crop */
  will-change: transform;
}
.footer-layer-blue   { background-image: url("Footer - Blue.png");   z-index: 1; }
.footer-layer-yellow { background-image: url("Footer - Yellow.png"); z-index: 2; }
.footer-layer-black  { background-image: url("Footer - Black.png");  z-index: 3; }

/* White Fireflies Parallax Layer (sky) */
#fireflies-layer {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 8; pointer-events: none;
}
.firefly-dot {
  position: absolute;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px 4px rgba(255,255,255,0.8);
  opacity: 0.9;
}

/* Contact button + monkey, revealed behind the skyline (z 15 < skyline z 20) */
.join-tribe-content {
  position: absolute;
  left: 0; right: 0;
  bottom: 30%;
  z-index: 15;
  text-align: center;
  will-change: transform, opacity;
}
.contact-btn-wrap { position: relative; display: inline-block; }
/* Transparent hover bridge so moving up from the button to the icons keeps hover state */
.contact-btn-wrap::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 100%;
  transform: translateX(-50%);
  width: 380px; height: 220px;
}

.contact-btn {
  position: relative;
  z-index: 2;
  background: #000;
  color: var(--primary-container);          /* yellow text */
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.02em;
  padding: 1.5rem 5rem;
  border-radius: 99px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
  animation: contactPulse 2.8s ease-in-out infinite;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
@keyframes contactPulse {
  0%, 100% { transform: scale(1);     box-shadow: 0 12px 40px rgba(0,0,0,0.30); }
  50%      { transform: scale(1.045); box-shadow: 0 18px 55px rgba(0,0,0,0.45); }
}

/* Hover / open: yellow button, black text (pulse pauses, hover scale takes over) */
.contact-btn-wrap:hover .contact-btn,
.contact-btn-wrap.icons-open .contact-btn {
  animation: none;
  background: var(--primary-container);
  color: #000;
  transform: scale(1.06);
  box-shadow: 0 16px 48px rgba(254, 203, 0, 0.5);
}

/* Monkey sits on top of the button */
.contact-monkey {
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%);
  margin-bottom: -16px;                     /* overlap the top edge so it "sits" on the button */
  width: 200px; height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.28));
}

/* Icons appear above the button on hover */
.contact-icons {
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%);
  margin-bottom: 98px;                      /* clear the (larger) monkey */
  display: flex;
  gap: 2.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 4;
}
.contact-btn-wrap:hover .contact-icons,
.contact-btn-wrap.icons-open .contact-icons {
  opacity: 1;
  pointer-events: auto;
}

.contact-icon {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.contact-icon svg { fill: var(--primary-container); transition: fill 0.3s ease; }
.contact-btn-wrap:hover .contact-icon,
.contact-btn-wrap.icons-open .contact-icon { opacity: 1; transform: translateY(0) scale(1); }
.contact-btn-wrap:hover .contact-icon-mail,
.contact-btn-wrap.icons-open .contact-icon-mail { transition-delay: 0.09s; }
.contact-icon:hover { background: var(--primary-container); transform: translateY(-4px) scale(1.12); }
.contact-icon:hover svg { fill: #000; }

/* Tooltip metadata on each icon */
.contact-icon::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  background: #000;
  color: #fff;
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.contact-icon:hover::after { opacity: 1; }

/* Category Page Specific Styles */
.cat-page-container {
    padding: 8rem 1.5rem 4rem 1.5rem;
    max-width: none;
    width: 100%;
    margin: 0 auto;
}
.cat-header {
    font-size: 4rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 900;
}
.cat-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
}
.cat-list-item {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.cat-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 3rem;
    background: #111;
    color: #fff;
}
.cat-item-title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
}
.cat-item-meta {
    text-align: right;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 500;
}
.cat-item-media {
    width: 100%;
    /* 16:9 Aspect Ratio Container */
    position: relative;
    padding-bottom: 56.25%; 
    background: #000;
}
.cat-item-media::before {
    content: "Loading deck...";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.72);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 0;
}
.cat-item-media iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    z-index: 1;
}

/* Responsive / Mobile Optimization Breakpoints */
@media (max-width: 992px) {
    .decks-section {
        padding: 4rem 2rem 6rem 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --hero-text-y: 50%;
    }

    /* Hero section adjustments */
    .hero-text {
        font-size: clamp(3rem, 13vw, 5.6rem);
        padding: 0 7vw;
        line-height: 1.04;
    }
    
    /* Decks Grid & Controls — trimmed bottom padding so the trees sit close under SEE MORE */
    .decks-section {
        padding: 3rem 1.5rem 0.5rem 1.5rem;
    }
    .see-more-divider {
        margin-top: 2.5rem;
        margin-bottom: 0.75rem;
    }

    /* A phone is too narrow to show the whole wide skyline at once, so instead of a centred
       crop (which slices trees mid-canopy on BOTH sides), we anchor each layer to one of the
       PNG's natural rounded ends — blue & black to the right end, yellow to the left end — so
       every visible screen edge shows a clean, intended end rather than a hard cut.
       Height uses vw/px (not vh) so ScrollTrigger's geometry stays stable against the mobile
       URL-bar show/hide, letting the parting run cleanly to completion. */
    .join-tribe-section {
        height: 116vw;
        min-height: 420px;
    }
    .footer-layer {
        background-size: auto 120%;   /* fill the height (trees sit high, little sky) */
    }
    .footer-layer-blue,
    .footer-layer-black {
        background-position: right bottom;   /* rest against the PNG's natural RIGHT end */
    }
    .footer-layer-yellow {
        background-position: left bottom;    /* rest against the PNG's natural LEFT end */
    }

    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .deck-controls {
        margin-bottom: 2rem;
        gap: 0.75rem;
    }
    
    /* Hide desktop buttons, show mobile dropdown */
    .cat-btn {
        display: none !important;
    }
    .cat-dropdown-mobile {
        display: block !important;
    }
    
    .decks-masonry {
        grid-template-columns: 1fr !important; /* Force to single column on mobile */
        grid-auto-rows: 240px !important; /* Fixed uniform height on mobile */
    }
    
    .deck-card {
        grid-column: span 1 !important; /* Wide cards reset to span 1 column */
        height: 100% !important;
        aspect-ratio: auto !important;
    }

    .card-title {
        font-size: 1.4rem;
    }

    /* Contact Section styling on mobile */
    .join-tribe-content {
        bottom: 26%;
    }
    .contact-btn {
        font-size: 1.45rem;
        padding: 1.1rem 3.1rem;
    }
    .contact-monkey {
        width: 158px;
        margin-bottom: -13px;
    }
    .contact-icons {
        margin-bottom: 78px;
        gap: 1.5rem;
    }
    .contact-icon {
        width: 52px; height: 52px;
    }
    .contact-btn-wrap::before {
        width: 300px; height: 180px;
    }
    
    /* Category Page Mobile Layout */
    .cat-page-container {
        padding: 6rem 0.75rem 3rem 0.75rem;
    }
    
    .cat-header {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .cat-list {
        gap: 3rem;
    }
    
    .cat-list-item {
        border-radius: 12px;
    }
    
    .cat-item-header {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .cat-item-title {
        font-size: 1.5rem;
    }
    
    .cat-item-meta {
        text-align: left;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --hero-text-y: 50%;
    }

    .decks-section {
        padding: 2.5rem 1rem 4rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .decks-masonry {
        grid-auto-rows: 210px !important; /* Shorter card height on small mobile */
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-title-area {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .card-stats {
        display: none; /* Hide hover stats details on very small mobile screens */
    }
}
