:root {
    --primary: #006b1b;
    --light-primary: #009e2a;
    --font: "Comic Sans MS", "Comic Sans", cursive;
}

::selection {
    background-color: var(--primary);
    color: white;
}

html,
body {
    scroll-behavior: smooth;
    background: radial-gradient(ellipse at center, #0a001f 0%, #000000 100%);
    color: var(--primary);
    font-family: var(--font);
    margin: 0;
    position: relative;
}

a {
    color: var(--primary);
    text-decoration: none;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    transition: all 0.2s ease 0s;
}

h2 {
    font-size: 2em;
    margin: 0;
    transition: all 0.2s ease 0s;
}

h3 {
    font-size: 1.8em;
    margin: 0;
    transition: all 0.2s ease 0s;
}

h4 {
    font-size: 1.6em;
    margin: 0;
    transition: all 0.2s ease 0s;
}

h5 {
    font-size: 1.4em;
    margin: 0;
    transition: all 0.2s ease 0s;
}

body>#stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

body>#stars>.star {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: scroll linear forwards;
}

@keyframes scroll {
    to {
        transform: TranslateX(100vw);
        opacity: 0;
    }
}

.neon {
    color: var(--light-primary);
    text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 20px var(--primary);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    min-height: 100vh;
    margin: auto;
    text-align: center;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    font-size: 24px;
    color: var(--light-primary);
    text-shadow: 0 0 10px var(--primary);
}

.portal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    z-index: 2;
    pointer-events: none;
}

.portal.left {
    left: -15px;
}

.portal.right {
    right: -15px;
    transform: translateY(-50%) rotateY(180deg);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    text-align: center;
}

section>p {
    width: 60%;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--primary);
}

.feature img {
    width: 100%;
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
    aspect-ratio: 5 / 3;
    object-fit: contain;
}

.feature img:hover {
    filter: brightness(1.2);
}

.feature h3 {
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid var(--primary);
    text-align: center;
}

footer .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 10px;
}

footer .social-links .social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon svg,
.social-icon img {
    width: 100%;
    height: 100%;
}

.notifications {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 10px;
    z-index: 50;
}

.notifications .item {
    border-radius: 10px;
    border: 1px solid #4ca55b;
    background-color: #4ca55b;
    margin-top: 10px;
    padding: 10px 45px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notifications .item:hover {
    background-color: #296132;
}

.notifications .error {
    border: 1px solid #cc0000;
    background-color: #cc0000 !important;
}

.notifications .error:hover {
    background-color: #530d0d !important;
}

.notifications .item h3 {
    text-align: center;
}

.notifications .item h3,
.notifications .item p {
    margin: 0;
    cursor: pointer;
}

@media (max-width: 1100px) {
    main {
        margin: 0 50px;
    }
}