:root {
    --primary-color: #00ffcc;
    --bg-dark: #0a192f;
    --text-light: #e5e7eb;
    --text-dark: #1f2937;
    --accent-glow: rgba(0, 255, 204, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background: var(--bg-dark);
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--bg-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px var(--accent-glow);
}

.subtitle-container {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.title-accent {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    position: relative;
}

.subtitle-decorator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 2s infinite;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #00ffcc;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.content-container {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 8rem 0;
    background: url('wireframe.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            var(--bg-dark) 0%,
            rgba(10, 25, 47, 0.85) 20%,
            rgba(10, 25, 47, 0.85) 80%,
            var(--bg-dark) 100%);
    z-index: 1;
}

.content-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    align-items: center;
}

.intro {
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    z-index: 2;
    padding: 2rem;
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    opacity: 0;
}

.intro:nth-child(2) {
    margin-left: 3rem;
}

.intro:nth-child(3) {
    margin-right: 3rem;
}

.cta-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cta-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(89px, 9999px, 71px, 0);
    }

    20% {
        clip: rect(41px, 9999px, 105px, 0);
    }

    40% {
        clip: rect(23px, 9999px, 39px, 0);
    }

    60% {
        clip: rect(76px, 9999px, 98px, 0);
    }

    80% {
        clip: rect(14px, 9999px, 56px, 0);
    }

    100% {
        clip: rect(67px, 9999px, 93px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(15px, 9999px, 100px, 0);
    }

    20% {
        clip: rect(66px, 9999px, 84px, 0);
    }

    40% {
        clip: rect(43px, 9999px, 65px, 0);
    }

    60% {
        clip: rect(37px, 9999px, 49px, 0);
    }

    80% {
        clip: rect(86px, 9999px, 108px, 0);
    }

    100% {
        clip: rect(19px, 9999px, 45px, 0);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }

    .title-accent {
        font-size: 1.2rem;
    }

    .content-inner {
        padding: 2rem;
    }

    .intro:nth-child(2),
    .intro:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .title-accent {
        font-size: 1rem;
    }
}