/* ============================================
VARIABILI COLORI
============================================ */
:root {
--body-color:   #21212E;
--text-color:   #FFF;
--title-color:  #FF8A00;
--button-color: #FF8A00;
--primary:      #286EC0;
--secondary:    #4DA8DA;
--dark:         #203647;
--danger:       #CB0007;
--success:      #28a745;
--warning:      #ffc107;
--spacer-color: #AE1C75;
/* Organize Comics */
--oc-bg:        #FFD700;
--oc-bg-input:  #FFF8DC;
--oc-txt:       #FFFFFF;
--oc-ink:       #0A0A0A;
--oc-red:       #DC143C;
--oc-cyan:      #00FFFF;
--oc-pink:      #FF1493;
--oc-orange:    #FF8C00;
--font-d: 'BebasNeue-Book', 'Arial Narrow', Arial, sans-serif;
--font-b: 'BebasNeue-Light', 'Arial Narrow', Arial, sans-serif;
--font-m: 'BebasNeue-Bold', 'Arial Narrow', Arial, sans-serif;
}

/* ============================================
BASE
============================================ */
html { scroll-behavior: smooth; }
body {
font-family: 'Roboto Slab', serif;
font-size: 1rem;
font-weight: bold;
color: var(--text-color);
background-color: var(--body-color);
-webkit-font-smoothing: antialiased;
}
a { color: var(--text-color); text-decoration: none; }
.logo {
align-items: flex-end;
display: flex;
display: block;
font-size: 15px;
line-height: 55px
}
.logo .part_version { margin-right: -28px }
.logo .part_0 { color: #286ec0; margin-right: -12px; vertical-align: top }
.logo .part_1 { font-style: italic }
.logo .part_1,.logo .part_2 { font-size: 55px; font-weight: 700 }
.logo .part_3 { font-size: 20px; font-weight: 600 }
/* Logo inline nella hero */
.logo-inline {
display: inline-flex;
align-items: baseline;
gap: 2px;
font-size: 15px;
line-height: 1;
}
.logo-inline .part_0 { color: var(--primary); font-size: 13px; vertical-align: top; }
.logo-inline .part_1,
.logo-inline .part_2 { font-size: 30px; font-weight: 700; font-style: italic; }
.logo-inline .part_3 { font-size: 14px; font-weight: 600; }

/* ============================================
HERO
============================================ */
.hero-dynamic {
position: fixed;
inset: 0;
z-index: 1;
display: flex;
align-items: center;
background:
linear-gradient(to right, rgba(0,0,0,.85) 30%, rgba(0,0,0,.2) 100%),
url('/assets/imgs/hero_section.png') no-repeat right center / cover;
background-color: var(--body-color);
border-bottom: 4px solid var(--spacer-color);
}
.hero-content {
padding: 80px 60px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
max-width: 700px;
z-index: 2;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--oc-cyan);
color: var(--oc-ink);
padding: 10px 20px;
font-family: var(--font-m);
font-size: 1rem;
letter-spacing: .15em;
text-transform: uppercase;
border: 3px solid var(--oc-ink);
box-shadow: 4px 4px 0 var(--oc-ink);
margin-bottom: 30px;
transform: rotate(-2deg);
}
.badge-icon { font-size: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50%       { transform: translateY(-5px); }
}
.hero-main-title {
font-family: var(--font-d);
font-size: clamp(3rem, 7vw, 5rem);
line-height: .95;
letter-spacing: .02em;
text-transform: uppercase;
color: var(--text-color);
margin-bottom: 25px;
}
.title-line         { display: block; text-shadow: 5px 5px 0 rgba(10,10,10,.2); }
.title-line.highlight {
color: var(--oc-red);
-webkit-text-stroke: 3px var(--oc-ink);
paint-order: stroke fill;
}
.hero-subtitle {
font-family: 'Roboto Slab', serif;
font-size: 1.3rem;
line-height: 1.6;
color: rgba(255,255,255,.8);
margin-bottom: 40px;
}
/* CTA Group - DOPPIA CTA */
.hero-cta-group {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 50px;
}
.btn-hero-primary {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--font-m);
font-size: 1.2rem;
letter-spacing: .1em;
text-transform: uppercase;
padding: 16px 32px;
background: var(--oc-cyan);
color: var(--oc-ink);
border: 3px solid var(--oc-ink);
box-shadow: 5px 5px 0 var(--oc-ink);
transition: all 150ms ease;
}
.btn-hero-primary:hover {
background: var(--oc-pink);
color: var(--oc-txt);
transform: translate(2px, 2px);
box-shadow: 3px 3px 0 var(--oc-ink);
}
.btn-hero-secondary {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--font-m);
font-size: 1.2rem;
letter-spacing: .1em;
text-transform: uppercase;
padding: 16px 32px;
background: var(--oc-bg);
color: var(--oc-ink);
border: 3px solid var(--oc-ink);
box-shadow: 5px 5px 0 var(--oc-ink);
transition: all 150ms ease;
}
.btn-hero-secondary:hover {
background: var(--oc-orange);
color: var(--oc-txt);
transform: translate(2px, 2px);
box-shadow: 3px 3px 0 var(--oc-ink);
}
.btn-arrow { font-size: 1.5rem; transition: transform 150ms ease; }
.btn-hero-primary:hover .btn-arrow,
.btn-hero-secondary:hover .btn-arrow { transform: translateX(5px); }
/* Stats */
.hero-stats {
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
display: block;
font-family: var(--font-d);
font-size: 2.5rem;
color: var(--title-color);
line-height: 1;
margin-bottom: 5px;
}
.stat-label {
font-family: var(--font-m);
font-size: .7rem;
letter-spacing: .15em;
text-transform: uppercase;
color: rgba(255,255,255,.6);
}
.stat-divider { width: 2px; height: 40px; background: rgba(255,255,255,.2); }
/* Scroll indicator */
.scroll-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
z-index: 20;
animation: fadeInUp 1s ease 1s both;
}
.mouse {
width: 26px; height: 40px;
border: 3px solid var(--text-color);
border-radius: 20px;
position: relative;
}
.wheel {
width: 4px; height: 8px;
background: var(--text-color);
border-radius: 2px;
position: absolute;
top: 8px; left: 50%;
transform: translateX(-50%);
animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}
.scroll-indicator span {
font-family: var(--font-m);
font-size: .75rem;
letter-spacing: .2em;
text-transform: uppercase;
color: rgba(255,255,255,.6);
}
/* Animations */
.animate-fade-in  { opacity: 0; animation: fadeIn  .8s ease forwards; }
.animate-slide-up { opacity: 0; animation: slideUp .8s ease forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp {
from { opacity: 0; transform: translateX(-50%) translateY(20px); }
to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
MAIN LAYOUT (spacer per hero fixed)
============================================ */
#container {
margin-top: 100vh;
min-height: 100vh;
position: relative;
z-index: 2;
background-color: var(--body-color);
}
/* Divider colori brand */
.border-bottom-spacer { border-bottom: 2px solid var(--spacer-color) !important; }
.border-top-spacer    { border-top:    2px solid var(--spacer-color) !important; }

/* ============================================
FORM BANNER
============================================ */
.form-banner {
  background: var(--dark);
  border: 1px solid var(--primary) ;
  border-left: 4px solid var(--title-color);
  border-radius: 8px;
  padding: 20px 24px;
}
.form-banner-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-banner-title {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  font-weight: 400;
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
}
.form-banner-hint {
  font-family: 'Roboto Slab', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-color);
  opacity: .75;
  margin: 0;
  line-height: 1.4;
}
.form-banner-fields {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 12px;
  align-items: end;
}
.form-banner-field,
.form-banner-submit {
  display: flex;
  flex-direction: column;
}
.form-label-custom {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.form-control-custom {
  background-color: transparent !important;
  border: 1px solid var(--primary ) !important;
  border-radius: 4px !important;
  color: var(--text-color) !important;
  font-family: 'Roboto Slab', serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.form-control-custom::placeholder { color: rgba(255,255,255,.4) !important; }
.form-control-custom:focus {
  border-color: var(--title-color) !important;
  background-color: rgba(40,110,192,.1) !important;
  box-shadow: none !important;
}
.form-select-custom {
  background-color: var(--dark) !important;
  border: 1px solid var(--primary) !important;
  color: var(--text-color) !important;
  font-family: 'Roboto Slab', serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  text-transform: uppercase;
}
.form-select-custom:focus { border-color: var(--title-color) !important; box-shadow: none !important; }
.btn-submit {
  background-color: var(--text-color);
  color: #000;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px;
  transition: all .2s;
}
.btn-submit:hover {
  background-color: var(--button-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,138,0,.3);
}
.powered {
  text-align: right;
  font-size: 11px;
  color: var(--text-color);
  margin-top: 10px;
  opacity: .4;
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
}

/* ============================================
FILTRI ORDINAMENTO E RICERCA
============================================ */
.filter-group {
font-family: 'Roboto Slab', serif;
font-size: 14px;
font-weight: 600;
color: var(--text-color);
}
.search-box { position: relative; }
.search-icon {
position: absolute;
left: 10px; top: 50%;
transform: translateY(-50%);
font-size: 12px;
opacity: .7;
z-index: 1;
pointer-events: none;
}
.search-input { padding-left: 32px !important; width: 240px; }

/* ============================================
FILTRI STATO
============================================ */
.btn-status {
padding: 6px 14px;
background-color: var(--dark);
border: 1px solid var(--primary);
color: var(--text-color);
border-radius: 4px;
font-family: 'Roboto Slab', serif;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
transition: all .2s;
}
.btn-status:hover,
.btn-status.active {
background-color: var(--title-color);
border-color: var(--title-color);
color: #000;
}

/* ============================================
SEZIONE NEW ECOMICS (proposte)
============================================ */
.proposals-section {
width: 100%;
background-color: var(--body-color);
padding: 60px 32px;
border-top: 4px solid var(--spacer-color);
font-family: 'Roboto Slab', serif;
}
.proposals-inner { max-width: 1200px; margin: 0 auto; }
.proposals-eyebrow {
font-family: 'Bangers', cursive;
font-size: 1.2rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--title-color);
opacity: .7;
margin-bottom: .5rem;
}
.proposals-title {
font-family: 'Bangers', cursive;
font-size: clamp(2.5rem, 6vw, 4rem);
line-height: 1.1;
letter-spacing: .05em;
text-transform: uppercase;
color: var(--text-color);
margin-bottom: 1rem;
font-weight: 400;
}
.proposals-subtitle {
font-family: 'Roboto Slab', serif;
font-size: 1.1rem;
color: rgba(255,255,255,.7);
margin-bottom: 2rem;
line-height: 1.5;
}

/* ============================================
FEATURE CARD
============================================ */
.feature-card {
background: var(--dark);
border: 1px solid var(--primary);
border-left: 4px solid var(--title-color);
border-radius: 8px;
padding: 12px 16px;
display: flex;
gap: 12px;
transition: all .3s ease;
position: relative;
overflow: hidden;
font-family: 'Roboto Slab', serif;
}
.feature-card:hover {
border-color: var(--title-color);
border-left-color: var(--primary);
transform: translateX(4px);
box-shadow: 0 4px 15px rgba(255,138,0,.15);
}
.feature-card.status-open        { border-left-color: var(--title-color); }
.feature-card.status-in_progress { background: rgba(40,110,192,.15); border-left-color: var(--primary); }
.feature-card.status-completed   { background: rgba(40,167,69,.15);  border-left-color: var(--success); }
.feature-card.status-rejected    { background: rgba(203,0,7,.15);    border-left-color: var(--danger); }
.vote-section { display: flex; flex-direction: column; align-items: center; min-width: 45px; }
.vote-btn {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
padding: 6px 8px;
border: 2px solid var(--primary);
border-radius: 4px;
background: var(--body-color);
transition: all .2s;
user-select: none;
}
.vote-btn:hover:not(.voted):not(.disabled) { background: var(--title-color); border-color: var(--title-color); }
.vote-btn:hover:not(.voted):not(.disabled) .arrow { color: #000; }
.vote-btn.voted:not(.disabled) { background: var(--title-color); border-color: var(--title-color); }
.vote-btn.voted:not(.disabled) .arrow,
.vote-btn.voted:not(.disabled) .vote-count { color: #000; }
.vote-btn.disabled { opacity: .4; cursor: not-allowed; border-color: #555; pointer-events: none; }
.vote-btn.disabled .arrow,
.vote-btn.disabled .vote-count { color: #777; }
.arrow       { font-size: 12px; color: var(--primary); line-height: 1; margin-bottom: 2px; font-weight: bold; }
.vote-count  { font-family: 'Bangers', cursive; font-size: 16px; color: var(--text-color); letter-spacing: 1px; }
.vote-btn:hover:not(.disabled) .vote-count { color: #000; }
.feature-content { flex: 1; min-width: 0; position: relative; padding-bottom: 8px; }
.feature-title {
font-family: 'Bangers', cursive;
font-size: 20px;
font-weight: 400;
color: var(--title-color);
text-transform: uppercase;
letter-spacing: 1px;
line-height: 1.2;
margin-bottom: 4px;
}
.feature-date {
font-size: 11px;
font-weight: 400;
color: var(--text-color);
opacity: .7;
margin-bottom: 8px;
font-family: 'Roboto Slab', serif;
}
.feature-description {
font-family: 'Roboto Slab', serif;
font-size: 13px;
font-weight: 400;
color: var(--text-color);
opacity: .85;
line-height: 1.5;
margin: 8px 0 12px;
}
.feature-status {
position: absolute;
top: 0; right: 0;
font-family: 'Bangers', cursive;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
padding: 3px 10px;
border-radius: 4px;
border: 2px solid currentColor;
}
.status-open        { color: var(--text-color); background: rgba(255,255,255,.1); border-color: var(--text-color); }
.status-in_progress { color: var(--primary);    background: rgba(40,110,192,.2);  border-color: var(--primary); }
.status-completed   { color: var(--success);    background: rgba(40,167,69,.2);   border-color: var(--success); }
.status-rejected    { color: var(--danger);     background: rgba(203,0,7,.2);     border-color: var(--danger); }
.progress-container {
position: absolute;
bottom: 0; left: 0; right: 0;
height: 6px;
background: var(--body-color);
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--title-color) 0%, var(--primary) 100%);
transition: width .3s;
}

/* ============================================
PAGINAZIONE
============================================ */
.btn-page {
padding: 8px 16px;
background-color: var(--dark);
border: 1px solid var(--primary);
color: var(--text-color);
border-radius: 4px;
font-family: 'Roboto Slab', serif;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
transition: all .2s;
cursor: pointer;
}
.btn-page:hover:not(:disabled) { background-color: var(--title-color); border-color: var(--title-color); color: #000; }
.btn-page:disabled { opacity: .5; cursor: not-allowed; }
.page-info { font-family: 'Roboto Slab', serif; font-size: 13px; font-weight: 600; color: var(--text-color); }

/* ============================================
CAMPAIGN SECTION
============================================ */
.campaign-section {
width: 100%;
background-color: var(--oc-bg);
color: var(--oc-ink);
padding: 100px 32px 60px 32px;
position: relative;
z-index: 1;
overflow: hidden;
font-family: var(--font-b);
}
.campaign-section::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle, var(--oc-ink) 1px, transparent 1px);
background-size: 8px 8px;
opacity: .08;
pointer-events: none;
}
.campaign-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ============================================
CAMPAIGN LOGO
============================================ */
.campaign-logo {
display: block;
max-width: 600px;
width: 100%;
height: auto;
margin: 0 auto 3rem auto;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), 
            transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.campaign-logo.is-visible {
opacity: 1;
transform: translateY(0);
}

/* Screenshot Grid */
.screenshot-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
margin-bottom: 3rem;
border: 3px solid var(--oc-ink);
padding: 16px;
background-color: var(--oc-ink);
}
.screenshot-item {
position: relative;
aspect-ratio: 3/4;
overflow: hidden;
border: 2px solid var(--oc-bg);
cursor: zoom-in;
transition: transform 0.3s ease;
}
.screenshot-item:hover { transform: scale(1.05); z-index: 2; }
.screenshot-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(0.2) contrast(1.1);
transition: filter 0.3s ease;
}
.screenshot-item:hover .screenshot-img { filter: none; }
.screenshot-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--oc-bg) 0%, var(--oc-orange) 100%);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-m);
font-size: 0.9rem;
color: var(--oc-ink);
text-transform: uppercase;
letter-spacing: 0.1em;
}
.screenshot-label {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, var(--oc-ink) 0%, transparent 100%);
color: var(--oc-bg);
font-family: var(--font-m);
font-size: 0.9rem;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 40px 12px 12px;
text-align: center;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.screenshot-section-title {
font-family: var(--font-d);
font-size: clamp(2rem, 5vw, 3.5rem);
text-transform: uppercase;
text-align: center;
margin-bottom: 2rem;
color: var(--oc-ink);
letter-spacing: 0.1em;
}
[data-zoom] {
cursor: zoom-in;
position: relative;
z-index: 2;
}
[data-zoom] img,
[data-zoom] .screenshot-label {
pointer-events: none;
}
.screenshot-item:hover .screenshot-label {
opacity: 1;
}

/* Info Blocks */
.info-blocks {
display: grid;
grid-template-columns: repeat(4, 2fr);
gap: 2rem;
margin-bottom: 3rem;
}
.info-block {
border: 3px solid var(--oc-ink);
padding: 1.5rem;
background-color: rgba(10,10,10,0.05);
}
.info-block-title {
font-family: var(--font-m);
font-size: 1.2rem;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 1rem;
color: var(--oc-ink);
}
.info-block-text {
font-family: var(--font-b);
font-size: 1rem;
line-height: 1.5;
color: var(--oc-ink);
opacity: 0.85;
}
.info-block-list {
list-style: none;
padding: 0;
margin: 0;
}
.info-block-list li {
font-family: var(--font-b);
font-size: 1rem;
padding: 0.5rem 0;
border-bottom: 1px solid rgba(10,10,10,0.2);
display: flex;
align-items: center;
gap: 0.5rem;
}
.info-block-list li::before {
content: '▸';
color: var(--oc-red);
font-size: 1.2rem;
}

/* Progress Section */
.progress-section {
margin-bottom: 3rem;
padding: 2rem;
border: 3px solid var(--oc-ink);
background-color: var(--oc-ink);
color: var(--oc-bg);
}
.progress-percentage {
font-family: var(--font-d);
font-size: clamp(3rem, 8vw, 5rem);
line-height: 1;
color: var(--oc-cyan);
}
.progress-bar-container {
height: 32px;
background-color: var(--oc-bg);
border: 2px solid var(--oc-bg);
margin-bottom: 1rem;
overflow: hidden;
}
.progress-bar-fill {
height: 100%;
background: linear-gradient(90deg, var(--oc-cyan) 0%, var(--oc-pink) 100%);
transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.progress-stats {
display: flex;
justify-content: space-between;
font-family: var(--font-m);
font-size: 1rem;
letter-spacing: 0.1em;
text-transform: uppercase;
}

/* Rewards */
.rewards-section {
margin-bottom: 3rem;
}
.rewards-title {
font-family: var(--font-d);
font-size: clamp(2rem, 5vw, 3rem);
text-transform: uppercase;
margin-bottom: 2rem;
text-align: center;
}
.rewards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.reward-card {
border: 3px solid var(--oc-ink);
padding: 1.5rem 1rem;
text-align: center;
background-color: var(--oc-bg-input);
transition: all 0.2s ease;
cursor: pointer;
}
.reward-card:hover {
transform: translateY(-4px);
box-shadow: 4px 4px 0 var(--oc-ink);
}
.reward-amount {
font-family: var(--font-d);
font-size: 2.5rem;
color: var(--oc-ink);
margin-bottom: 0.5rem;
}
.reward-name {
font-family: var(--font-m);
font-size: 1rem;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.reward-desc {
font-family: var(--font-b);
font-size: 0.9rem;
color: var(--oc-ink);
opacity: 0.8;
line-height: 1.4;
}

/* Donation Compact */
.campaign-text-title {
font-family: var(--font-d);
font-size: clamp(3rem, 10vw, 5.5rem);
line-height: 1;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--oc-ink);
text-shadow: rgb(204, 204, 204) 0px 1px 0px, rgb(201, 201, 201) 0px 2px 0px, rgb(187, 187, 187) 0px 3px 0px, rgb(185, 185, 185) 0px 4px 0px, rgb(170, 170, 170)  0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 6px 1px, rgba(0, 0, 0, 0.1) 0px 0px 5px, rgba(0, 0, 0, 0.3) 0px 1px 3px, rgba(0, 0, 0, 0.2) 0px 3px 5px, rgba(0, 0, 0, 0.25) 0px 5px 10px, rgba(0, 0, 0, 0.2) 0px 10px 10px, rgba(0, 0, 0, 0.15) 0px 20px 20px;
transform: perspective(500px) rotateX(5deg);
transition: transform 0.3s;
}
.campaign-text-title:hover {
transform:  perspective(500px) rotateX(0deg) scale(1.05);
}
.campaign-donation-compact {
padding: 2rem;
border: 3px solid var(--oc-ink);
background-color: var(--oc-bg-input);
margin-bottom: 3rem;
}
.donation-header-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
.donation-eyebrow {
font-family: var(--font-b) !important;
font-size: 0.8rem !important;
letter-spacing: 0.2em !important;
margin-bottom: 0.25rem !important;
opacity: 0.6;
}
.donation-title {
font-family: var(--font-d) !important;
font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
transform: none !important;
margin: 0 !important;
line-height: 1.1;
}
.donation-action-row {
display: flex; 
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}
.donation-amounts-compact {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.btn-donation-compact {
font-family: var(--font-m);
font-size: 1rem !important;
padding: 10px 18px !important;
border: 2px solid var(--oc-ink) !important;
background-color: var(--oc-cyan);
color: var(--oc-ink);
box-shadow: 2px 2px 0 var(--oc-ink);
transition: all 0.15s ease;
cursor: pointer;
}
.btn-donation-compact:hover,
.btn-donation-compact.active {
background-color: var(--oc-pink);
color: #fff;
transform: translate(0, 0);
box-shadow: none;
}
.donation-custom-compact {
display: flex;
border: 2px solid var(--oc-ink) !important;
background-color: var(--oc-bg-input);
flex: 1;
min-width: 200px;
max-width: 300px;
}
.donation-custom-input-compact {
font-family: var(--font-b);
font-size: 0.9rem !important;
padding: 10px 12px !important;
width: 100%;
min-width: 80px;
border: none;
background: transparent;
color: var(--oc-ink);
outline: none;
}
.btn-donation-custom-compact {
font-family: var(--font-m);
font-size: 0.85rem !important;
padding: 10px 16px !important;
background-color: var(--oc-ink);
color: var(--oc-bg);
border: none;
white-space: nowrap;
cursor: pointer;
transition: all 0.15s ease;
}
.btn-donation-custom-compact:hover {
background-color: var(--oc-pink);
color: #fff;
}

/* CTA Finale */
.final-cta-section {
text-align: center;
padding: 3rem 2rem;
border: 4px solid var(--oc-ink);
background-color: var(--oc-bg);
}
.final-cta-text {
font-family: var(--font-b);
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 2rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.final-cta-buttons {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.btn-final {
font-family: var(--font-m);
font-size: 1.1rem;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 14px 28px;
border: 3px solid var(--oc-ink);
box-shadow: 4px 4px 0 var(--oc-ink);
transition: all 0.15s ease;
cursor: pointer;
}
.btn-final-primary {
background-color: var(--oc-cyan);
color: var(--oc-ink);
}
.btn-final-primary:hover {
background-color: var(--oc-pink);
color: #fff;
transform: translate(2px, 2px);
box-shadow: 2px 2px 0 var(--oc-ink);
}
.btn-final-secondary {
background-color: var(--oc-bg);
color: var(--oc-ink);
}
.btn-final-secondary:hover {
background-color: var(--oc-orange);
color: #fff;
transform: translate(2px, 2px);
box-shadow: 2px 2px 0 var(--oc-ink);
}

/* ============================================
VISION SECTION
============================================ */
.vision-section {
width: 100%;
background-color: var(--body-color);
padding: 120px 24px 80px 24px;
text-align: center;
position: relative;
clip-path: polygon(
0 0,
100% 0,
100% calc(100% - 40px),
50% 100%,
0 calc(100% - 40px)
);
margin-bottom: -40px;
z-index: 2;
}
.vision-section::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L600,80 L1200,0' fill='none' stroke='%230A0A0A' stroke-width='8'/%3E%3C/svg%3E");
background-size: 100% 100%;
background-repeat: no-repeat;
z-index: 3;
}
.vision-section::before {
content: '';
position: absolute;
top: 100%;
left: 0;
right: 0;
height: 100px;
background-color: var(--body-color);
clip-path: polygon(0 0, 100% 0, 50% 100%);
z-index: -1;
}
.vision-inner {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 6rem;
}
.vision-line {
font-family: 'Bangers', cursive;
font-size: clamp(2rem, 5vw, 3.5rem);
line-height: 1.2;
color: var(--text-color);
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0;
transform: translateY(50px);
}
.vision-section.is-visible .vision-line {
animation: fadeInUpVision 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.vision-section.is-visible .vision-line.delay-1 { animation-delay: 0.8s; }
.vision-section.is-visible .vision-line.delay-2 { animation-delay: 1.6s; }
.vision-line.vision-highlight {
font-family: var(--font-d);
color: var(--oc-bg);
font-size: clamp(2.8rem, 6.5vw, 5rem);
line-height: 1.1;
letter-spacing: 0.05em;
text-transform: uppercase;
text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.6);
margin-top: 1rem;
transform: translateY(50px) scale(0.95);
}
@keyframes fadeInUpVision {
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}

/* ============================================
LIGHTBOX
============================================ */
.visual-break-lightbox {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(10,10,10,0.95);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
cursor: zoom-out;
padding: 20px;
}
.visual-break-lightbox.open {
opacity: 1;
visibility: visible;
}
.visual-break-lightbox-img {
max-width: 95vw;
max-height: 95vh;
object-fit: contain;
border: 4px solid var(--oc-bg);
box-shadow: 0 0 0 4px var(--oc-ink), 0 20px 60px rgba(0,0,0,0.8);
transform: scale(0.9);
transition: transform 0.3s ease;
}
.visual-break-lightbox.open .visual-break-lightbox-img {
transform: scale(1);
}
.visual-break-lightbox-close {
position: absolute;
top: 20px;
right: 24px;
width: 44px;
height: 44px;
background: var(--oc-bg);
color: var(--oc-ink);
border: 3px solid var(--oc-ink);
font-family: var(--font-m);
font-size: 1.4rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 130ms ease;
z-index: 2;
}
.visual-break-lightbox-close:hover {
background: var(--oc-pink);
color: #fff;
transform: rotate(90deg);
}

/* ============================================
MODALE BOOTSTRAP
============================================ */
.modal-content {
background-color: var(--dark) !important;
border: 1px solid var(--primary) !important;
border-left: 4px solid var(--title-color) !important;
color: var(--text-color) !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}
.modal-header { border-bottom: 1px solid var(--primary) !important; }
.modal-title {
font-family: 'Bangers', cursive;
color: var(--title-color);
letter-spacing: 1px;
font-size: 1.5rem;
}
.btn-close-white {
filter: invert(1) grayscale(100%) brightness(200%);
opacity: 0.8;
}
.btn-close-white:hover { opacity: 1; }
#featureFormModal .form-control-custom { background-color: rgba(0, 0, 0, 0.2) !important; }
#featureFormModal .form-control-custom:focus { background-color: rgba(40, 110, 192, 0.1) !important; }
.toast {
background-color: var(--dark) !important;
border: 1px solid var(--primary) !important;
color: var(--text-color) !important;
}
.modal { z-index: 9990 !important; }
.modal-backdrop { z-index: 9980 !important; }

/* ============================================
PAGINAZIONE SLIDE EFFECT
============================================ */
#featuresList { position: relative; overflow: hidden; }
.feature-card.slide-out-left  { animation: slideOutLeft  0.3s ease forwards; }
.feature-card.slide-out-right { animation: slideOutRight 0.3s ease forwards; }
.feature-card.slide-in-left   { animation: slideInLeft   0.4s ease forwards; }
.feature-card.slide-in-right  { animation: slideInRight  0.4s ease forwards; }
@keyframes slideOutLeft  { to { opacity: 0; transform: translateX(-100%); } }
@keyframes slideOutRight { to { opacity: 0; transform: translateX(100%); } }
@keyframes slideInLeft   { from { opacity: 0; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight  { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* ============================================
PULSANTE PROPONI PICCOLO
============================================ */
.btn-propose-small {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: 'Bangers', cursive;
font-size: 1rem;
letter-spacing: .05em;
text-transform: uppercase;
padding: 10px 20px;
background: var(--dark);
color: var(--title-color);
border: 2px solid var(--title-color);
border-radius: 4px;
box-shadow: 3px 3px 0 var(--title-color);
transition: all 150ms ease;
}
.btn-propose-small:hover {
background: var(--title-color);
color: var(--oc-ink);
transform: translate(2px, 2px);
box-shadow: 1px 1px 0 var(--title-color);
}

/* ============================================
FOOTER
============================================ */
.site-footer {
background-color: var(--dark);
border-top: 4px solid var(--spacer-color);
padding: 30px 20px;
text-align: center;
z-index: 10;
position: relative;
}
.footer-content { max-width: 600px; margin: 0 auto; }
.footer-powered {
font-family: 'Roboto Slab', serif;
font-size: 12px;
font-weight: 400;
color: rgba(255,255,255,.5);
text-transform: uppercase;
letter-spacing: 2px;
margin: 0 0 10px;
}
.footer-btn {
display: inline-block;
background-color: #E89919;
color: #fff;
border: 2px solid #fff;
border-radius: 5px;
padding: 8px 20px;
font-family: 'Roboto Slab', serif;
font-size: 14px;
font-weight: 600;
text-decoration: none;
transition: all .2s ease;
margin: 5px 0;
}
.footer-btn:hover {
background-color: var(--title-color);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(232, 153, 25, .4);
}
.footer-copy {
font-family: 'Roboto Slab', serif;
font-size: 11px;
color: rgba(255,255,255,.4);
margin: 15px 0 0;
}

/* ============================================
DONAZIONE SEMPLIFICATA (CTA UNICA)
============================================ */
.simple-donation-cta {
text-align: center;
padding: 3rem 2rem;
border: 4px solid var(--oc-ink);
background-color: var(--oc-bg-input);
margin-bottom: 3rem;
}
.donation-simple-text {
font-family: var(--font-b);
font-size: 1.2rem;
line-height: 1.5;
color: var(--oc-ink);
margin-bottom: 2rem;
}
.btn-kofi-simple {
display: inline-block;
font-family: var(--font-m);
font-size: 1.4rem;
letter-spacing: 0.05em;
text-transform: uppercase;
padding: 16px 32px;
background-color: var(--oc-cyan);
color: var(--oc-ink);
border: 3px solid var(--oc-ink);
box-shadow: 5px 5px 0 var(--oc-ink);
transition: all 0.15s ease;
text-decoration: none;
cursor: pointer;
}
.btn-kofi-simple:hover {
background-color: var(--oc-pink);
color: #fff;
transform: translate(3px, 3px);
box-shadow: 2px 2px 0 var(--oc-ink);
}
.donation-simple-note {
display: block;
margin-top: 1.5rem;
font-family: var(--font-b);
font-size: 0.9rem;
color: var(--oc-ink);
opacity: 0.7;
}

/* ==========================================
FUNDING ROADMAP (Desktop)
========================================== */
.funding-roadmap {
margin: 80px auto;
max-width: 1200px;
padding: 0 20px;
}
.funding-roadmap-header {
text-align: center;
margin-bottom: 60px;
}
.funding-roadmap-kicker {
display: inline-block;
padding: 8px 18px;
background: var(--oc-cyan, #00FFFF);
color: var(--oc-ink, #0A0A0A);
font-weight: 800;
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
border: 3px solid var(--oc-ink, #0A0A0A);
box-shadow: 4px 4px 0 var(--oc-ink, #0A0A0A);
}
.funding-roadmap-title {
margin-top: 24px;
font-family: var(--font-d, 'BebasNeue-Book', sans-serif);
font-size: clamp(2rem, 5vw, 3rem);
line-height: 1.1;
color: var(--oc-ink, #0A0A0A);
text-transform: uppercase;
letter-spacing: 0.02em;
}
.funding-roadmap-subtitle {
max-width: 800px;
margin: 20px auto 0;
color: var(--oc-ink, #0A0A0A);
font-size: 16px;
line-height: 1.7;
font-weight: 500;
}
.funding-roadmap-track {
display: flex;
align-items: flex-start;
justify-content: center;
flex-wrap: nowrap;
gap: 0;
}
.roadmap-node {
width: 200px;
flex-shrink: 0;
position: relative;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.roadmap-icon {
width: 90px;
height: 90px;
margin: 0 auto 24px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
font-size: 28px;
border-radius: 50%;
border: 4px solid var(--oc-ink, #0A0A0A);
background: var(--oc-ink, #0A0A0A);
color: var(--oc-bg, #FFD700);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.roadmap-content { width: 100%; }
.roadmap-content h4 {
font-family: var(--font-m, 'BebasNeue-Bold', sans-serif);
font-size: 18px;
line-height: 1.2;
margin: 0 0 10px 0;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--oc-ink, #0A0A0A);
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.roadmap-content p {
font-family: var(--font-b, 'BebasNeue-Light', sans-serif);
font-size: 14px;
line-height: 1.5;
margin: 0;
color: var(--oc-ink, #0A0A0A);
opacity: 0.85;
min-height: 60px;
}
.roadmap-connector {
width: 60px;
height: 6px;
flex-shrink: 0;
margin-top: 42px;
background: repeating-linear-gradient(
90deg,
var(--oc-ink, #0A0A0A),
var(--oc-ink, #0A0A0A) 12px,
transparent 12px,
transparent 20px
);
}
.roadmap-node.completed .roadmap-icon {
background: var(--oc-cyan, #00FFFF);
color: var(--oc-ink, #0A0A0A);
border-color: var(--oc-ink, #0A0A0A);
box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}
.roadmap-node.active .roadmap-icon {
background: var(--oc-pink, #FF1493);
color: #fff;
border-color: var(--oc-ink, #0A0A0A);
animation: pulseNode 2s infinite;
}
@keyframes pulseNode {
0% { box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.8); }
70% { box-shadow: 0 0 0 18px rgba(255, 20, 147, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 20, 147, 0); }
}
.roadmap-node.locked .roadmap-icon {
background: var(--oc-ink, #0A0A0A);
color: var(--oc-bg, #FFD700);
border-color: var(--oc-bg, #FFD700);
opacity: 0.9;
}
.roadmap-node.locked .roadmap-content h4,
.roadmap-node.locked .roadmap-content p {
opacity: 0.7;
}
.roadmap-node:hover .roadmap-icon {
transform: translateY(-5px) scale(1.05);
}

/* ============================================
📱 OTTIMIZZAZIONI MOBILE (NUOVE E POTENZIATE)
============================================ */

/* Tablet e Landscape (max 991px) */
@media (max-width: 991px) {
    .hero-dynamic { position: relative; min-height: 100vh; }
    #container { margin-top: 0; }
    .hero-content { padding: 60px 30px; text-align: center; align-items: center; }
    .hero-stats   { justify-content: center; }
    .hero-cta-group { justify-content: center; }
    
    .campaign-section { padding: 40px 20px; }
    .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
    .info-blocks { grid-template-columns: 1fr; }
    .rewards-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Roadmap: inizia ad adattarsi se lo schermo è stretto ma mantiene layout orizzontale se possibile */
    .roadmap-node { width: 160px; }
    .roadmap-connector { width: 30px; }
}

/* Smartphone Standard (max 767px) */
@media (max-width: 767px) {
    /* HERO */
    .hero-content { padding: 40px 20px; }
    .hero-badge { font-size: .85rem; padding: 8px 15px; margin-bottom: 20px; }
    .hero-main-title { font-size: clamp(2.2rem, 10vw, 3.5rem); margin-bottom: 15px; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 25px; }
    .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; margin-bottom: 30px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
    .scroll-indicator { display: none; } /* Nascondiamo il topino su mobile per risparmiare spazio */
    .stat-divider { width: 40px; height: 2px; }
    .hero-stats { gap: 15px; }
    .stat-number { font-size: 2rem; }

    /* FORM BANNER & INPUT (Fix iOS Zoom & Touch Targets) */
    .form-banner { padding: 15px; }
    .form-banner-header{ lign-items: center; flex-direction: column;  }
    .form-banner-fields { grid-template-columns: 1fr; gap: 15px; }
    .form-control-custom, 
    .form-select-custom { font-size: 16px !important; min-height: 48px; padding: 12px !important; }
    .filter-group{  display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .filter-sort{ display: none; }
    .search-box{ width: 100%; }
    .search-input { width: 100%; padding-left: 36px !important; }
    .search-icon { left: 12px; font-size: 14px; }
    .powered { text-align: center; }

    /* PROPOSTE & FEATURE CARDS */
    .proposals-section { padding: 40px 15px; }
    .proposals-title { font-size: clamp(2rem, 8vw, 3rem); }
    .btn-propose-small { width: 100%; justify-content: center; min-height: 48px; font-size: 1.1rem; }
    
    .feature-card { padding: 15px; gap: 15px; flex-direction: row; }
    .vote-btn { min-width: 50px; padding: 10px; } /* Area di tocco più grande */
    .arrow { font-size: 16px; }
    .vote-count { font-size: 20px; }
    
    /* FIX SOVRAPPOSIZIONE STATO SU MOBILE */
    .feature-status {
        position: relative;
        top: auto; right: auto;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 11px;
    }
    .feature-title { font-size: 18px; margin-bottom: 8px; }
    .feature-description { font-size: 14px; }

    /* PAGINAZIONE */
    .btn-page { min-height: 44px; padding: 10px 16px; }

    /* CAMPAIGN & SCREENSHOTS */
    .campaign-logo { max-width: 100%; margin-bottom: 2rem; }
    .screenshot-grid { grid-template-columns: 1fr; gap: 12px; padding: 12px; }
    .screenshot-label { opacity: 1; font-size: 0.9rem; padding: 30px 10px 10px; } /* Sempre visibile su mobile */
    .info-blocks { gap: 1.5rem; }
    .info-block { padding: 1.2rem; }
    .rewards-grid { grid-template-columns: 1fr; }

    /* DONAZIONI */
    .campaign-donation-compact { padding: 1.5rem; }
    .donation-action-row { flex-direction: column; align-items: stretch; }
    .donation-amounts-compact { 
        display: grid; 
        grid-template-columns: 1fr 1fr; /* Griglia 2x2 per i pulsanti */
        gap: 10px; 
        width: 100%;
    }
    .btn-donation-compact { 
        width: 100%; 
        min-height: 48px; 
        font-size: 1.1rem !important; 
        padding: 12px !important;
    }
    .donation-custom-compact { max-width: none; width: 100%; min-height: 48px; }
    .donation-custom-input-compact { font-size: 16px !important; min-height: 46px; }
    .btn-donation-custom-compact { min-height: 46px; padding: 12px 16px !important; }
    
    .final-cta-buttons { flex-direction: column; }
    .btn-final { width: 100%; text-align: center; justify-content: center; min-height: 50px; }

    /* VISION SECTION (Adattamento Clip-path) */
    .vision-section {
        padding: 60px 20px 50px 20px;
        clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 25px),
            50% 100%,
            0 calc(100% - 25px)
        );
        margin-bottom: -25px;
    }
    .vision-section::after {
        height: 25px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 50' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L600,50 L1200,0' fill='none' stroke='%230A0A0A' stroke-width='6'/%3E%3C/svg%3E");
    }
    .vision-inner { gap: 3rem; }
    .vision-line { font-size: clamp(1.6rem, 6vw, 2.5rem); }
    .vision-line.vision-highlight { font-size: clamp(2rem, 7vw, 3rem); }
}

/* Smartphone Small (max 575px) */
@media (max-width: 575px) {
    .hero-main-title { font-size: 2.2rem; }
    .proposals-title { font-size: 2rem; }
    .feature-card { padding: 12px; }
}

/* ==========================================
FUNDING ROADMAP (Mobile Verticale)
========================================== */
@media (max-width: 900px) {
    .funding-roadmap { margin: 50px auto; }
    .funding-roadmap-track {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .roadmap-node {
        width: 100%;
        max-width: 320px;
        flex-direction: row; /* Icona a sinistra, testo a destra su mobile */
        text-align: left;
        gap: 20px;
    }
    .roadmap-icon {
        width: 70px;
        height: 70px;
        margin: 0;
        font-size: 24px;
        flex-shrink: 0;
    }
    .roadmap-content {
        width: auto;
        flex: 1;
    }
    .roadmap-content h4 {
        min-height: auto;
        justify-content: flex-start;
        font-size: 16px;
        margin-bottom: 4px;
    }
    .roadmap-content p {
        min-height: auto;
        font-size: 14px;
        text-align: left;
    }
    
    /* Connettore Verticale Perfetto */
    .roadmap-connector {
        width: 4px;
        height: 40px;
        margin: 0 auto;
        background: repeating-linear-gradient(
            180deg,
            var(--oc-ink, #0A0A0A),
            var(--oc-ink, #0A0A0A) 8px,
            transparent 8px,
            transparent 14px
        );
    }
    
    .funding-roadmap-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}