:root {
    --bg: #05050a;
    --panel: rgba(12, 14, 28, 0.92);
    --text: #ffffff;
    --muted: #c5c5d4;
    --cyan: #00f7ff;
    --pink: #ff00f5;
    --yellow: #fff200;
    --green: #39ff14;
    --shadow-cyan: 0 0 22px rgba(0, 247, 255, 0.7);
    --shadow-pink: 0 0 22px rgba(255, 0, 245, 0.7);
    --shadow-yellow: 0 0 22px rgba(255, 242, 0, 0.55);
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(rgba(0, 247, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 245, 0.07) 1px, transparent 1px),
        radial-gradient(circle at top left, rgba(255, 0, 245, 0.20), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0, 247, 255, 0.18), transparent 32%),
        var(--bg);
    background-size: 52px 52px, 52px 52px, auto, auto, auto;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.025) 0,
        rgba(255,255,255,0.025) 1px,
        transparent 1px,
        transparent 5px
    );
    pointer-events: none;
    z-index: 99;
    opacity: 0.10;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.page-glow {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.20;
    pointer-events: none;
    z-index: -2;
}

.glow-pink {
    top: 90px;
    left: -120px;
    background: var(--pink);
}

.glow-cyan {
    right: -120px;
    bottom: 90px;
    background: var(--cyan);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 12, 0.94);
    border-bottom: 2px solid var(--cyan);
    box-shadow:
        0 0 22px rgba(0, 247, 255, 0.45),
        0 0 42px rgba(255, 0, 245, 0.18);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-family: "Courier New", monospace;
    font-weight: 900;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(5, 5, 12, 0.56);
    box-shadow:
        0 0 18px rgba(255, 0, 245, 0.40),
        inset 0 0 14px rgba(0, 247, 255, 0.08);
}

.brand-icon {
    font-size: 34px;
    color: var(--pink);
    filter: drop-shadow(0 0 12px var(--pink));
}

.brand-text {
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 2px;
    text-shadow:
        0 0 8px #ffffff,
        0 0 16px var(--cyan);
}

.brand-text span {
    color: var(--pink);
}

.main-nav {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: rgba(3, 4, 10, 0.45);
    border: 1px solid rgba(0, 247, 255, 0.20);
    border-radius: 999px;
}

.nav-link,
.header-cta {
    color: var(--muted);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    border: 1px solid var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.header-cta {
    color: #ffffff;
    border: 1px solid var(--green);
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.45);
    background: rgba(3, 4, 10, 0.65);
}

.hero-section {
    position: relative;
    min-height: 840px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 247, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 245, 0.10) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.72;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 45%, rgba(255, 0, 245, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(5, 5, 10, 0.18), rgba(5, 5, 10, 0.42));
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    padding: 90px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-family: "Courier New", monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: var(--shadow-cyan);
}

.hero-title {
    margin: 0;
    font-family: "Courier New", monospace;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;
    color: var(--pink);
    text-shadow:
        0 0 8px #ffffff,
        0 0 18px var(--pink),
        0 0 36px var(--pink);
}

.hero-title span {
    display: block;
    color: var(--cyan);
    text-shadow:
        0 0 8px #ffffff,
        0 0 20px var(--cyan),
        0 0 42px var(--cyan);
}

.hero-text {
    max-width: 680px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    color: var(--text);
    text-decoration: none;
    background: rgba(5, 5, 10, 0.80);
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid currentColor;
    cursor: pointer;
}

.btn-cyan {
    color: var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.btn-pink {
    color: var(--pink);
    box-shadow: var(--shadow-pink);
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.hero-badges div {
    background: rgba(5, 6, 14, 0.78);
    border: 1px solid rgba(0, 247, 255, 0.35);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
}

.hero-badges strong {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 12px var(--cyan));
}

.hero-badges span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-machine {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.computer-frame {
    width: min(100%, 560px);
    padding: 28px;
    border: 3px solid var(--pink);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 0, 245, 0.16), rgba(0, 247, 255, 0.12)),
        rgba(5, 5, 10, 0.88);
    box-shadow:
        0 0 30px rgba(255, 0, 245, 0.85),
        inset 0 0 30px rgba(0, 247, 255, 0.35);
    transform: perspective(700px) rotateY(-8deg);
}

.computer-screen {
    position: relative;
    min-height: 320px;
    border: 2px solid var(--cyan);
    border-radius: 18px;
    background:
        radial-gradient(circle at center, rgba(0, 247, 255, 0.18), transparent 34%),
        linear-gradient(rgba(0, 247, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 245, 0.14) 1px, transparent 1px),
        #05050a;
    background-size: auto, 38px 38px, 38px 38px, auto;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.screen-small,
.screen-status {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-family: "Courier New", monospace;
    font-weight: 900;
}

.screen-small {
    top: 54px;
    color: var(--cyan);
    font-size: 28px;
    text-shadow: var(--shadow-cyan);
}

.screen-status {
    top: 104px;
    color: var(--green);
    font-size: 18px;
    text-shadow: 0 0 18px rgba(57, 255, 20, 0.70);
}

.screen-icon {
    font-size: 76px;
    color: var(--cyan);
    filter: drop-shadow(0 0 18px var(--cyan));
}

.computer-base {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.computer-base span {
    width: 60px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow));
    box-shadow: var(--shadow-cyan);
}

.tool {
    position: absolute;
    font-size: 54px;
    filter: drop-shadow(0 0 16px var(--pink));
    animation: float 4s ease-in-out infinite;
}

.tool-wrench {
    right: 6%;
    bottom: 70px;
}

.tool-gamepad {
    left: 4%;
    bottom: 90px;
    animation-delay: 0.8s;
}

.tool-wifi {
    top: 50px;
    right: 14%;
    animation-delay: 1.4s;
}

.section {
    padding: 96px 0;
}

.section-heading {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 52px;
}

.section-heading h2,
.support-box h2,
.contact-grid h2 {
    margin: 0 0 16px;
    font-family: "Courier New", monospace;
    font-size: clamp(34px, 5vw, 58px);
    color: #ffffff;
    text-shadow:
        0 0 8px #ffffff,
        0 0 18px var(--pink),
        0 0 34px var(--pink);
}

.section-heading p,
.support-box p,
.contact-grid p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card,
.why-card,
.support-box,
.contact-form {
    background:
        linear-gradient(180deg, rgba(18, 20, 38, 0.96), rgba(6, 7, 16, 0.96));
    border: 2px solid rgba(0, 247, 255, 0.72);
    border-radius: 14px;
    box-shadow:
        0 0 18px rgba(0, 247, 255, 0.42),
        inset 0 0 24px rgba(255, 0, 245, 0.08);
}

.service-card {
    position: relative;
    min-height: 300px;
    padding: 34px 28px;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow));
    box-shadow: var(--shadow-cyan);
}

.service-icon {
    font-size: 58px;
    margin: 30px 0 22px;
    filter: drop-shadow(0 0 16px var(--cyan));
}

.service-card h3,
.why-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.service-card p,
.why-card p {
    color: var(--muted);
    line-height: 1.7;
}

.service-card a {
    color: var(--cyan);
    font-weight: 900;
    text-decoration: none;
    text-shadow: var(--shadow-cyan);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    padding: 30px 24px;
    text-align: center;
}

.why-card span {
    display: block;
    font-size: 58px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 16px var(--yellow));
}

.support-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    padding: 46px;
    border-color: var(--pink);
    box-shadow: var(--shadow-pink);
}

.support-terminal {
    background: #02030a;
    border: 1px solid var(--green);
    border-radius: 12px;
    padding: 24px;
    font-family: "Courier New", monospace;
    color: var(--green);
    box-shadow:
        0 0 18px rgba(57, 255, 20, 0.45),
        inset 0 0 18px rgba(57, 255, 20, 0.10);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-cards div {
    background: rgba(5, 6, 14, 0.78);
    border: 1px solid rgba(0, 247, 255, 0.35);
    border-radius: 12px;
    padding: 18px;
}

.contact-cards strong,
.contact-cards span {
    display: block;
}

.contact-cards span {
    color: var(--cyan);
    margin-top: 8px;
}

.contact-form {
    padding: 32px;
}

.contact-form label {
    display: block;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px 16px;
    color: var(--text);
    background: #02030a;
    border: 1px solid var(--cyan);
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.site-footer {
    padding: 34px 0;
    border-top: 2px solid var(--cyan);
    background: rgba(5, 5, 10, 0.95);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-family: "Courier New", monospace;
    font-weight: 900;
    text-shadow: var(--shadow-pink);
}

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

@keyframes scan {
    from {
        top: -20%;
    }
    to {
        top: 120%;
    }
}

@media (max-width: 1050px) {
    .header-cta {
        display: none;
    }

    .hero-inner,
    .support-box,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-machine {
        min-height: 430px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        flex-direction: column;
        padding: 18px 0 20px;
        gap: 18px;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .brand-text {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .main-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 14px;
        gap: 10px;
        padding: 10px;
    }

    .nav-link {
        text-align: center;
        border: 1px solid rgba(255,255,255,0.08);
        background: rgba(0,0,0,0.28);
    }

    .header-cta {
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        gap: 34px;
        padding: 56px 0 64px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(42px, 12vw, 64px);
    }

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

    .hero-actions,
    .hero-badges {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-machine {
        min-height: auto;
    }

    .computer-frame {
        transform: none;
        padding: 16px;
    }

    .computer-screen {
        min-height: 260px;
    }

    .screen-small {
        font-size: 22px;
    }

    .service-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .support-box,
    .contact-form {
        padding: 30px 22px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* First RetroBytes.Tech hero polish */
.screen-icon {
    margin-top: 80px;
    font-size: 70px;
}

.screen-small {
    top: 46px;
    font-size: 24px;
}

.screen-status {
    top: 88px;
    font-size: 16px;
}

.hero-section {
    min-height: 760px;
}

.hero-inner {
    padding: 72px 0 80px;
}

.hero-title {
    font-size: clamp(44px, 5.2vw, 76px);
}

.hero-machine::before {
    content: "FIX BOOT PLAY";
    position: absolute;
    top: 34px;
    left: 6%;
    color: var(--pink);
    border: 2px solid var(--pink);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: "Courier New", monospace;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: var(--shadow-pink);
    background: rgba(5, 5, 10, 0.78);
}

.hero-machine::after {
    content: "LEVEL UP";
    position: absolute;
    top: 34px;
    right: 8%;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: "Courier New", monospace;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: var(--shadow-yellow);
    background: rgba(5, 5, 10, 0.78);
}

@media (max-width: 760px) {
    .hero-section {
        min-height: auto;
    }

    .hero-inner {
        padding: 48px 0 58px;
    }

    .hero-machine::before,
    .hero-machine::after {
        display: none;
    }

    .screen-icon {
        margin-top: 72px;
        font-size: 58px;
    }
}


/* Remote Support Station */
.support-toggle {
    margin-top: 26px;
}

.support-station {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition:
        max-height 0.55s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.support-station.is-open {
    max-height: 1600px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 34px;
}

.support-station-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px 30px;
    border: 2px solid var(--pink);
    border-radius: 16px 16px 0 0;
    background:
        linear-gradient(180deg, rgba(20, 12, 34, 0.96), rgba(6, 7, 16, 0.96));
    box-shadow:
        0 0 22px rgba(255, 0, 245, 0.55),
        inset 0 0 22px rgba(0, 247, 255, 0.08);
}

.support-station-header h3 {
    margin: 0;
    font-family: "Courier New", monospace;
    font-size: clamp(28px, 4vw, 44px);
    color: #ffffff;
    text-shadow:
        0 0 8px #ffffff,
        0 0 18px var(--pink),
        0 0 34px var(--cyan);
}

.support-close,
.mini-btn {
    color: var(--cyan);
    background: rgba(5, 5, 10, 0.82);
    border: 2px solid var(--cyan);
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: var(--shadow-cyan);
}

.support-station-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 30px;
    border-left: 2px solid var(--pink);
    border-right: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    border-radius: 0 0 16px 16px;
    background:
        linear-gradient(rgba(0, 247, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 245, 0.08) 1px, transparent 1px),
        rgba(5, 6, 14, 0.94);
    background-size: 36px 36px, 36px 36px, auto;
    box-shadow:
        0 0 24px rgba(255, 0, 245, 0.45),
        inset 0 0 40px rgba(0, 247, 255, 0.08);
}

.support-tool-card {
    position: relative;
    min-height: 260px;
    padding: 28px 24px;
    border: 2px solid rgba(0, 247, 255, 0.72);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(18, 20, 38, 0.96), rgba(6, 7, 16, 0.96));
    box-shadow:
        0 0 18px rgba(0, 247, 255, 0.38),
        inset 0 0 20px rgba(255, 0, 245, 0.08);
    overflow: hidden;
}

.support-tool-card::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 16px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow));
    box-shadow:
        0 0 14px rgba(255, 0, 245, 0.7),
        0 0 18px rgba(0, 247, 255, 0.55);
}

.support-tool-icon {
    margin-top: 24px;
    font-size: 48px;
    filter: drop-shadow(0 0 14px var(--cyan));
}

.support-tool-card h4 {
    margin: 18px 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.support-tool-card p,
.support-steps {
    color: var(--muted);
    line-height: 1.7;
}

.support-steps {
    padding-left: 20px;
}

.tool-link,
.tool-list a {
    color: var(--cyan);
    font-weight: 900;
    text-decoration: none;
    text-shadow: var(--shadow-cyan);
}

.tool-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.tool-list a {
    padding: 12px 14px;
    border: 1px solid rgba(0, 247, 255, 0.45);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.28);
}

.warning-card {
    border-color: var(--yellow);
    box-shadow:
        0 0 18px rgba(255, 242, 0, 0.38),
        inset 0 0 20px rgba(255, 242, 0, 0.08);
}

.system-output {
    min-height: 100px;
    margin-top: 16px;
    padding: 14px;
    color: var(--green);
    background: #02030a;
    border: 1px solid rgba(57, 255, 20, 0.55);
    border-radius: 10px;
    white-space: pre-wrap;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: inset 0 0 14px rgba(57, 255, 20, 0.08);
}

@media (max-width: 1050px) {
    .support-station-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .support-station.is-open {
        max-height: 2800px;
    }

    .support-station-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .support-close {
        width: 100%;
    }

    .support-station-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .support-tool-card {
        min-height: auto;
    }
}

/* Donation / Contribution Section */
.donation-section {
    position: relative;
    padding-top: 90px;
}

.donation-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
    padding: 44px;
    border: 2px solid var(--green);
    border-radius: 18px;
    background:
        linear-gradient(rgba(0, 247, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 245, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(18, 20, 38, 0.96), rgba(6, 7, 16, 0.96));
    background-size: 38px 38px, 38px 38px, auto;
    box-shadow:
        0 0 24px rgba(57, 255, 20, 0.45),
        inset 0 0 32px rgba(0, 247, 255, 0.08);
}

.donation-copy h2 {
    margin: 0 0 18px;
    font-family: "Courier New", monospace;
    font-size: clamp(34px, 5vw, 58px);
    color: #ffffff;
    text-shadow:
        0 0 8px #ffffff,
        0 0 18px var(--green),
        0 0 34px var(--cyan);
}

.donation-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
}

.donation-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.donation-highlights span {
    padding: 12px 16px;
    color: var(--text);
    background: rgba(5, 5, 10, 0.72);
    border: 1px solid rgba(0, 247, 255, 0.42);
    border-radius: 999px;
    font-weight: 800;
    box-shadow: inset 0 0 12px rgba(0, 247, 255, 0.08);
}

.donation-card {
    position: relative;
    padding: 34px 28px;
    text-align: center;
    border: 2px solid var(--cyan);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(10, 12, 24, 0.98), rgba(4, 5, 12, 0.98));
    box-shadow:
        0 0 22px rgba(0, 247, 255, 0.48),
        inset 0 0 24px rgba(57, 255, 20, 0.08);
    overflow: hidden;
}

.donation-card::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 18px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--pink));
    box-shadow:
        0 0 14px rgba(57, 255, 20, 0.75),
        0 0 18px rgba(0, 247, 255, 0.55);
}

.donation-icon {
    margin-top: 26px;
    font-size: 58px;
    filter:
        drop-shadow(0 0 12px var(--green))
        drop-shadow(0 0 22px var(--cyan));
}

.donation-card h3 {
    margin: 18px 0 12px;
    font-size: 28px;
    color: #ffffff;
}

.donation-card p {
    color: var(--muted);
    line-height: 1.7;
}

.donation-btn {
    width: 100%;
    margin: 20px 0 16px;
}

.donation-note {
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 900px) {
    .donation-panel {
        grid-template-columns: 1fr;
        padding: 30px 22px;
    }

    .donation-copy,
    .donation-card {
        text-align: center;
    }

    .donation-highlights {
        justify-content: center;
    }
}

/* Floating tiny byte particles */
.byte-rain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.byte-rain span {
    position: absolute;
    color: rgba(0, 247, 255, 0.38);
    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow:
        0 0 6px rgba(0, 247, 255, 0.75),
        0 0 12px rgba(255, 0, 245, 0.35);
    opacity: 0;
    animation: byteFloat 18s linear infinite;
}

.byte-rain span:nth-child(1) {
    left: 8%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.byte-rain span:nth-child(2) {
    left: 18%;
    top: 70%;
    animation-delay: -4s;
    animation-duration: 22s;
    color: rgba(255, 0, 245, 0.34);
}

.byte-rain span:nth-child(3) {
    left: 28%;
    top: 42%;
    animation-delay: -8s;
    animation-duration: 20s;
}

.byte-rain span:nth-child(4) {
    left: 40%;
    top: 82%;
    animation-delay: -2s;
    animation-duration: 24s;
    color: rgba(255, 242, 0, 0.30);
}

.byte-rain span:nth-child(5) {
    left: 52%;
    top: 28%;
    animation-delay: -10s;
    animation-duration: 19s;
}

.byte-rain span:nth-child(6) {
    left: 64%;
    top: 64%;
    animation-delay: -6s;
    animation-duration: 23s;
    color: rgba(255, 0, 245, 0.34);
}

.byte-rain span:nth-child(7) {
    left: 72%;
    top: 18%;
    animation-delay: -12s;
    animation-duration: 21s;
}

.byte-rain span:nth-child(8) {
    left: 82%;
    top: 74%;
    animation-delay: -3s;
    animation-duration: 25s;
    color: rgba(57, 255, 20, 0.32);
}

.byte-rain span:nth-child(9) {
    left: 92%;
    top: 36%;
    animation-delay: -15s;
    animation-duration: 19s;
}

.byte-rain span:nth-child(10) {
    left: 12%;
    top: 88%;
    animation-delay: -9s;
    animation-duration: 26s;
    color: rgba(255, 242, 0, 0.30);
}

.byte-rain span:nth-child(11) {
    left: 58%;
    top: 8%;
    animation-delay: -14s;
    animation-duration: 22s;
}

.byte-rain span:nth-child(12) {
    left: 88%;
    top: 92%;
    animation-delay: -7s;
    animation-duration: 24s;
    color: rgba(255, 0, 245, 0.34);
}

@keyframes byteFloat {
    0% {
        transform: translate3d(0, 40px, 0) rotate(0deg);
        opacity: 0;
    }

    12% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.32;
    }

    88% {
        opacity: 0.55;
    }

    100% {
        transform: translate3d(36px, -220px, 0) rotate(4deg);
        opacity: 0;
    }
}

/* Keep content above floating bytes */
.site-header,
main,
.site-footer {
    position: relative;
    z-index: 2;
}

/* Mobile: keep floating bytes active but subtle */
@media (max-width: 760px) {
    .byte-rain span {
        display: block;
        font-size: 8px;
        letter-spacing: 1px;
        opacity: 0.30;
        animation-duration: 24s;
    }

    .byte-rain span:nth-child(n + 7) {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .byte-rain {
        display: none;
    }
}

/* Mobile byte visibility fix */
@media (max-width: 760px) {
    .byte-rain {
        z-index: 12 !important;
    }

    .byte-rain span {
        display: block !important;
        font-size: 12px !important;
        letter-spacing: 1px !important;
        color: rgba(0, 247, 255, 0.85) !important;
        text-shadow:
            0 0 8px rgba(0, 247, 255, 1),
            0 0 14px rgba(255, 0, 245, 0.75) !important;
        animation-name: byteFloatMobile !important;
        animation-duration: 22s !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
    }

    .byte-rain span:nth-child(n + 7) {
        display: block !important;
    }
}

@keyframes byteFloatMobile {
    0% {
        transform: translate3d(0, 30px, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.85;
    }

    50% {
        opacity: 0.55;
    }

    90% {
        opacity: 0.85;
    }

    100% {
        transform: translate3d(24px, -180px, 0) rotate(3deg);
        opacity: 0;
    }
}

/* Dashboard redesign pass 1: tighter arcade layout */
.hero-section {
    min-height: 680px !important;
}

.hero-inner {
    padding: 56px 0 54px !important;
    gap: 40px !important;
}

.hero-title {
    font-size: clamp(42px, 5vw, 70px) !important;
    line-height: 0.96 !important;
}

.hero-text {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 26px;
}

.hero-badges {
    margin-top: 28px;
    gap: 10px;
}

.hero-badges div {
    padding: 12px 10px;
}

.hero-badges strong {
    font-size: 26px;
}

.hero-badges span {
    font-size: 11px;
}

.hero-machine {
    min-height: 430px !important;
}

.computer-frame {
    max-width: 520px;
    padding: 22px;
    border-width: 3px;
    border-radius: 22px;
    transform: perspective(800px) rotateY(-7deg) rotateZ(-1deg);
}

.computer-screen {
    min-height: 285px;
    border-radius: 16px;
}

.screen-small {
    top: 42px !important;
    font-size: 22px !important;
}

.screen-status {
    top: 78px !important;
    font-size: 15px !important;
}

.screen-icon {
    margin-top: 70px !important;
    font-size: 66px !important;
}

.computer-base {
    margin-top: 18px;
}

.computer-base span {
    width: 52px;
    height: 9px;
}

/* Make the hero visual feel more like an arcade repair dashboard */
.hero-machine::before {
    top: 12px !important;
    left: 4% !important;
    font-size: 12px;
    transform: rotate(-1deg);
}

.hero-machine::after {
    top: 12px !important;
    right: 8% !important;
    font-size: 12px;
    transform: rotate(1deg);
}

.tool {
    font-size: 46px;
}

.tool-wifi {
    top: 34px;
    right: 18%;
}

.tool-gamepad {
    left: 2%;
    bottom: 64px;
}

.tool-wrench {
    right: 4%;
    bottom: 58px;
}

/* Pull services closer and make section feel like one dashboard continuation */
.services-section {
    padding-top: 52px !important;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: clamp(34px, 4.5vw, 52px);
}

.service-grid {
    gap: 20px;
}

.service-card {
    min-height: 260px;
    padding: 28px 24px;
}

.service-icon {
    font-size: 46px;
    margin: 24px 0 18px;
}

.service-card h3 {
    font-size: 22px;
}

.service-card p {
    font-size: 15px;
}

/* Mobile dashboard pass */
@media (max-width: 760px) {
    .hero-inner {
        padding: 42px 0 46px !important;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 58px) !important;
    }

    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .computer-frame {
        max-width: 100%;
        transform: none;
    }

    .services-section {
        padding-top: 44px !important;
    }

    .service-card {
        min-height: auto;
    }
}

/* Dashboard redesign pass 2: compact service menu cards */
.service-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

.service-card {
    min-height: 178px !important;
    padding: 26px 22px 22px 118px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    position: absolute;
    left: 28px;
    top: 54px;
    margin: 0 !important;
    font-size: 48px !important;
}

.service-card h3 {
    margin-bottom: 10px !important;
    font-size: 21px !important;
    color: #ffffff;
}

.service-card p {
    margin: 0 0 14px;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.service-card a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Give each service card its own arcade color */
.service-card:nth-child(1) {
    border-color: var(--cyan);
    box-shadow: 0 0 18px rgba(0, 247, 255, 0.38);
}

.service-card:nth-child(2) {
    border-color: var(--pink);
    box-shadow: 0 0 18px rgba(255, 0, 245, 0.38);
}

.service-card:nth-child(3) {
    border-color: var(--green);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.30);
}

.service-card:nth-child(4) {
    border-color: var(--yellow);
    box-shadow: 0 0 18px rgba(255, 242, 0, 0.30);
}

.service-card:nth-child(5) {
    border-color: var(--cyan);
    box-shadow: 0 0 18px rgba(0, 247, 255, 0.38);
}

.service-card:nth-child(6) {
    border-color: var(--pink);
    box-shadow: 0 0 18px rgba(255, 0, 245, 0.38);
}

@media (max-width: 1050px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 760px) {
    .service-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        min-height: auto !important;
        padding: 28px 22px 24px !important;
        text-align: center;
    }

    .service-icon {
        position: static;
        margin: 24px 0 16px !important;
    }
}

/* Available Services Console */
.services-console-launch {
    width: min(var(--max), calc(100% - 40px));
    margin: 34px auto 0;
    display: flex;
    justify-content: center;
}

.available-services-console {
    width: min(var(--max), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition:
        max-height 0.55s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.available-services-console.is-open {
    max-height: 3600px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 34px;
}

.available-services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px 30px;
    border: 2px solid var(--cyan);
    border-radius: 16px 16px 0 0;
    background:
        linear-gradient(180deg, rgba(12, 20, 34, 0.96), rgba(6, 7, 16, 0.96));
    box-shadow:
        0 0 22px rgba(0, 247, 255, 0.48),
        inset 0 0 22px rgba(255, 0, 245, 0.08);
}

.available-services-header h3 {
    margin: 0 0 10px;
    font-family: "Courier New", monospace;
    font-size: clamp(28px, 4vw, 44px);
    color: #ffffff;
    text-shadow:
        0 0 8px #ffffff,
        0 0 18px var(--cyan),
        0 0 34px var(--pink);
}

.available-services-header p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.services-close {
    flex: 0 0 auto;
    color: var(--pink);
    background: rgba(5, 5, 10, 0.82);
    border: 2px solid var(--pink);
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
}

.services-table-wrap {
    border-left: 2px solid var(--cyan);
    border-right: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    border-radius: 0 0 16px 16px;
    overflow-x: auto;
    background:
        linear-gradient(rgba(0, 247, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 245, 0.07) 1px, transparent 1px),
        rgba(5, 6, 14, 0.96);
    background-size: 36px 36px, 36px 36px, auto;
    box-shadow:
        0 0 24px rgba(0, 247, 255, 0.35),
        inset 0 0 40px rgba(255, 0, 245, 0.06);
}

.services-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.services-table th,
.services-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(0, 247, 255, 0.18);
}

.services-table th {
    color: #ffffff;
    font-family: "Courier New", monospace;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 0, 245, 0.08);
    text-shadow: 0 0 12px var(--cyan);
}

.services-table td {
    color: var(--muted);
    line-height: 1.6;
}

.services-table td:first-child {
    color: #ffffff;
    font-weight: 900;
    width: 24%;
}

.services-table td:last-child {
    color: var(--yellow);
    font-weight: 900;
    width: 18%;
    text-shadow: 0 0 10px rgba(255, 242, 0, 0.35);
}

.services-table tr:hover td {
    background: rgba(0, 247, 255, 0.08);
}

@media (max-width: 760px) {
    .services-console-launch,
    .available-services-console {
        width: min(100% - 28px, var(--max));
    }

    .available-services-console.is-open {
        max-height: 6200px;
    }

    .available-services-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .services-close {
        width: 100%;
    }

    .services-table {
        min-width: 720px;
    }

    .services-table th,
    .services-table td {
        padding: 14px 14px;
        font-size: 14px;
    }
}

.services-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.services-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.services-table th,
.services-table td {
    vertical-align: top;
    text-align: left;
    padding: 16px 14px;
}

@media (max-width: 760px) {
    .services-console-launch {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .available-services-console {
        margin-top: 18px;
    }

    .available-services-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        text-align: center;
    }

    .available-services-header h3 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .available-services-header p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .services-close {
        width: 100%;
    }

    .services-table {
        min-width: 760px;
    }

    .services-table th,
    .services-table td {
        padding: 14px 12px;
        font-size: 0.95rem;
    }
}
