/*
════════════════════════════════════════════════════════
  Site desenvolvido por: Albert Augustus Corbett
  Proibida reprodução sem autorização
  © 2026 AlbertCorbett - Todos os direitos reservados
════════════════════════════════════════════════════════
*/

/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Paleta principal — inspirada no logo */
    --neon: #AAFF00;
    --neon-dark: #08CB00;
    --neon-glow: rgba(170, 255, 0, 0.6);
    --bg: #000000;
    --bg-2: #0a0a0a;
    --bg-3: #111111;
    --bg-4: #1a1a1a;
    --text: #ffffff;
    --text-muted: #b8b8b8;
    --text-dim: #777777;

    /* Acentos retrô */
    --magenta: #FF00FF;
    --cyan: #00FFFF;
    --yellow: #FFFF00;
    --pink: #FF1493;
    --orange: #FF6C00;

    /* Tipografia */
    --f-pixel: 'Press Start 2P', monospace;
    --f-terminal: 'VT323', monospace;
    --f-bitmap: 'Silkscreen', monospace;
    --f-comic: 'Comic Neue', 'Comic Sans MS', cursive;
    --f-marker: 'Permanent Marker', cursive;
    --f-display: 'Bungee', cursive;

    /* Bordas retrô */
    --bevel-light: #ffffff;
    --bevel-mid: #808080;
    --bevel-dark: #404040;
    --bevel-bg: #c0c0c0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--f-comic);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(170, 255, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 203, 0, 0.04) 0%, transparent 50%);
}

a { color: var(--neon); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === STARFIELD BACKGROUND === */
.starfield {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: var(--bg);
    pointer-events: none;
}
.starfield canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* === TYPOGRAPHY GLOBAL === */
.section {
    padding: 100px 0;
    position: relative;
}
.section-tag {
    display: inline-block;
    font-family: var(--f-terminal);
    font-size: 1.3rem;
    color: var(--neon);
    padding: 4px 12px;
    background: var(--bg-3);
    border: 2px solid var(--neon-dark);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.section-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}
.section-title .pixel {
    font-family: var(--f-pixel);
    color: var(--text);
    font-size: 0.7em;
    text-shadow: 2px 2px 0 var(--neon-dark);
}
.section-title .gradient {
    color: var(--neon);
    text-shadow:
        0 0 10px var(--neon-glow),
        0 0 20px var(--neon-glow),
        0 0 40px var(--neon-glow);
    position: relative;
    animation: pulse-glow 2.5s ease-in-out infinite;
}
.section-desc {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 16px auto 0;
}
.pixel-divider {
    text-align: center;
    margin: 16px 0;
    font-size: 1.2rem;
    color: var(--neon);
}
.pixel-divider span {
    display: inline-block;
    margin: 0 4px;
    animation: bounce-star 1.5s ease-in-out infinite;
}
.pixel-divider span:nth-child(2) { animation-delay: 0.1s; }
.pixel-divider span:nth-child(3) { animation-delay: 0.2s; }
.pixel-divider span:nth-child(4) { animation-delay: 0.3s; }
.pixel-divider span:nth-child(5) { animation-delay: 0.4s; }

/* === KEYFRAMES / ANIMATIONS === */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes pulse-glow {
    0%, 100% {
        text-shadow:
            0 0 10px var(--neon-glow),
            0 0 20px var(--neon-glow),
            0 0 40px var(--neon-glow);
    }
    50% {
        text-shadow:
            0 0 20px var(--neon-glow),
            0 0 40px var(--neon-glow),
            0 0 80px var(--neon-glow),
            0 0 120px var(--neon-glow);
    }
}
@keyframes rainbow {
    0% { color: #FF0000; }
    16% { color: #FFFF00; }
    33% { color: #00FF00; }
    50% { color: #00FFFF; }
    66% { color: #0080FF; }
    83% { color: #FF00FF; }
    100% { color: #FF0000; }
}
@keyframes bounce-star {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, 2px); }
    80% { transform: translate(1px, -2px); }
}
@keyframes neon-flicker {
    0%, 100% { opacity: 1; filter: brightness(1); }
    43% { opacity: 1; filter: brightness(1); }
    44% { opacity: 0.7; filter: brightness(1.5); }
    46% { opacity: 1; filter: brightness(1); }
}
@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-25deg); }
    100% { transform: translateX(300%) skewX(-25deg); }
}
@keyframes reveal-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* === TOP BAR === */
.topbar {
    background: linear-gradient(180deg, var(--bg-4), var(--bg-3));
    border-bottom: 1px solid var(--neon-dark);
    font-family: var(--f-terminal);
    font-size: 1.05rem;
    color: var(--text-muted);
    padding: 6px 0;
    position: relative;
    z-index: 100;
}
.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-item { display: inline-flex; align-items: center; gap: 4px; }
.topbar-status .status-dot {
    width: 8px; height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon);
    animation: pulse-glow 1.5s ease-in-out infinite;
    display: inline-block;
}
.topbar-visitor {
    color: var(--neon);
    font-weight: bold;
}
.topbar-visitor .blink {
    color: var(--magenta);
    animation: blink 1s infinite;
    display: inline-block;
}
#visitorNum {
    background: #000;
    border: 1px solid var(--neon-dark);
    padding: 2px 8px;
    font-family: var(--f-terminal);
    color: var(--neon);
    text-shadow: 0 0 8px var(--neon-glow);
    letter-spacing: 2px;
}

/* === MARQUEE === */
.marquee-wrapper {
    position: relative;
    background: linear-gradient(90deg, #1a0033, #000, #1a0033);
    border-top: 2px solid var(--neon-dark);
    border-bottom: 2px solid var(--neon-dark);
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    z-index: 99;
}
.marquee-stripe {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--magenta), var(--purple, #800080));
    color: #fff;
    font-family: var(--f-pixel);
    font-size: 0.7rem;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-shadow: 1px 1px 0 #000;
    box-shadow: 0 0 20px var(--magenta);
}
.marquee-stripe.right {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #000;
    box-shadow: 0 0 20px var(--yellow);
    margin-left: auto;
}
.marquee-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--f-terminal);
    font-size: 1.4rem;
    color: var(--neon);
    text-shadow: 0 0 8px var(--neon-glow);
    animation: marquee-scroll 30s linear infinite;
    padding-left: 100%;
}
.marquee-content b { font-weight: normal; }
.marquee-wrapper:hover .marquee-content { animation-play-state: paused; }

/* === HEADER / NAV === */
.site-header {
    background: var(--bg-2);
    border-bottom: 4px double var(--neon);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(170, 255, 0, 0.2);
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
	width: 150px;
    color: var(--neon);
    font-family: var(--f-marker);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}
.logo:hover { transform: rotate(2deg) scale(1.05); }
.logo-ascii {
    font-family: var(--f-pixel);
    font-size: 2rem;
    color: var(--neon);
    text-shadow: 0 0 12px var(--neon-glow);
    background: #000;
    padding: 4px 10px;
    border: 2px solid var(--neon);
    border-radius: 4px;
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
}
.logo-text {
    font-family: var(--f-marker);
    font-size: 2.2rem;
    color: var(--neon);
    text-shadow: 2px 2px 0 var(--neon-dark), 0 0 15px var(--neon-glow);
    line-height: 1;
}
.logo-accent { color: var(--text); text-shadow: 2px 2px 0 var(--neon-dark); }
.logo-sub {
    font-family: var(--f-terminal);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 4px;
}
.main-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.nav-btn {
    font-family: var(--f-bitmap);
    font-size: 0.95rem;
    padding: 10px 16px;
    background: var(--bg-3);
    color: var(--text);
    border: 2px solid;
    border-color: var(--bevel-light) var(--bevel-dark) var(--bevel-dark) var(--bevel-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.1s;
    position: relative;
    cursor: pointer;
}
.nav-btn:hover {
    background: var(--neon);
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 15px var(--neon-glow);
}
.nav-btn:active {
    border-color: var(--bevel-dark) var(--bevel-light) var(--bevel-light) var(--bevel-dark);
    transform: translate(1px, 1px);
}
.nav-btn.active {
    background: var(--neon);
    color: #000;
    border-color: var(--bevel-light) var(--bevel-dark) var(--bevel-dark) var(--bevel-light);
}
.nav-cta {
    background: linear-gradient(135deg, var(--neon), var(--neon-dark));
    color: #000;
    font-weight: bold;
    animation: pulse-glow 2s ease-in-out infinite;
}
.mobile-toggle {
    display: none;
    background: var(--bg-3);
    border: 2px solid var(--neon);
    color: var(--neon);
    width: 50px; height: 50px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neon);
    transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.construction-banner {
    background: repeating-linear-gradient(
        45deg, #000, #000 10px, var(--yellow) 10px, var(--yellow) 20px
    );
    color: #fff; /* texto branco para contraste */
    text-shadow: 1px 1px 2px #000; /* sombra para destacar */
    font-family: var(--f-pixel);
    font-size: 0.7rem;
    padding: 6px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.con-spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.con-mail { text-decoration: underline; }

/* === HERO === */
.hero {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(170, 255, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 255, 0, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: scroll-grid 20s linear infinite;
    z-index: -2;
}
@keyframes scroll-grid {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}
.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(170, 255, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}
.hero-inner {
    text-align: center;
    max-width: 1100px;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-3);
    border: 2px solid var(--neon);
    padding: 8px 18px;
    margin-bottom: 28px;
    font-family: var(--f-terminal);
    font-size: 1.15rem;
    color: var(--neon);
    box-shadow: 0 0 15px rgba(170, 255, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon);
    animation: pulse-glow 1s ease-in-out infinite;
}
.badge-new {
    background: var(--magenta);
    color: #fff;
    font-family: var(--f-pixel);
    font-size: 0.6rem;
    padding: 2px 8px;
    transform: rotate(-12deg);
    box-shadow: 0 0 10px var(--magenta);
    margin-left: 8px;
    animation: bounce-star 1s ease-in-out infinite;
}
.hero-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 4px 4px 0 #000, 6px 6px 0 var(--neon-dark);
}
.hero-pre {
    display: block;
    font-family: var(--f-terminal);
    font-size: 0.3em;
    color: var(--cyan);
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #000;
    letter-spacing: 4px;
}
.hero-main {
    display: block;
    color: var(--text);
    animation: neon-flicker 5s linear infinite;
}
.glitch {
    position: relative;
    color: var(--neon);
    text-shadow:
        0 0 10px var(--neon-glow),
        0 0 20px var(--neon-glow),
        0 0 40px var(--neon-glow),
        4px 4px 0 var(--neon-dark);
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    overflow: hidden;
}
.glitch::before {
    color: var(--magenta);
    animation: glitch 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.glitch::after {
    color: var(--cyan);
    animation: glitch 2s infinite reverse;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}
.rainbow {
    background: linear-gradient(90deg, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    font-style: italic;
    text-shadow: none;
}
.hero-subtitle {
    font-family: var(--f-comic);
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 40px;
    background: rgba(0,0,0,0.5);
    padding: 16px;
    border: 1px dashed var(--neon-dark);
}
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.btn {
    font-family: var(--f-bitmap);
    font-size: 1rem;
    padding: 14px 28px;
    border: 3px solid;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    position: relative;
}
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-neon {
    background: var(--neon);
    color: #000;
    border-color: var(--bevel-light);
    box-shadow:
        inset -3px -3px 0 rgba(0,0,0,0.3),
        inset 3px 3px 0 rgba(255,255,255,0.4),
        0 0 20px var(--neon-glow),
        4px 4px 0 var(--neon-dark);
    font-weight: bold;
}
.btn-neon:hover {
    box-shadow:
        inset -3px -3px 0 rgba(0,0,0,0.3),
        inset 3px 3px 0 rgba(255,255,255,0.4),
        0 0 40px var(--neon),
        4px 4px 0 var(--neon-dark);
    transform: translateY(-2px);
}
.btn-neon:active {
    box-shadow:
        inset 3px 3px 0 rgba(0,0,0,0.3),
        inset -3px -3px 0 rgba(255,255,255,0.4),
        0 0 10px var(--neon-glow);
    transform: translate(2px, 2px);
}
.btn-outline {
    background: transparent;
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 10px var(--neon-glow), inset 0 0 10px rgba(170,255,0,0.1);
}
.btn-outline:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 30px var(--neon);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.stat-box {
    background: var(--bg-3);
    border: 2px solid var(--neon-dark);
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.stat-box:hover {
    border-color: var(--neon);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(170, 255, 0, 0.2);
}
.stat-box::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170,255,0,0.1), transparent);
    transition: 0.5s;
}
.stat-box:hover::before { left: 100%; }
.stat-icon { font-size: 2.2rem; margin-bottom: 8px; }
.stat-num {
    font-family: var(--f-terminal);
    font-size: 2.5rem;
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon-glow);
    font-weight: bold;
    line-height: 1;
}
.stat-suf { color: var(--magenta); font-size: 1.5rem; }
.stat-label {
    font-family: var(--f-bitmap);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.hero-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}
.social-btn {
    width: 56px; height: 56px;
    background: var(--bg-3);
    border: 2px solid var(--neon-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
}
.social-btn::before {
    content: attr(data-label);
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-terminal);
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}
.social-btn:hover {
    border-color: var(--neon);
    background: var(--neon);
    box-shadow: 0 0 20px var(--neon-glow);
    transform: translateY(-4px) rotate(-5deg);
}
.social-btn:hover::before { opacity: 1; }

.welcome-sign {
    position: absolute;
    top: 30px;
    right: -80px;
    transform: rotate(15deg);
    z-index: 1;
    display: none;
}
.welcome-inner {
    background: #000;
    border: 4px solid var(--neon);
    padding: 12px 24px;
    font-family: var(--f-pixel);
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon);
    box-shadow: 0 0 30px var(--neon-glow), 8px 8px 0 var(--neon-dark);
    animation: pulse-glow 2s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: var(--f-pixel);
    font-size: 0.7rem;
    color: var(--neon);
    animation: float 2s ease-in-out infinite;
}
.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 4px;
    animation: bounce-star 1s ease-in-out infinite;
}

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}
.about-content { padding-right: 20px; }
.about-avatar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 16px;
    background: var(--bg-3);
    border: 3px ridge var(--neon-dark);
}
.avatar-frame {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--neon), var(--neon-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--neon);
    box-shadow: 0 0 20px var(--neon-glow);
    animation: pulse-glow 3s ease-in-out infinite;
    flex-shrink: 0;
}
.avatar-img {
    font-family: var(--f-pixel);
    font-size: 1.6rem;
    color: #000;
}
.avatar-name {
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--neon);
    text-shadow: 2px 2px 0 var(--neon-dark);
}
.avatar-role {
    font-family: var(--f-terminal);
    font-size: 1.1rem;
    color: var(--magenta);
    margin-top: 4px;
}
.about-text p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text);
}
.about-text p b { color: var(--neon); }
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.tag {
    background: var(--bg-3);
    border: 1px solid var(--neon-dark);
    padding: 6px 14px;
    font-family: var(--f-bitmap);
    font-size: 0.9rem;
    color: var(--neon);
    transition: all 0.2s;
}
.tag:hover {
    background: var(--neon);
    color: #000;
    transform: rotate(-2deg) scale(1.05);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    perspective: 1000px;
}
.flip-card {
    background: transparent;
    height: 180px;
    cursor: pointer;
}
.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.flip-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border: 2px solid var(--neon-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: var(--bg-3);
}
.flip-front {
    box-shadow: inset 0 0 20px rgba(170, 255, 0, 0.05);
}
.flip-back {
    transform: rotateY(180deg);
    background: var(--neon);
    color: #000;
}
.flip-back p { font-size: 1rem; font-weight: bold; }
.card-icon-big { font-size: 3rem; margin-bottom: 12px; animation: bounce-star 2s ease-in-out infinite; }
.flip-front h4 {
    font-family: var(--f-display);
    color: var(--neon);
    font-size: 1.1rem;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.service-card {
    background: var(--bg-3);
    border: 3px solid var(--neon-dark);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 6px 6px 0 var(--bg-4);
}
.service-card:hover {
    border-color: var(--neon);
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--neon-dark);
}
.service-num {
    position: absolute;
    top: 10px;
    right: 16px;
    font-family: var(--f-pixel);
    font-size: 0.7rem;
    color: var(--neon-dark);
    opacity: 0.6;
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: bounce-star 2.5s ease-in-out infinite;
}
.service-card h3 {
    font-family: var(--f-display);
    color: var(--neon);
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 var(--neon-dark);
}
.service-card h3 small {
    font-family: var(--f-comic);
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: normal;
    text-shadow: none;
    display: block;
}
.service-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}
.service-list {
    list-style: none;
    padding: 0;
}
.service-list li {
    padding: 4px 0;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px dotted var(--bg-4);
}
.service-list li:last-child { border-bottom: none; }
.service-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 255, 0, 0.15), transparent);
    transition: 0.6s;
}
.service-card:hover .service-shine { left: 100%; }
.service-featured {
    border-color: var(--magenta);
    background: linear-gradient(135deg, var(--bg-3), rgba(255, 0, 255, 0.05));
    box-shadow: 6px 6px 0 var(--magenta);
}
.service-featured:hover { box-shadow: 9px 9px 0 var(--magenta); }
.service-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--magenta);
    color: #fff;
    font-family: var(--f-pixel);
    font-size: 0.6rem;
    padding: 6px 12px;
    transform: rotate(-8deg);
    box-shadow: 0 0 15px var(--magenta);
    animation: bounce-star 1.5s ease-in-out infinite;
}

/* === CLIENTS === */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.client-card {
    background: var(--bg-3);
    border: 2px solid var(--neon-dark);
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    display: block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.client-card:hover {
    border-color: var(--neon);
    background: var(--bg-4);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(170, 255, 0, 0.3);
}
.client-logo {
    background: linear-gradient(135deg, var(--bg-4), var(--bg-2));
    border: 2px dashed var(--neon-dark);
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: 0.3s;
}
.client-logo span {
    font-family: var(--f-display);
    color: var(--neon);
    font-size: 1.4rem;
    text-shadow: 2px 2px 0 var(--neon-dark);
}
.client-card:hover .client-logo {
    border-color: var(--neon);
    background: linear-gradient(135deg, rgba(170,255,0,0.1), transparent);
}
.client-info h4 {
    font-family: var(--f-display);
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.client-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.client-year {
    font-family: var(--f-pixel);
    font-size: 0.65rem;
    color: var(--cyan);
    background: #000;
    padding: 4px 8px;
    display: inline-block;
    border: 1px solid var(--cyan);
    margin-bottom: 8px;
}
.client-arrow {
    font-family: var(--f-bitmap);
    font-size: 0.85rem;
    color: var(--neon);
    text-align: right;
    margin-top: 8px;
    transition: 0.3s;
}
.client-card:hover .client-arrow { animation: bounce-star 0.5s ease-in-out infinite; }

/* === PARTNERS / COUPONS === */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.coupon {
    background: var(--bg-3);
    border: 3px dashed var(--neon);
    padding: 24px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 6px 6px 0 var(--bg-4);
}
.coupon::before, .coupon::after {
    content: '●';
    position: absolute;
    color: var(--bg);
    background: var(--bg);
    border: 2px dashed var(--neon);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}
.coupon::before { top: -12px; left: 24px; }
.coupon::after { top: -12px; right: 24px; }
.coupon:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--neon-dark);
    border-color: var(--magenta);
}
.coupon-tag {
    display: inline-block;
    background: var(--neon);
    color: #000;
    font-family: var(--f-pixel);
    font-size: 0.65rem;
    padding: 4px 10px;
    margin-bottom: 12px;
}
.coupon-brand {
    font-family: var(--f-display);
    font-size: 2rem;
    color: var(--brand-color, var(--neon));
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 #000;
}
.coupon-title {
    font-family: var(--f-display);
    color: var(--text);
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.coupon-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.coupon-code-box {
    background: #000;
    border: 2px solid var(--neon);
    padding: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.coupon-label {
    font-family: var(--f-pixel);
    font-size: 0.6rem;
    color: var(--cyan);
    letter-spacing: 2px;
}
.coupon-code {
    font-family: var(--f-terminal);
    font-size: 1.6rem;
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon-glow);
    letter-spacing: 2px;
    background: var(--bg-4);
    padding: 4px 8px;
    border: 1px solid var(--neon-dark);
    flex: 1;
    text-align: center;
}
.coupon-copy {
    font-family: var(--f-bitmap);
    background: var(--neon);
    color: #000;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}
.coupon-copy:hover { background: var(--magenta); color: #fff; }
.coupon-copy:active { transform: scale(0.95); }
.coupon-cta {
    display: block;
    text-align: center;
    background: var(--bg-4);
    border: 2px solid var(--neon-dark);
    color: var(--neon);
    padding: 12px;
    font-family: var(--f-bitmap);
    text-decoration: none;
    transition: 0.2s;
}
.coupon-cta:hover {
    background: var(--neon);
    color: #000;
    border-color: var(--neon);
}
.coupon-hot { border-color: var(--magenta); animation: pulse-glow 3s ease-in-out infinite; }
.partners-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-3);
    border: 2px solid var(--neon-dark);
}
.partners-cta p { margin-bottom: 16px; font-size: 1.1rem; }

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.guestbook-entry {
    background: #FFFF99;
    color: #000;
    padding: 30px 24px 24px;
    position: relative;
    transform: rotate(-1deg);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    transition: 0.3s;
    font-family: var(--f-comic);
}
.guestbook-entry:nth-child(2) {
    background: #FFCC99;
    transform: rotate(1deg);
}
.guestbook-entry:nth-child(3) {
    background: #CCFFCC;
    transform: rotate(-0.5deg);
}
.guestbook-entry:hover {
    transform: rotate(0) scale(1.05);
    z-index: 2;
    box-shadow: 6px 6px 15px rgba(0,0,0,0.6);
}
.entry-pin {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}
.entry-date {
    font-family: var(--f-terminal);
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 8px;
    text-align: right;
    border-bottom: 1px dashed #888;
    padding-bottom: 4px;
}
.entry-stars { color: #FF6B00; font-size: 1.2rem; margin-bottom: 8px; }
.entry-msg {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #222;
}
.entry-sig {
    border-top: 1px dashed #888;
    padding-top: 8px;
    font-size: 0.95rem;
    color: #333;
}
.entry-sig b { color: #C00; }
.entry-sig span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}
.rating-overall {
    text-align: center;
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--text-muted);
}
.rating-overall .stars { color: var(--yellow); font-size: 1.3rem; }
.rating-overall b { color: var(--neon); }
.testimonial-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CTA BANNER === */
.cta-banner {
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        repeating-linear-gradient(45deg, var(--neon-dark) 0, var(--neon-dark) 20px, transparent 20px, transparent 40px);
    padding: 80px 0;
    text-align: center;
    border-top: 4px solid var(--neon);
    border-bottom: 4px solid var(--neon);
}
.cta-content h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    margin-bottom: 16px;
    color: var(--text);
}
.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-stars {
    color: var(--yellow);
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin: 20px 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.contact-card {
    background: var(--bg-3);
    border: 2px solid var(--neon-dark);
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 0 var(--bg-4);
}
.contact-card:hover {
    border-color: var(--neon);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--neon-dark);
}
.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon), var(--neon-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 16px;
    box-shadow: 0 0 20px var(--neon-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}
.contact-title {
    font-family: var(--f-pixel);
    font-size: 0.85rem;
    color: var(--cyan);
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.contact-info {
    font-family: var(--f-comic);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 12px;
    word-break: break-word;
}
.contact-go {
    font-family: var(--f-bitmap);
    font-size: 0.85rem;
    color: var(--neon);
    padding: 8px;
    border: 1px dashed var(--neon-dark);
    display: inline-block;
}

/* === FOOTER === */
.site-footer {
    background: var(--bg-2);
    border-top: 4px double var(--neon);
    padding: 40px 0 20px;
    margin-top: 60px;
    position: relative;
}
.webring {
    background: #000;
    border: 2px solid var(--neon);
    padding: 8px 16px;
    text-align: center;
    margin: 0 auto 30px;
    max-width: 700px;
    font-family: var(--f-pixel);
    font-size: 0.75rem;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: var(--neon);
}
.webring-label { color: var(--magenta); }
.webring-btn {
    background: var(--neon);
    color: #000;
    padding: 4px 10px;
    text-decoration: none;
    border: 1px solid #000;
    transition: 0.2s;
}
.webring-btn:hover { background: var(--magenta); color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--bg-4);
}
.footer-logo {
    margin-bottom: 12px;
    display: flex;
	width: 300px;
    flex-direction: column;
}
.footer-logo .logo-text {
    font-size: 2.5rem;
    line-height: 1;
}
.footer-bio {
    color: var(--text-muted);
    margin: 12px 0;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-sbtn {
    width: 40px; height: 40px;
    background: var(--bg-3);
    border: 1px solid var(--neon-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.2s;
    text-decoration: none;
}
.footer-sbtn:hover {
    background: var(--neon);
    box-shadow: 0 0 15px var(--neon-glow);
    transform: rotate(-5deg);
}
.footer-h {
    font-family: var(--f-pixel);
    color: var(--neon);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.footer-link, .footer-info {
    display: block;
    color: var(--text-muted);
    padding: 4px 0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}
.footer-link:hover {
    color: var(--neon);
    padding-left: 8px;
    text-shadow: 0 0 8px var(--neon-glow);
}
.footer-info { padding: 6px 0; }

/* Badges 88x31 retrô */
.badges-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px dashed var(--bg-4);
    border-bottom: 1px dashed var(--bg-4);
}
.badge88 {
    width: 88px;
    height: 31px;
    background: linear-gradient(135deg, var(--neon), var(--neon-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-pixel);
    font-size: 0.55rem;
    border: 1px solid #000;
    box-shadow: 1px 1px 0 #000, inset 1px 1px 0 rgba(255,255,255,0.5);
    text-decoration: none;
    transition: 0.2s;
}
.badge88:nth-child(2) { background: linear-gradient(135deg, #00FFFF, #0080FF); }
.badge88:nth-child(3) { background: linear-gradient(135deg, #FFFF00, #FF8000); color: #000; }
.badge88:nth-child(4) { background: linear-gradient(135deg, #FF00FF, #800080); color: #fff; }
.badge88:nth-child(5) { background: linear-gradient(135deg, var(--neon), var(--neon-dark)); }
.badge88:nth-child(6) { background: linear-gradient(135deg, #FF1493, #FF6B6B); color: #fff; }
.badge88:nth-child(7) { background: linear-gradient(135deg, #8B4513, #FF8C00); color: #fff; }
.badge88:nth-child(8) { background: linear-gradient(135deg, #4B0082, #8B00FF); color: #fff; }
.badge88:hover { transform: scale(1.1) rotate(-3deg); }

/* Hit counter retrô */
.hit-counter {
    text-align: center;
    margin: 20px 0;
}
.hc-label {
    font-family: var(--f-pixel);
    font-size: 0.7rem;
    color: var(--cyan);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}
.hc-display {
    display: inline-flex;
    background: #000;
    padding: 8px;
    border: 3px ridge var(--neon-dark);
}
.hc-digit {
    background: linear-gradient(180deg, #200, #000);
    color: var(--neon);
    font-family: var(--f-pixel);
    font-size: 1.1rem;
    width: 22px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1px;
    text-shadow: 0 0 8px var(--neon-glow);
    border: 1px solid var(--neon-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-bottom p { margin: 4px 0; }
.footer-copyright b { color: var(--neon); }
.heart {
    color: var(--magenta);
    display: inline-block;
    animation: pulse-glow 1s ease-in-out infinite;
}
.footer-best {
    font-family: var(--f-pixel);
    font-size: 0.7rem !important;
    color: var(--cyan) !important;
    letter-spacing: 1px;
}
.rainbow-small {
    background: linear-gradient(90deg, red, orange, yellow, green, blue, purple, red);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* === UNDER CONSTRUCTION === */
.under-construction {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--yellow);
    color: #000;
    padding: 8px 12px;
    font-family: var(--f-pixel);
    font-size: 0.55rem;
    text-align: center;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    z-index: 50;
    transform: rotate(-8deg);
    animation: wobble 3s ease-in-out infinite;
    cursor: help;
}
.under-construction span:first-child { font-size: 1.2rem; display: block; }
@keyframes wobble {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--neon);
    color: #000;
    border: 3px solid #fff;
    cursor: pointer;
    font-family: var(--f-pixel);
    font-size: 0.6rem;
    line-height: 1;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 4px 4px 0 var(--neon-dark);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--magenta);
    color: #fff;
    transform: translateY(-3px);
}
.back-to-top span {
    display: block;
    font-size: 0.5rem;
    margin-top: 2px;
}

/* === CHAT WIDGET === */
.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 60;
}
.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon);
    border: 3px solid #fff;
    color: #000;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 0 20px var(--neon-glow), 4px 4px 0 var(--neon-dark);
    position: relative;
    transition: 0.2s;
}
.chat-toggle:hover { transform: scale(1.1) rotate(-10deg); }
.chat-pulse {
    position: absolute;
    top: -3px; right: -3px;
    width: 16px; height: 16px;
    background: var(--magenta);
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse-glow 1s ease-in-out infinite;
}
.chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    height: 400px;
    background: #ECE9D8;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000, inset 1px 1px 0 #fff;
    display: none;
    flex-direction: column;
    font-family: var(--f-comic);
}
.chat-window.open {
    display: flex;
    animation: reveal-up 0.3s ease;
}
.chat-title {
    background: linear-gradient(90deg, #0050E0, #2070E0);
    color: #fff;
    padding: 6px 10px;
    font-family: var(--f-bitmap);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
}
.chat-close {
    background: #C75050;
    color: #fff;
    border: 1px solid #fff;
    width: 20px; height: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #600;
}
.chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid #888;
}
.chat-msg {
    background: #FFFFCC;
    border: 1px solid #888;
    padding: 6px 8px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    max-width: 80%;
    word-wrap: break-word;
}
.chat-msg.chat-user {
    background: #CCFFCC;
    margin-left: auto;
    border-color: #080;
}
.chat-name {
    font-weight: bold;
    color: #0050E0;
    margin-right: 4px;
}
.chat-input-wrap {
    display: flex;
    padding: 6px;
    background: #ECE9D8;
    gap: 4px;
}
.chat-input {
    flex: 1;
    border: 1px solid #888;
    padding: 4px 6px;
    font-family: var(--f-comic);
    font-size: 0.9rem;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #888;
    background: #fff;
}
.chat-send {
    background: linear-gradient(180deg, #E0E0E0, #B0B0B0);
    border: 2px solid;
    border-color: #fff #888 #888 #fff;
    padding: 4px 10px;
    cursor: pointer;
    font-family: var(--f-bitmap);
    font-size: 0.8rem;
}
.chat-send:active {
    border-color: #888 #fff #fff #888;
}

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--neon);
    color: #000;
    padding: 14px 24px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 var(--neon-dark);
    font-family: var(--f-bitmap);
    font-size: 0.95rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast-icon {
    background: #000;
    color: var(--neon);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* === KONAMI EGG === */
.konami-egg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.konami-egg.open {
    display: flex;
    animation: reveal-up 0.5s ease;
}
.egg-content {
    background: var(--bg-3);
    border: 4px double var(--magenta);
    padding: 40px;
    text-align: center;
    font-family: var(--f-pixel);
    box-shadow: 0 0 50px var(--magenta);
}
.egg-content h2 {
    color: var(--magenta);
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 var(--neon);
}
.egg-content p {
    font-family: var(--f-comic);
    color: var(--neon);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.egg-close {
    font-family: var(--f-bitmap);
    background: var(--neon);
    color: #000;
    border: 2px solid #000;
    padding: 10px 20px;
    cursor: pointer;
}
.egg-close:hover { background: var(--magenta); color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-2);
        flex-direction: column;
        padding: 20px;
        border-bottom: 4px double var(--neon);
        box-shadow: 0 4px 20px rgba(170,255,0,0.2);
    }
    .main-nav.open { display: flex; }
    .mobile-toggle { display: flex; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .construction-banner { font-size: 0.55rem; }
}
@media (max-width: 600px) {
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid, .partners-grid, .clients-grid { grid-template-columns: 1fr; }
    .chat-window { width: calc(100vw - 40px); }
    .under-construction { display: none; }
    .topbar-inner { font-size: 0.85rem; }
    .topbar-item:nth-child(4), .topbar-item:nth-child(5) { display: none; }
}

/* === SCROLLBAR CUSTOM === */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track {
    background: var(--bg-2);
    border-left: 1px solid var(--neon-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon), var(--neon-dark));
    border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--magenta); }

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
