html {
    overflow: hidden;
    height: 100%;
}

body {
    background: transparent !important;
    padding: 0 !important;
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

body:has(#devtools-block) {
    overflow: visible !important;
}

#devtools-block {
    z-index: 999999 !important;
}
main {
    padding: 0 !important;
    background: transparent !important;
}
.home-container {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background: transparent;
    gap: 0.2rem;
}
.abstract-title {
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: 12px;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    user-select: none;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

.abstract-title.initial-load {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.abstract-title span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.abstract-title span:hover {
    transform: translateY(-10px) scale(1.1);
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}
.abstract-title.glitch {
    animation: titleShake 0.3s ease-in-out;
}
@keyframes titleShake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
    50% { transform: translate(-1px, 1px); }
    60% { transform: translate(1px, -1px); }
    70% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
    90% { transform: translate(0, 0); }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
.glitch-char {
    color: #ff0000 !important;
    text-shadow: 
        -2px 0 #00ffff,
        2px 0 #ff00ff,
        0 0 20px rgba(255, 0, 0, 1),
        0 0 40px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.6);
    display: inline-block;
    animation: charGlitch 0.1s ease-in-out infinite;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ff0000 !important;
    filter: blur(0.5px);
}
@keyframes charGlitch {
    0% {
        transform: translate(0, 0) skew(0deg);
        text-shadow: 
            -2px 0 #00ffff,
            2px 0 #ff00ff,
            0 0 20px rgba(255, 0, 0, 1);
    }
    20% {
        transform: translate(-3px, 2px) skew(-2deg);
        text-shadow: 
            -4px 0 #00ffff,
            4px 2px #ff00ff,
            0 0 25px rgba(255, 0, 0, 1);
    }
    40% {
        transform: translate(3px, -2px) skew(2deg);
        text-shadow: 
            4px 0 #00ffff,
            -4px -2px #ff00ff,
            0 0 30px rgba(255, 0, 0, 1);
    }
    60% {
        transform: translate(-2px, -3px) skew(1deg);
        text-shadow: 
            -3px 2px #00ffff,
            3px -2px #ff00ff,
            0 0 25px rgba(255, 0, 0, 1);
    }
    80% {
        transform: translate(2px, 3px) skew(-1deg);
        text-shadow: 
            3px -2px #00ffff,
            -3px 2px #ff00ff,
            0 0 20px rgba(255, 0, 0, 1);
    }
    100% {
        transform: translate(0, 0) skew(0deg);
        text-shadow: 
            -2px 0 #00ffff,
            2px 0 #ff00ff,
            0 0 20px rgba(255, 0, 0, 1);
    }
}
.abstract-title span:not(.glitch-char) {
    color: inherit;
}
.abstract-description {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 800px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}
@media (max-width: 1200px) {
    .abstract-title {
        font-size: 100px;
        letter-spacing: 8px;
    }
    .abstract-description {
        font-size: 20px;
        max-width: 900px;
        margin-top: -45px;
    }
    .home-container {
        height: 50vh;
        gap: 0.15rem;
    }
}
@media (max-width: 768px) {
    .abstract-title {
        font-size: 70px;
        letter-spacing: 6px;
    }
    .abstract-description {
        font-size: 16px;
        max-width: 600px;
        margin-top: -30px;
    }
    .home-container {
        height: 40vh;
        margin-top: 4rem;
        gap: 0.1rem;
    }
}
@keyframes move3 {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}
@media (max-width: 480px) {
    .abstract-title {
        font-size: 50px;
        letter-spacing: 4px;
    }
    .abstract-description {
        font-size: 14px;
        max-width: 400px;
        padding: 0 1rem;
        margin-top: -20px;
    }
    .home-container {
        height: 35vh;
        margin-top: 3rem;
        gap: 0.05rem;
    }
}


