/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nebi-orange: #E8862A;
    --nebi-orange-light: #F4A94D;
    --nebi-cream: #FFF8F0;
    --nebi-white: #FFFFFF;
    --nebi-dark: #3D2B1F;
    --nebi-bg: #FFF5EB;
    --nebi-grid: #F0E0D0;
    --nebi-green: #6BBF59;
    --nebi-red: #D94F4F;
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--nebi-bg);
    color: var(--nebi-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: default;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

/* ===== PIXEL GRID BACKGROUND ===== */
.pixel-grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--nebi-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--nebi-grid) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--nebi-cream);
    border-bottom: 3px solid var(--nebi-orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 100;
    image-rendering: pixelated;
}

.nav::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--nebi-orange) 0px,
        var(--nebi-orange) 4px,
        transparent 4px,
        transparent 8px
    );
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 45px;
    height: auto;
    image-rendering: auto;
    filter: drop-shadow(0 2px 4px rgba(232, 134, 42, 0.3));
    transition: transform 0.2s ease;
}

.nav-logo img:hover {
    transform: scale(1.1);
}

.nav-logo span {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: var(--nebi-orange);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: var(--nebi-dark);
    text-decoration: none;
    padding: 8px 14px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--nebi-orange);
    border-color: var(--nebi-orange);
    background: rgba(232, 134, 42, 0.08);
}

.nav-links a.active {
    color: var(--nebi-orange);
    border-color: var(--nebi-orange);
    background: rgba(232, 134, 42, 0.1);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--nebi-orange);
    padding: 6px 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: var(--nebi-orange);
    cursor: pointer;
}

/* ===== PAGE CONTAINER ===== */
.page {
    width: 100%;
    max-width: 1000px;
    padding: 40px 24px 100px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== SECTION STYLES ===== */
.section {
    width: 100%;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    color: var(--nebi-orange);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 2px 2px 0 rgba(232, 134, 42, 0.15);
}

.section-subtitle {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: var(--nebi-dark);
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.8;
}

.section-text {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    color: var(--nebi-dark);
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.85;
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 40px 0 20px;
    margin-bottom: 40px;
}

.hero .logo-container {
    animation: logoFloat 3s ease-in-out infinite;
}

.hero .logo {
    width: 220px;
    height: auto;
    image-rendering: auto;
    filter: drop-shadow(0 4px 12px rgba(232, 134, 42, 0.3));
    transition: transform 0.3s ease;
}

.hero .logo:hover {
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero .heading {
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: var(--nebi-orange);
    line-height: 1.6;
    text-shadow: 2px 2px 0 rgba(232, 134, 42, 0.15);
}

.hero .subtext {
    font-family: 'VT323', monospace;
    font-size: 26px;
    color: var(--nebi-dark);
    opacity: 0.75;
    max-width: 600px;
}

/* ===== CAT AREA (shared across pages) ===== */
.cat-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 200px;
    margin-top: 10px;
}

.cat-container {
    position: relative;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.cat-img {
    width: 160px;
    height: auto;
    image-rendering: pixelated;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.cat-container:hover .cat-img {
    filter: drop-shadow(0 6px 14px rgba(232, 134, 42, 0.35));
}

.cat-jump {
    animation: catJump 0.4s ease-out;
}

@keyframes catJump {
    0% { transform: translateY(0); }
    40% { transform: translateY(-200px); }
    100% { transform: translateY(0); }
}

.cat-attention {
    animation: catAttention 0.3s ease-in-out 2;
}

@keyframes catAttention {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.cat-container.moveable {
    position: absolute;
    bottom: 0;
    transition: left 0.15s ease, transform 0.1s ease;
}

/* ===== SPEECH BUBBLE ===== */
.speech-bubble {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nebi-white);
    border: 3px solid var(--nebi-orange);
    border-radius: 4px;
    padding: 8px 14px;
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: var(--nebi-dark);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    image-rendering: pixelated;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--nebi-orange);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--nebi-white);
    z-index: 1;
}

.speech-bubble.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* ===== PIXEL DECORATIONS ===== */
.pixel-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pixel-fish {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    image-rendering: pixelated;
    animation: fishSwim linear infinite;
    pointer-events: none;
}

@keyframes fishSwim {
    0% { transform: translateX(calc(100vw + 60px)); }
    100% { transform: translateX(-60px); }
}

.pixel-fish.reverse {
    animation-name: fishSwimReverse;
}

@keyframes fishSwimReverse {
    0% { transform: translateX(-60px) scaleX(-1); }
    100% { transform: translateX(calc(100vw + 60px)) scaleX(-1); }
}

.paw-print {
    position: fixed;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    animation: pawAppear 2.5s ease-out forwards;
    image-rendering: pixelated;
}

@keyframes pawAppear {
    0% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    15% { opacity: 0.7; transform: scale(1) rotate(-10deg); }
    70% { opacity: 0.7; }
    100% { opacity: 0; transform: scale(1) rotate(-10deg); }
}

.pixel-ball {
    position: fixed;
    width: 16px;
    height: 16px;
    background: var(--nebi-orange);
    border: 2px solid var(--nebi-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    animation: ballBounce 1.5s ease-out forwards;
    image-rendering: pixelated;
}

@keyframes ballBounce {
    0% { transform: scale(1); opacity: 1; }
    25% { transform: translateY(30px) scale(0.9); }
    50% { transform: translateY(-10px) scale(1.1); }
    75% { transform: translateY(15px) scale(0.95); }
    100% { transform: translateY(40px) scale(0.5); opacity: 0; }
}

.sparkle {
    position: absolute;
    font-size: 14px;
    opacity: 0;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

.sparkle:nth-child(odd) {
    animation-delay: 0.7s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.zzz {
    position: absolute;
    top: -30px;
    right: -10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: var(--nebi-orange);
    opacity: 0;
    pointer-events: none;
}

.zzz.visible {
    animation: zzzFloat 2s ease-in-out infinite;
}

@keyframes zzzFloat {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-30px) translateX(15px); }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 24px 16px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: var(--nebi-orange);
    opacity: 0.7;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.footer-paw {
    font-size: 14px;
    image-rendering: pixelated;
}

/* ===== KEYBOARD MODE INDICATOR ===== */
.keyboard-hint {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: var(--nebi-orange);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.keyboard-hint.visible {
    opacity: 0.6;
}

/* ===== PIXEL CARD ===== */
.pixel-card {
    background: var(--nebi-white);
    border: 3px solid var(--nebi-orange);
    padding: 24px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pixel-card::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(232, 134, 42, 0.2);
    z-index: -1;
}

.pixel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(232, 134, 42, 0.15);
}

/* ===== PIXEL BUTTON ===== */
.pixel-btn {
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    color: var(--nebi-white);
    background: var(--nebi-orange);
    border: 3px solid var(--nebi-dark);
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    image-rendering: pixelated;
}

.pixel-btn:hover {
    background: var(--nebi-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 0 var(--nebi-dark);
}

.pixel-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.pixel-btn.outline {
    background: transparent;
    color: var(--nebi-orange);
    border-color: var(--nebi-orange);
}

.pixel-btn.outline:hover {
    background: rgba(232, 134, 42, 0.1);
}

/* ===== PIXEL TABLE ===== */
.pixel-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.pixel-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    image-rendering: pixelated;
}

.pixel-table th {
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    background: var(--nebi-orange);
    color: var(--nebi-white);
    padding: 12px 16px;
    text-align: left;
    border: 2px solid var(--nebi-dark);
    white-space: nowrap;
}

.pixel-table td {
    padding: 10px 16px;
    border: 2px solid var(--nebi-orange);
    background: var(--nebi-white);
    vertical-align: middle;
}

.pixel-table tr:hover td {
    background: rgba(232, 134, 42, 0.06);
}

.pixel-table .status-adopted {
    color: var(--nebi-green);
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
}

.pixel-table .status-waiting {
    color: var(--nebi-orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
}

/* ===== MISSION PAGE SPECIFICS ===== */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px 0;
}

.mission-card {
    text-align: center;
    padding: 30px 20px;
}

.mission-card .card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    image-rendering: pixelated;
    display: block;
}

.mission-card .card-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    color: var(--nebi-orange);
    margin-bottom: 12px;
    line-height: 1.6;
}

.mission-card .card-text {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--nebi-dark);
    line-height: 1.4;
    opacity: 0.85;
}

/* Donation counter */
.donation-counter {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 28px;
    color: var(--nebi-orange);
    display: block;
    margin-bottom: 8px;
}

.counter-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: var(--nebi-dark);
    opacity: 0.7;
}

/* Campaign card */
.campaign-card {
    margin-bottom: 24px;
    padding: 24px;
}

.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.campaign-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    color: var(--nebi-orange);
    line-height: 1.6;
}

.campaign-date {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--nebi-dark);
    opacity: 0.6;
}

.campaign-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--nebi-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.campaign-cats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.campaign-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--nebi-bg);
    border: 2px solid var(--nebi-orange);
    padding: 8px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
}

.campaign-cat .cat-emoji {
    font-size: 20px;
    image-rendering: pixelated;
}

/* ===== SHOP PAGE ===== */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--nebi-white);
    border: 3px dashed var(--nebi-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: var(--nebi-orange);
    opacity: 0.6;
    gap: 12px;
    image-rendering: pixelated;
}

.product-image-placeholder .placeholder-icon {
    font-size: 60px;
}

.product-info h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: var(--nebi-orange);
    margin-bottom: 16px;
    line-height: 1.8;
}

.product-info .price {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: var(--nebi-dark);
    margin-bottom: 20px;
}

.product-info .price small {
    font-size: 12px;
    opacity: 0.6;
}

.advantages-list {
    list-style: none;
    margin: 20px 0;
}

.advantages-list li {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.4;
}

.advantages-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--nebi-orange);
    font-size: 18px;
}

/* ===== CONFIGURATOR ===== */
.configurator-section {
    width: 100%;
    margin: 40px 0;
}

.configurator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.configurator-canvas {
    background: var(--nebi-white);
    border: 3px solid var(--nebi-orange);
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 20px 20px;
    overflow: hidden;
}

/* === IMAGE-BASED TOWER === */
.configurator-canvas .tower-preview {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.tower-level-img {
    position: relative;
    display: flex;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: -4px;
}

.tower-level-img img {
    image-rendering: pixelated;
    display: block;
    pointer-events: none;
}

/* Base level */
.tower-level-img.tower-base img {
    width: 180px;
    height: auto;
}

/* Par level (lateral view - single long piece) */
.tower-level-img.tower-par img {
    width: 120px;
    height: auto;
}

/* Impar level (front view - 2 ends) */
.tower-level-img.tower-impar img {
    width: 100px;
    height: auto;
}

/* Pat pisica (top piece) */
.tower-level-img.tower-pat img {
    width: 130px;
    height: auto;
}

/* Special piece highlight — sisal: warm golden glow */
.tower-level-img.special-sisal img,
.tower-level-img[class*="special-left-sisal"] img,
.tower-level-img[class*="special-right-sisal"] img {
    filter: drop-shadow(0 0 6px rgba(200, 169, 110, 0.8)) brightness(1.1);
}

/* Special piece highlight — rope: brown/warm glow */
.tower-level-img.special-rope img,
.tower-level-img[class*="special-left-rope"] img,
.tower-level-img[class*="special-right-rope"] img {
    filter: drop-shadow(0 0 6px rgba(160, 120, 90, 0.8)) brightness(0.95) saturate(0.8);
}

/* Hover on levels */
.tower-level-img:hover img {
    filter: brightness(1.1);
    transition: filter 0.15s ease;
}

/* Tower height indicator */
.tower-height-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: var(--nebi-orange);
    margin-top: 12px;
    text-align: center;
}

/* Configurator controls */
.configurator-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.config-panel {
    padding: 20px;
}

.config-panel h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: var(--nebi-orange);
    margin-bottom: 16px;
    line-height: 1.6;
}

.config-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--nebi-grid);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
}

.config-option:last-child {
    border-bottom: none;
}

.config-stepper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.config-stepper button {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    width: 32px;
    height: 32px;
    border: 2px solid var(--nebi-orange);
    background: var(--nebi-white);
    color: var(--nebi-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.config-stepper button:hover {
    background: var(--nebi-orange);
    color: var(--nebi-white);
}

.config-stepper .stepper-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    min-width: 30px;
    text-align: center;
    color: var(--nebi-dark);
}

.config-summary {
    margin-top: 8px;
}

.config-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    border-bottom: 1px dashed var(--nebi-grid);
}

.config-summary .summary-row:last-child {
    border-bottom: none;
}

.config-summary .summary-total {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--nebi-orange);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}

/* ===== COLLABORATIONS PAGE ===== */
.collab-intro {
    text-align: center;
    margin-bottom: 40px;
}

.collab-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.collab-type-card {
    text-align: center;
    padding: 24px 16px;
    cursor: default;
}

.collab-type-card .card-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    image-rendering: pixelated;
}

.collab-type-card .card-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: var(--nebi-orange);
    margin-bottom: 10px;
    line-height: 1.6;
}

.collab-type-card .card-text {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    opacity: 0.8;
}

/* Brand guidelines */
.brand-section {
    margin: 40px 0;
}

.color-palette {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.color-swatch {
    text-align: center;
}

.color-swatch .swatch {
    width: 80px;
    height: 80px;
    border: 3px solid var(--nebi-dark);
    margin-bottom: 8px;
}

.color-swatch .swatch-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 7px;
    color: var(--nebi-dark);
    opacity: 0.8;
}

.font-showcase {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.font-sample {
    text-align: center;
    padding: 20px;
}

.font-sample .sample-text {
    margin-bottom: 8px;
    font-size: 28px;
}

.font-sample .sample-text.pixel-font {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
}

.font-sample .sample-text.mono-font {
    font-family: 'VT323', monospace;
    font-size: 32px;
}

.font-sample .font-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: var(--nebi-orange);
}

/* Logo showcase */
.logo-showcase {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.logo-variant {
    text-align: center;
    padding: 30px;
}

.logo-variant img {
    width: 120px;
    height: auto;
    image-rendering: auto;
    margin-bottom: 10px;
}

.logo-variant.dark-bg {
    background: var(--nebi-dark);
}

.logo-variant .variant-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 7px;
    color: var(--nebi-dark);
    opacity: 0.7;
}

.logo-variant.dark-bg .variant-label {
    color: var(--nebi-cream);
}

/* Collaboration form */
.collab-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: var(--nebi-dark);
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--nebi-dark);
    background: var(--nebi-white);
    border: 3px solid var(--nebi-orange);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--nebi-dark);
    box-shadow: 0 0 0 2px rgba(232, 134, 42, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E8862A' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ===== MEDIA DESC BOX ===== */
.media-desc {
    background: var(--nebi-white);
    border: 3px solid var(--nebi-orange);
    padding: 24px;
    margin: 20px 0;
    position: relative;
}

.media-desc p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--nebi-dark);
}

.media-desc .copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 7px;
    padding: 6px 10px;
    background: var(--nebi-orange);
    color: var(--nebi-white);
    border: 2px solid var(--nebi-dark);
    cursor: pointer;
    transition: background 0.2s ease;
}

.media-desc .copy-btn:hover {
    background: var(--nebi-orange-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--nebi-cream);
        border-bottom: 3px solid var(--nebi-orange);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links a {
        display: block;
        text-align: center;
        padding: 12px;
    }

    .mission-grid,
    .product-hero,
    .configurator-wrapper,
    .collab-types {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 14px;
    }

    .hero .heading {
        font-size: 16px;
    }

    .hero .subtext {
        font-size: 22px;
    }

    .hero .logo {
        width: 180px;
    }

    .cat-img {
        width: 130px;
    }

    .speech-bubble {
        font-size: 7px;
        top: -50px;
    }

    .donation-counter {
        gap: 20px;
    }

    .counter-number {
        font-size: 22px;
    }

    .campaign-cats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero .heading {
        font-size: 12px;
        line-height: 1.8;
    }

    .hero .subtext {
        font-size: 18px;
    }

    .hero .logo {
        width: 150px;
    }

    .cat-img {
        width: 110px;
    }

    .page {
        padding: 24px 16px 80px;
    }

    .section-title {
        font-size: 12px;
    }

    .pixel-table th {
        font-size: 7px;
        padding: 8px 10px;
    }

    .pixel-table td {
        font-size: 18px;
        padding: 8px 10px;
    }

    .color-swatch .swatch {
        width: 60px;
        height: 60px;
    }
}
