:root {
    --teal-color: #549791;
    --bg-color: #000000;
    --glow-color: rgba(84, 151, 145, 0.5);
    --accent-color: #549791;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--teal-color);
    font-family: 'Pixelify Sans', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    position: relative;
}

.wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 1000;
}

.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    color: var(--teal-color);
    font-family: 'Rubik Pixels', monospace;
    font-size: 233px;
    font-weight: 400;
    line-height: 1;
    word-wrap: break-word;
    text-align: left;
    position: relative;
}

@keyframes glitch {
    0% {
        text-shadow: none;
    }

    20% {
        text-shadow:
            2px 0 var(--teal-color),
            -2px 0 var(--accent-color);
    }

    21% {
        text-shadow: none;
    }

    60% {
        text-shadow:
            0 2px var(--teal-color),
            0 -2px var(--accent-color);
    }

    61% {
        text-shadow: none;
    }

    90% {
        text-shadow:
            -2px 0 var(--teal-color),
            2px 0 var(--accent-color);
    }

    91% {
        text-shadow: none;
    }

    100% {
        text-shadow: none;
    }
}

.logo:hover {
    animation: glitch 2s infinite;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 400px;
}

.description {
    color: var(--teal-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    line-height: 1.4;
}

.contact-link {
    color: var(--teal-color);
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    word-wrap: break-word;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--teal-color);
    text-shadow: 0 0 10px var(--glow-color);
}

/* Corner arrows */
.corner-arrow {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--teal-color);
    z-index: 10;
}

.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
    .logo {
        font-size: 180px;
    }

    .content-wrapper {
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        font-size: 180px;
        text-align: center;
    }

    .content-container {
        margin-left: 0;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 120px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 80px;
    }

    .description {
        font-size: 14px;
    }

    .contact-link {
        font-size: 16px;
    }

    .corner-arrow {
        width: 20px;
        height: 20px;
    }
}