body {
    margin: 0;
    padding: 0;
    background: #0D0D0D;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style:none;
}

.discord-sql {
    position: fixed;
    top: 25px;
    left: 30px;
    opacity: 1;
    transition: all 0.3s ease-out;
    z-index: 4;
}

.discord-sql img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.2s ease-out;
    filter: brightness(0) invert(0.7);
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.discord-sql img:hover {
    transform: scale(1.05);
}

.discord-sql::before {
    content: "Akcent Discord";
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.1s ease;
    white-space: nowrap;
}

.discord-sql:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.discord-xml {
    position: fixed;
    top: 25px;
    right: 30px;
    opacity: 1;
    transition: all 0.3s ease-out;
    z-index: 4;
}

.discord-xml img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.1s ease-out;
    filter: brightness(0) invert(0.7);
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.discord-xml::before {
    content: "xml";
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.1s ease;
    white-space: nowrap;
}

.discord-xml img:hover {
    transform: scale(1.05);
}

.discord-xml:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

::-webkit-scrollbar {
    display: none;
    }

    ::-webkit-scrollbar-button {
    display: none;
    }

.top-section {
    background-color: #1a1a1a;
    width: 100%;
    padding: 2vh 0;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: 15vh;
}

.top-section::after {
    content: '';
    position: absolute;
    bottom: 6vh;
    left: 0;
    width: 100%;
    height: 10vh;
    background: linear-gradient(#1a1a1a, rgba(20, 0, 43, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(5px);
    opacity: var(--after-opacity, 0);
    transition: opacity 1s ease-out;
}

.bottom-section {
    background-color: #16002b;
    width: 100%;
    padding: 6vh 0;
    min-height: 85vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -15vh;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.icons {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    opacity: 0;
    position: relative;
}

.icons a {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-out !important;
    display: inline-block;
    position: relative;
    z-index: 3;
    user-select: none;
    -webkit-user-select: none;
}

.icons a:hover {
    transform: translateY(-10px) !important;
    cursor: pointer;
}

.icons img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    pointer-events: auto;
    -webkit-user-drag: none;
    
    
}

.arrow {
    width: 40px;
    height: 40px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease-out;
    -webkit-filter: invert(80%);
    filter: invert(80%);
    cursor: pointer;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.typingshit {
    position: relative;
    display: flex; 
    align-items: center;
    justify-content: center;
}

h1 {
    position: static;
    background-clip: text;
    user-select: text;
    font-size: 5rem;
    font-weight: 600;
    background: linear-gradient(to right, white, #a04dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    -webkit-user-select: none;
    margin-right: -5px;
    white-space: nowrap;
    width: 100%;
    min-height: 1.4em;
    line-height: 1.4;
}

.image-container {
    width: 50vw;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(111, 0, 255, 0.6);
    border: 2px solid rgba(111, 0, 255, 0.4);
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 30px;
    transform: translateX(120%);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 2;
}

h2 {
    user-select: text;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    margin-top: -50vh;
    flex-shrink: 0;
    width: 30vw;
    position: absolute;
    left: 5vw;
    z-index: 2;
    animation: rainbow 5s linear infinite;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    -webkit-user-select: none;
}

h3 {
    font-size: 1rem;
    font-weight: normal;
    width: 30vw;
    position: absolute;
    left: 5vw;
    top: calc(20vh + 80px);
    z-index: 2;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    max-height: 50vh;
    overflow-y: auto;
}

img {
    width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

@keyframes blinker {
50% {
    opacity: 0;
}
}

@keyframes rainbow {
    0%, 100% { color: white; }
    50% { color: rgb(188, 87, 255); }
}

rect {
    animation: blinker 1s linear infinite;
    vertical-align: middle;
    margin-right: -5px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 6vw
    }

    .icons img {
        width: 70px;
        height: 70px;
    }

    .image-container {
        margin: 0 auto;
    }

    .bottom-section {
        flex-direction: column;
        padding: 5vh 2vw;
    }
    
    h2 {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    h3 {
        width: 90%;
        text-align: center;
        margin: 20px auto;
        position: relative;
        left: 0;
        top: 0;
        max-height: none;
    }
}