body {
    background: radial-gradient(circle at 30% 30%, #0c1629, #040816 70%);
    font-family: monospace;
}

body {
    animation: pageFadeIn 1.2s ease-out forwards;
}

@keyframes pageFadeIn {
    0% {
        opacity: 0;
        filter: blur(15px);
        transform: scale(1.01);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Landing page initial load animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#header {
    animation: slideUp 0.6s ease-out forwards;
}

#title {
    animation: slideUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

#titleex {
    animation: slideUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.box {
    opacity: 0;
    transform: translateY(45px);
}

/* Staggered delays for scroll animations */
.scroll-delay-0 {
    transition-delay: 0s;
}

.scroll-delay-1 {
    transition-delay: 0.1s;
}

.scroll-delay-2 {
    transition-delay: 0.2s;
}

.scroll-delay-3 {
    transition-delay: 0.3s;
}

.scroll-delay-4 {
    transition-delay: 0.4s;
}

.scroll-delay-5 {
    transition-delay: 0.5s;
}


html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

html,
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

#all {
    width: 1875px;
    max-width: 100%;
    min-height: 100vh;
    height: auto;
    margin: 0 auto;
    overflow: clip;
    position: relative;

    mask-image: linear-gradient(to top,
            #fff,
            #fff 90%,
            transparent 100%);

    -webkit-mask-image: linear-gradient(to top,
            #fff,
            #fff 90%,
            transparent 100%);
}

/*Shadow Text*/
body,
h1,
h2,
h3,
p,
a,
span {
    color: #FFFFFF;
    mix-blend-mode: normal !important;
    text-shadow:
        1.5px 1.5px 7.5px rgba(0, 0, 0, 0.7);
}

p {
    color: rgba(255, 255, 255, 0.50);
    mix-blend-mode: screen;
}

.bold {
    color: rgba(255, 255, 255, 0.80);
    font-weight: 600;
    mix-blend-mode: normal;
    position: relative;
    isolation: isolate;
}

/*wallpaper*/

/*Font*/
@font-face {
    font-family: 'ModernBold';
    src: url('../files/Text/Forresten.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Lapisan lava */
.lava-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    filter: blur(135px);
    mix-blend-mode: screen;
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    animation: move 45s ease-in-out infinite;
}

/* Layer 1 - bold & visible */
.b1 {
    background: #103b73;
    width: 60vmax;
    height: 60vmax;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.b2 {
    background: #152d59;
    width: 55vmax;
    height: 55vmax;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

.b3 {
    background: #0b2145;
    width: 50vmax;
    height: 50vmax;
    top: 70%;
    left: 10%;
    animation-delay: -20s;
}

.b4 {
    background: #1a4b85;
    width: 65vmax;
    height: 65vmax;
    top: 10%;
    left: 70%;
    animation-delay: -30s;
}

/* Layer 2 - subtle, different colors */
.b5 {
    background: #163c72;
    width: 80vmax;
    height: 80vmax;
    top: 40%;
    left: -30%;
    opacity: 0.25;
    animation: move2 80s ease-in-out infinite;
}

.b6 {
    background: #0d2850;
    width: 70vmax;
    height: 70vmax;
    top: -20%;
    left: 40%;
    opacity: 0.2;
    animation: move2 95s ease-in-out infinite;
}

.b7 {
    background: #14335e;
    width: 90vmax;
    height: 90vmax;
    top: 70%;
    left: 60%;
    opacity: 0.2;
    animation: move2 100s ease-in-out infinite;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(10%, -15%) scale(1.3);
    }

    50% {
        transform: translate(-15%, 10%) scale(1.1);
    }

    75% {
        transform: translate(15%, 5%) scale(1.4);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15%, 10%) scale(1.2);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

#header {
    z-index: 99;
    backdrop-filter: blur(15px);
    border: 1.5px solid white;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

#fqzx {
    color: white;
    font-size: 30px;
    font-family: ModernBold;
}

#list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#brandlogo {
    height: 45px;
    background-color: rgb(255, 255, 255);
    border-radius: 37.5px;
    margin-left: 15px;
}

#header {
    background: rgba(255, 255, 255, 0.2);
    width: 900px;
    margin: auto;
    border-radius: 75px;
    position: sticky;
    top: 0;
    margin-top: 45px;
}

#brand {
    display: flex;
    align-items: center;
    gap: 30px;
}

#header ul {
    display: flex;
    gap: 30px;
    list-style: none;
    justify-content: center;
    padding-right: 15px;
}

#list li a {
    color: white;
    text-decoration: none;
    transition: color 0.5s ease;
}

#list a:hover {
    color: #00ffff;
}


a {
    text-decoration: none;

}

/*Header*/

.bold {
    color: rgba(255, 255, 255, 0.80);
    font-weight: 600;
    mix-blend-mode: normal;
    position: relative;
    isolation: isolate;
}

/*Main*/

#title {
    color: white;
    font-size: 30px;
    text-align: center;
    margin-top: 180px;
    margin-bottom: 12px;
    font-family: ModernBold;
}

#titleex {
    text-align: center;
    margin: auto;
    width: 1152px;
    margin-top: 60px;
}

/*softwareslist settings*/


.box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 37.5px;
    gap: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    margin-left: 192px;
    margin-right: 192px;
    margin-top: 60px;
    border: 1.5px solid white;
}

.name {
    margin: auto;
    text-align: center;
    font-family: ModernBold;
}

.expsoftware {
    text-align: center;
    max-width: 1050px;
    margin-left: auto;

}

.settingsoftware {
    flex-grow: 1;
}

.settingsoftware span {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: color 0.5s ease;
}

.name span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;

    width: 0;
    height: 3px;
    background-color: #00ffff;
    transition: width 0.5s ease-out;
}

.name span:hover::after {
    width: 100%;
}


.settingsoftware a:hover span {
    color: #00ffff;
}



/*logo setting*/
#logodav {
    height: 300px;
}

#logoprem {
    height: 240px;
    padding-left: 30px;
}

#logofixed {
    border-radius: 45px;
    height: 255px;
    margin-left: 30px;
    background-color: white;
}

#logofixed2 {
    border-radius: 45px;
    height: 225px;
    margin-left: 30px;
    background-color: white;
    padding: 15px;
}

#logokine {
    border-radius: 45px;
    height: 262.5px;
    margin-left: 30px;
}

#logoins {
    border-radius: 45px;
    height: 300px;
}



/*copyright*/
#copyright {
    color: white;
    text-align: center;
    margin-bottom: 1.5%;
    margin-top: 120px;
    margin-bottom: 60px;
}

@media screen and (max-width: 992px) {
    body {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    #header {
        width: 350px;
        padding: unset;
        margin: unset;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 20px;
    }

    #brand {
        gap: 5px;
        margin: unset;
        padding: unset;
        margin-bottom: 15px;
    }

    #brandlogo {
        margin: unset;
    }

    #fqzx {
        text-align: center;
        margin: unset;
        padding: unset;
        font-size: 15px;
    }

    #list ul {
        gap: 10px;
        margin: unset;
        padding: unset;
    }

    /*EndHeader*/

    #title {
        font-size: 15px;
        letter-spacing: 3px;
    }

    #titleex {
        font-size: 12px;
        margin-left: 10%;
        margin-right: 10%;
        width: 310px;
        text-align: center;
        margin-bottom: 10%;
        margin: auto;
        margin-bottom: 10%;
        margin-top: 5%;
        width: 600px;
    }

    /*End Intro*/

    .box {
        margin-right: 10%;
        margin-left: 10%;
        padding: 10px;
        width: fit-content;
        margin: auto;
        margin-top: 5px;
        border-radius: 25px;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 15px;
    }

    .name {
        margin: unset;
        padding: unset;
        letter-spacing: 1px;
        font-size: 13px;
    }

    #copyright {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {

    /* Mobile scroll animations */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .scroll-reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Landing page initial load animations */
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #header {
        animation: slideUp 0.6s ease-out forwards;
    }

    #title {
        animation: slideUp 0.6s ease-out 0.2s forwards;
        opacity: 0;
    }

    #titleex {
        animation: slideUp 0.6s ease-out 0.4s forwards;
        opacity: 0;
    }

    .box {
        opacity: 0;
        transform: translateY(30px);
    }

    /* Staggered delays for scroll animations */
    .scroll-delay-0 {
        transition-delay: 0s;
    }

    .scroll-delay-1 {
        transition-delay: 0.1s;
    }

    .scroll-delay-2 {
        transition-delay: 0.2s;
    }

    .scroll-delay-3 {
        transition-delay: 0.3s;
    }

    .scroll-delay-4 {
        transition-delay: 0.4s;
    }

    .scroll-delay-5 {
        transition-delay: 0.5s;
    }

    body {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        -webkit-overflow-scrolling: touch;
    }

    .lava-wrapper {
        display: none;
    }

    #header {
        width: 350px;
        padding: unset;
        margin: unset;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 20px;
    }

    #brand {
        gap: 5px;
        margin: unset;
        padding: unset;
        margin-bottom: 15px;
    }

    #brandlogo {
        margin: unset;
    }

    #fqzx {
        text-align: center;
        margin: unset;
        padding: unset;
        font-size: 15px;
    }

    #list ul {
        gap: 10px;
        margin: unset;
        padding: unset;
    }

    /*EndHeader*/

    #title {
        font-size: 15px;
        letter-spacing: 3px;
    }

    #titleex {
        font-size: 12px;
        margin-left: 10%;
        margin-right: 10%;
        width: 310px;
        text-align: center;
        margin-bottom: 10%;
        margin: auto;
        margin-bottom: 10%;
        margin-top: 5%;
    }

    /*End Intro*/

    .box {
        margin-right: 10%;
        margin-left: 10%;
        padding: 10px;
        width: 250px;
        margin: auto;
        margin-top: 5px;
        border-radius: 10px;
    }

    .expsoftware {
        display: none;
    }

    .name {
        margin: unset;
        padding: unset;
        letter-spacing: 1px;
        font-size: 13px;
    }

    /*Logo Settings*/
    #logodav {
        height: 55px;
    }

    #logoprem {
        height: 50px;
        padding: unset;
    }

    #logofixed {
        height: 50px;
        padding: unset;
        margin: unset;
        border-radius: 10px !important;
    }

    #logofixed2 {
        height: 40px;
        margin: unset;
        padding: unset;
        padding: 5px;
        border-radius: 10px !important;
    }

    #logokine {
        height: 50px;
        margin: unset;
        padding: unset;
        border-radius: 10px !important;
    }

    #logoins {
        height: 55px;
        margin: unset;
        padding: unset;
    }

    #copyright {
        font-size: 10px;
    }

}