/* ==========================================================================
   Aximatrix — base styles
   ========================================================================== */

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../assets/fonts/plus-jakarta-sans-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../assets/fonts/plus-jakarta-sans-medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../assets/fonts/plus-jakarta-sans-semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../assets/fonts/plus-jakarta-sans-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../assets/fonts/plus-jakarta-sans-extrabold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("../assets/fonts/roboto-mono-light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("../assets/fonts/roboto-mono-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("../assets/fonts/roboto-mono-medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("../assets/fonts/roboto-mono-semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("../assets/fonts/roboto-mono-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family-jakarta: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-family-mono: "Roboto Mono", ui-monospace, monospace;
    --font-weight-extrabold: 800;
    --font-weight-bold: 700;

    --color-header-bg: rgba(227, 227, 227, 1);
    --color-text: #010204;
    --color-about-bg: #010204;
    --color-about-text: #e3e3e3;
    --color-about-line: rgba(227, 227, 227, 0.35);

    --container-max-width: 90rem;
    --section-padding-inline: 80px;

    --about-padding-top: 220px;
    --about-padding-bottom: 135px;
    --about-intro-gap: 80px;
    --about-block-gap: 64px;
    --about-cards-gap: 24px;

    --header-padding-inline: var(--section-padding-inline);
    --header-padding-bottom: 60px;
    --header-logo-offset-top: 50px;
    --header-divider-gap: 100px;
    --header-nav-gap: 40px;
    --header-brand-gap: 24px;

    --cases-card-width: 400px;
    --cases-card-height: 250px;
    --cases-skeleton-bg: #e3e3e3;
    --cases-image-fade-duration: 0.5s;
    --cases-skeleton-fade-duration: 0.4s;
    --cases-skeleton-shimmer-duration: 1.6s;
    --cases-image-grayscale: 100%;

    /* 8px spacing scale */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;

    /* Motion */
    --motion-duration-fast: 150ms;
    --motion-duration-base: 200ms;
    --motion-duration-slow: 250ms;
    --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

    /* Interaction */
    --interaction-scale-hover: 1.02;
    --interaction-scale-active: 0.98;
    --focus-ring-width: 2px;
    --focus-ring-offset: 3px;
    --focus-ring-color: #d6ff63;
    --focus-ring-color-dark: #010204;

    /* Form */
    --input-border-default: #8b989e;
    --input-border-hover: #b0babf;
    --input-border-focus: #d6ff63;
    --input-border-valid: #d6ff63;
    --input-border-error: #ff7070;
    --input-glow-focus: 0 4px 20px rgba(214, 255, 99, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
}

/* Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Layout */
.container {
    box-sizing: border-box;
    width: 100%;
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding-inline: var(--section-padding-inline);
}

/* Header */
.header {
    font-family: var(--font-family-jakarta);
    font-weight: 700;
    background-color: var(--color-header-bg);
}

.header__inner {
    padding-top: var(--header-logo-offset-top);
    padding-bottom: var(--header-padding-bottom);
}

.header__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--header-padding-inline);
    position: relative;
    z-index: 1;
}

.header__brand {
    display: flex;
    flex-direction: column;
    gap: 53px;
}

.header__logo {
    display: block;
    line-height: 0;
}

.header__logo-icon {
    display: block;
    height: 53px;
    width: 410px;
}

.header__tagline {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.header__divider {
    margin-top: var(--header-divider-gap);
    width: 100%;
}

.header__divider-line {
    margin: 0;
    width: 100%;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Navigation (BEM block nested in header) */

.nav__item {
    text-align: end;
}

.nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__list--grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: var(--header-nav-gap);
}

.nav__link {
    color: var(--color-text);
    font-family: var(--font-family-jakarta);
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: end;
}

/* About section */
.about {
    background-color: var(--color-about-bg);
    color: var(--color-about-text);
    font-family: var(--font-family-jakarta);
}

.about__inner {
    padding-top: 120px;
    padding-bottom: var(--about-padding-bottom);
}

.about__intro {
    display: flex;
    flex-direction: column;
    gap: var(--about-intro-gap);
}

.about__lead {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    text-transform: uppercase;
}

.about__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-end;
    width: fit-content;
    max-width: 100%;
}

.about__title,
.about__subtitle,
.about__quote,
.about__text,
.about__card-id,
.about__card-text,
.about__outro-lead,
.about__outro-text,
.about__ref-text {
    margin: 0;
}

.about__title {
    position: relative;
    font-family: var(--font-family-jakarta);
    width: fit-content;
    max-width: 100%;
    font-size: 30px;
    font-weight: 600;
}

.about__title .about__typewriter-layer {
    color: #010204;
}

.about.is-terminal-active .about__title .about__typewriter-layer,
.about.is-terminal-complete .about__title .about__typewriter-layer,
.about.is-terminal-reduced .about__title .about__typewriter-layer {
    background-color: #d6ff63;
}

.about__subtitle {
    position: relative;
    font-family: var(--font-family-mono);
    font-size: 41px;
    font-weight: 300;
    line-height: 1.35;
    color: var(--color-about-text);
    letter-spacing: 1px;
    width: fit-content;
    max-width: 100%;
}

/* About terminal boot sequence — reserve final dimensions, type in overlay */
.about__typewriter-reserve {
    display: block;
    visibility: hidden;
    user-select: none;
    pointer-events: none;
}

.about__typewriter-layer {
    position: absolute;
    inset: 0;
}

.about__typewriter-text {
    white-space: pre-wrap;
}

.about.is-terminal-reduced .about__typewriter-layer {
    position: static;
}

.about__cursor {
    display: inline-block;
    font-family: var(--font-family-mono);
    font-weight: 400;
    line-height: 1;
    margin-left: 1px;
    vertical-align: baseline;
    animation: about-terminal-cursor-blink 1.06s step-start infinite;
    will-change: opacity;
}

.about__title .about__cursor {
    color: #010204;
}

.about__subtitle .about__cursor {
    color: #d6ff63;
}

.about--terminal-pending .about__description:not(.is-terminal-description-visible) {
    opacity: 0;
    pointer-events: none;
}

.about__description.is-terminal-description-visible {
    animation: about-terminal-description-reveal 0.75s ease forwards;
}

@keyframes about-terminal-cursor-blink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes about-terminal-description-reveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about__cursor {
        animation: none;
        opacity: 1;
    }

    .about--terminal-pending .about__description:not(.is-terminal-description-visible) {
        opacity: 1;
        pointer-events: auto;
    }

    .about__description.is-terminal-description-visible {
        animation: none;
        opacity: 1;
    }
}

.about__quote {
    font-family: var(--font-family-jakarta);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    width: fit-content;
    max-width: 100%;
    color: #d6ff63;

}

.about__text {
    font-family: var(--font-family-jakarta);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    width: fit-content;
    max-width: 100%;
}

.about__ref {
    display: flex;
    justify-content: flex-end;
}

.about__ref--primary {
    margin-top: var(--about-block-gap);
}

.about__ref--secondary {
    margin-top: 64px;
}

.about__ref-text {
    font-family: var(--font-family-mono);
    font-size: 18px;
    font-weight: 600;
    background-color: #d6ff63;
    color: #010204;
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--about-cards-gap);
    margin: var(--about-block-gap) 0 0;
    padding: 0;
    list-style: none;
}

.about__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__card-id {
    font-family: var(--font-family-mono);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}

.about__card-line {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    border-top: 2px solid #8b989e;
}

.about__card-text {
    font-family: var(--font-family-jakarta);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.about__outro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 120px;
}

.about__outro-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.about__outro-lead {
    font-family: var(--font-family-jakarta);
    font-size: 68px;
    font-weight: 500;
    background-color: #d6ff63;
    color: #010204;
    width: fit-content;

}

.about__outro-text {
    font-family: var(--font-family-mono);
    font-size: 23px;
    font-weight: 600;
    color: #e3e3e3;
    line-height: 1.5;
}

.services__ref {
    margin-top: 64px;
    display: flex;
    justify-content: flex-end;


}

.services__ref-text {
    margin: 0;
    background-color: #000104;
    color: #D6FF63;
    font-family: "Roboto Mono", ui-monospace, monospace;
    font-weight: 600;
    font-size: 18px;
}

.services {
    padding: 120px 0 80px 0;
    background-color: #e3e3e3;
}

.services__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 500;
    font-size: 195px;
    color: #010204;
}

.services__intro {
    display: flex;
    width: 100%;
    gap: 50px;
}

.services__tagline {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #010204;
    width: 50%;
}

.services__content {
    width: 50%;
    background-color: #d6ff63;
    padding: 12px;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services__heading {
    font-family: "Roboto Mono", ui-monospace, monospace;
    font-weight: 700;
    font-size: 18px;
}

.services__text {
    font-family: "Roboto Mono", ui-monospace, monospace;
    font-weight: 500;
    font-size: 18px;
}

.services__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 150px var(--about-cards-gap);
    margin: var(--about-block-gap) 0 0;
    padding: 0;
    list-style: none;
}

.services__item-id {
    font-family: var(--font-family-mono);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}

.services__item-title {
    font-family: var(--font-family-jakarta);
    font-weight: var(--font-weight-extrabold);
    font-size: 20px;
}

.services__item-text {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.cases {
    padding: 80px 0;
    background-color: #010204;
}

.cases__ref {
    display: flex;
    justify-content: flex-end;
}

.cases__ref-text {
    margin: 0;
}

.cases__header {
    display: flex;
    justify-content: end;
    align-items: flex-end;
}

.cases__status {
    padding: 0;
    list-style: none;
}


.cases__status-text {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 500;
    font-size: 66px;
    color: #D6FF63;
}

.cases__link {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #e3e3e3;
    text-decoration: none;
}

.cases__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, var(--cases-card-width)));
    justify-content: space-between;
    gap: var(--about-cards-gap);
    margin: var(--about-block-gap) 0 0;
    padding: 0;
    list-style: none;
}

.cases__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.cases__item-media {
    position: relative;
    width: 100%;
    max-width: var(--cases-card-width);
    aspect-ratio: 400 / 250;
    background-color: var(--cases-skeleton-bg);
    overflow: hidden;
}

.cases__item-skeleton {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: var(--cases-skeleton-bg);
    opacity: 1;
    transition: opacity var(--cases-skeleton-fade-duration) ease;
    pointer-events: none;
}

.cases__item-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.55) 50%,
            transparent 60%,
            transparent 100%);
    transform: translateX(-100%);
    animation: cases-skeleton-shimmer var(--cases-skeleton-shimmer-duration) ease-in-out infinite;
}

.cases__item-media--loaded .cases__item-skeleton {
    opacity: 0;
}

.cases__item-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: grayscale(var(--cases-image-grayscale));
    transition:
        opacity var(--cases-image-fade-duration) ease,
        filter var(--cases-image-fade-duration) ease,
        transform var(--motion-duration-slow) var(--motion-ease-out);
}

.cases__item-media--loaded .cases__item-image {
    opacity: 1;
}

.cases__item-id {
    margin: 0;
    font-family: var(--font-family-mono);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-about-text);
}

@keyframes cases-skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cases__ref {
    display: flex;
    justify-content: flex-end;
}

.cases__ref--primary {
    margin-top: var(--about-block-gap);
}

.cases__ref-text {
    font-family: var(--font-family-mono);
    font-size: 18px;
    font-weight: 600;
    background-color: #d6ff63;
    color: #010204;
}

.process {
    padding: 80px 0;
    background-color: var(--color-about-bg);
}

.process__header {
    display: flex;
    gap: var(--about-intro-gap);
}

.process__title {
    margin: 0;
}

.process__intro {
    display: flex;
    width: 100%;
    gap: 50px;
    background-color: #d6ff63;

}

.process__tagline {
    margin: 0;
    width: 50%;
    font-family: var(--font-family-jakarta);
    font-weight: 700;
    font-size: 48px;
    color: var(--color-about-text);
}

.process__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 12px;
    background-color: #d6ff63;
    color: #010204;
}

.process__heading {
    margin: 0;
    font-family: var(--font-family-mono);
    font-weight: 700;
    font-size: 18px;
}

.process__title {
    font-family: var(--font-family-jakarta);
    font-weight: 500;
    color: #e3e3e3;
    font-size: 66px;
}

.process__text {
    margin: 0;
    font-family: var(--font-family-mono);
    font-weight: 500;
    font-size: 18px;
}

.process__ref {
    display: flex;
    justify-content: flex-end;
}

.process__ref--primary {
    margin-top: var(--about-block-gap);
}

.process__ref-text {
    margin: 0;
    font-family: var(--font-family-mono);
    font-size: 18px;
    font-weight: 600;
    color: #010204;
}

.process__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 150px var(--about-cards-gap);
    margin: var(--about-block-gap) 0 0;
    padding: 0;
    list-style: none;
}

.process__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.process__item-id {
    margin: 0;
    font-family: var(--font-family-mono);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    color: #e3e3e3;
}

.process__item-line {
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background-color: var(--color-about-line);
}

.process__item-title {
    margin: 0;
    font-family: var(--font-family-jakarta);
    font-weight: 600;
    font-size: 16px;
    color: #D6FF63;
}

.process__item-text {
    margin: 0;
    font-family: var(--font-family-jakarta);
    font-weight: 600;
    font-size: 16px;
    color: #e3e3e3;
}

.process__item-duration {
    margin: 0;
    margin-top: 20px;
    font-family: var(--font-family-mono);
    font-weight: 600;
    font-size: 16px;
    color: #8b989e;
}

.process__outro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: var(--about-block-gap);
    width: 100%;
}

.process__outro-lead {
    margin: 0;
    font-family: var(--font-family-jakarta);
    font-weight: 600;
    font-size: 16px;
    color: #D6FF63;
}

.process__outro-text {
    margin: 0;
    font-family: var(--font-family-jakarta);

    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #e3e3e3;
}

.process__ref {
    display: flex;
    justify-content: flex-end;
}

.process__ref--secondary {
    margin-top: 64px;
}

.process__ref-text {
    font-family: var(--font-family-mono);
    font-size: 18px;
    font-weight: 600;
    background-color: #d6ff63;
    color: #010204;
}

/* Contacts — styles to be filled in */
.contacts {
    padding: 80px 0;
    background-color: #010204;
}

.contacts__inner {
    display: flex;
    gap: 100px;
    width: 100%;
}

.contacts__header {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contacts__title {
    font-family: var(--font-family-jakarta);
    font-size: 66px;
    font-weight: 500;
    color: #d6ff63;
}

.contacts__text {
    font-family: var(--font-family-jakarta);
    font-size: 20px;
    font-weight: 600;
    color: #e3e3e3;
}

.contacts__form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contacts__field {
    display: flex;
    justify-content: end;
    width: 100%;
}

.contacts__field--honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

.contacts__input-wrap {
    position: relative;
    width: 100%;
    padding-bottom: calc(var(--space-1) + 1.25rem);
}

.contacts__input {
    box-sizing: border-box;
    width: 100%;
    padding: 12px;
    margin: 0;
    border: none;
    background-color: transparent;
    font-family: var(--font-family-mono);
    font-size: 20px;
    font-weight: 600;
    color: #e3e3e3;
    border-radius: 0;
    box-shadow: inset 0 -2px 0 0 var(--input-border-default);
}

.contacts__input::placeholder {
    font-family: var(--font-family-mono);
    font-size: 14px;
    font-weight: 600;
    color: #8b989e;
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .contacts__input::placeholder {
        transition: opacity var(--motion-duration-fast) var(--motion-ease-out);
    }

    .contacts__input:focus::placeholder {
        opacity: 0.45;
    }
}

.contacts__field--submit {
    margin-top: var(--space-1);
}

.contacts__submit {
    font-family: var(--font-family-jakarta);
    font-weight: 700;
    color: #d6ff63;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/* Footer — styles to be filled in */
.footer {
    background-color: #010204;
    padding: 80px 0;
}

.footer__inner {}

.footer__layout {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
}

.footer__brand {
    width: 50%;
}

.footer__logo {}

.footer__logo-icon {}

.footer__logo-icon--aximatrix {
    width: 100%;
}

.footer__logo-icon--collettivo {}

.footer__groups {
    display: flex;
    gap: 80px;
    width: 50%;
    gap: 100px;
}

.footer__group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__heading {
    font-family: var(--font-family-mono);
    font-weight: 600;
    color: #D6FF63;
    font-size: 20px;
    position: relative;
}


.footer__nav {}

.footer__list {}

.footer__list--socials {}

.footer__item {
    list-style: none;
    margin-left: 36px;

}

.footer__link {
    text-decoration: none;
    font-family: var(--font-family-mono);
    font-weight: 600;
    color: #e3e3e3;
    font-size: 20px;
}

.footer__divider {
    margin-top: var(--header-divider-gap);
    width: 100%;
}

.footer__divider-line {
    margin: 0;
    width: 100%;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: var(--color-about-line);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.footer__copyright {
    font-family: var(--font-family-jakarta);
    font-weight: 600;
    font-size: 16px;
    color: #e3e3e3;
}

.footer__credit {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.footer__credit-label {
    font-family: var(--font-family-jakarta);
    font-weight: 600;
    font-size: 16px;
    color: #D6FF63;
}

.footer__logo--aximatrix {}

.footer__logo--collettivo {
    width: 420px;
}

.footer__back-top {
    font-family: var(--font-family-mono);
    font-weight: 700;
    font-size: 18px;
    color: #010204;
    background-color: #d6ff63;
    text-decoration: none;
}