@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -tap-highlight-color: transparent;
    font-family: 'Minecraft', 'Poppins', sans-serif;
}

@font-face {
    font-family: 'Minecraft';
    src: url('f/minecraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #1f242d;
    --second-bg-color: #2B2B2B;
    --text-color: #ffffff;
    --main-color: #9b59b6;
    --accent: #D4AF37;
    --back-color: #6dd5ed;
    --features-color: #2B2B2B;
    --card-bg: rgba(114, 114, 114, 0.4);
    --glass-blur: 8px;
    --glow-color: rgba(155, 89, 182, 0.6);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--second-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header.sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

.logo {
    font-size: 2.5rem;
    font-weight: 600;
    cursor: default;
    margin-right: .5px;
}

.logo img {
    width: 25px;
    height: 25px;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    transition: all .3s ease;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    transition: all .3s ease;
    text-align: center;
    padding: .8rem 1rem;
    border-radius: .8rem;
    position: relative;
    overflow: hidden;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: .5px;
    background: var(--main-color);
    transition: all .3s ease;
}

.navbar a:hover::before,
.navbar a.active::before {
    width: 100%;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    background: rgba(75, 112, 245, 0.1);
    transform: translateY(-3px);
}

.navbar .btn {
    background: linear-gradient(135deg, #4B70F5, #3DC2EC);
    color: white;
    padding: .8rem 1.5rem;
    border-radius: 3rem;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(75, 112, 245, 0.3);
}

.navbar .btn:hover {
    background: linear-gradient(135deg, #3DC2EC, #4B70F5);
    box-shadow: 0 6px 15px rgba(75, 112, 245, 0.5);
    transform: translateY(-3px);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
    cursor: pointer;
    transition: all .3s ease;
}

#menu-icon:hover {
    color: var(--main-color);
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img img {
    width: 35vw;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-2.4rem)
    }

    100% {
        transform: translateY(0)
    }
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 2rem;
}

span {
    background: linear-gradient(135deg, var(--main-color), var(--back-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #4B70F5, #3DC2EC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #E8E8E8;
    letter-spacing: .5px;
}

.description {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 20px #fff);
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.social-media a:hover {
    background: var(--main-color);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-color);
}

.btn {
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #3A3D8F, #5C67F2);
    border: none;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 15px rgba(60, 100, 255, 0.5);
    font-size: 1.8rem;
    border-radius: 4rem;
    cursor: pointer;
    color: #fff;
}

.btn:hover {
    background: linear-gradient(135deg, #4B70F5, #6A82FB);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(60, 100, 255, 0.8);
}


.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--second-bg-color);
}

.about-img img {
    width: 35vw;
}

.heading {
    text-align: center;
    font-size: 4.5rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 2.6rem;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.services h2 {
    margin-bottom: 5rem;
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    min-height: 0;
    height: auto;
    padding: 2rem 0;
}

.services-container .services-box {
    flex: 1 1 30rem;
    background: var(--second-bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: .5s ease;
}

.services-container .services-box:hover {
    border-color: var(--main-color);
    transform: scale(1.02);
}

.services-box {
    width: calc(100% - 20px);
}

.services-box i {
    font-size: 7rem;
    color: var(--main-color);
}

.services-box h3 {
    font-size: 2.6rem;
}

.services-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}

.services-container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.services-container .features-box {
    flex: 1 1 30rem;
    background: var(--features-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-container .features-box:hover {
    border-color: var(--main-color);
    transform: scale(1.02);
}

.features-box i {
    font-size: 7rem;
    color: var(--main-color);
}

.features-box h3 {
    font-size: 2.6rem;
}

.features-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}


.portfolio {
    background: var(--second-bg-color);
    padding-bottom: 7rem;
}

.portfolio h2 {
    margin-bottom: 4rem;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: var(--second-bg-color);
}

.footer-text p {
    font-size: 1.6rem;
    align-items: center
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-iconTop a:hover {
    box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--second-bg-color);
}

@media (max-width:1200px) {
    html {
        font-size: 55%
    }
}

@media (max-width:991px) {
    .header {
        padding: 2rem 3%
    }

    section {
        padding: 10rem 3% 2rem
    }

    .services {
        padding-bottom: 7rem
    }

    .portfolio {
        padding-bottom: 7rem
    }

    .footer {
        padding: 2rem 3%
    }
}

@media (max-width:768px) {
    .about-content .btn {
        background: linear-gradient(135deg, #4B70F5, #3DC2EC);
        color: var(--back-color);
        border: none;
        transition: all .4s ease-in-out;
    }

    .btn:hover {
        background: linear-gradient(135deg, #402E7A, #4C3BCF);
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    #menu-icon {
        display: block
    }

    .navbar {
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 50%;
        width: 50%;
        height: 1000px;
        padding: 1rem 3%;
        background: var(--second-bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: var(--text-color);
    }

    .home-content {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .home {
        flex-direction: column;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .about-content h3 {
        font-size: 2.6rem;
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .about {
        flex-direction: column-reverse;
    }

    .about img {
        width: 70vw;
        margin-top: 4rem;
    }

    .services h2 {
        margin-bottom: 3rem;
    }

    .minecraft_list {
        padding: .5rem;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%
    }
}

@media (max-width:366px) {

    .home-img img,
    .about img {
        width: 90vw;
    }

    .footer {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .footer p {
        text-align: center;
        margin-top: 2rem;
        align-items: center;
    }
}

.download-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transition: .5s ease;
}

.btn-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.download-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

#linkContainer {
    text-align: center;
}

#linkContainer a {
    display: inline-block;
    padding: 1rem 2.8rem;
    margin: .5rem auto;
    background: var(--main-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 1.6rem;
    color: var(--second-bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.scroll-behavior {
    scroll-behavior: smooth;
}

.icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.toolbox {
    fill: #00ffff;
}

.tools {
    fill: #ffffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.social-icons a {
    margin-right: 15px;
}

.dev-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 20px auto
}

.dev-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1e1e1e;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #2c2c2c
}

.dev-icons a:hover {
    border-color: #00ffff;
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
    transform: scale(1.1);
    background-color: transparent
}

.dev-icons img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease-in-out
}

.dev-icons a:hover img {
    transform: rotate(10deg) scale(1.2)
}

.footer-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 20px auto;
}

.footer-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #4B70F5;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: transparent;
    width: 35px;
    height: 35px;
}

.footer-icons a:hover {
    border-color: #00ffff;
    box-shadow: 0 6px 12px rgba(75, 112, 245, 0.4);
    transform: scale(1.1);
    background-color: transparent;
}

.footer-icons img {
    width: 25px;
    height: 25px;
    transition: transform .3s ease-in-out;
}

.footer-icons a:hover img {
    transform: rotate(10deg) scale(1.1);
}

.minecraft_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
}

.bluemods_item_holder {
    position: relative;
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border: 2px solid var(--main-color);
    border-radius: 15px;
    padding: 20px;
    margin: 15px auto;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(75, 112, 245, 0.2);
    overflow: hidden;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: grab;
}

.bluemods_item_holder:active {
    cursor: grabbing;
    transform: scale(.98);
    border-color: var(--back-color);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.bluemods_item_holder:first-child {
    border-color: var(--back-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3)
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5)
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3)
    }
}

.bluemods_item_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(75, 112, 245, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity .3s ease;
}

.bluemods_item_holder:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(75, 112, 245, 0.3);
    border-color: var(--back-color);
    background: linear-gradient(145deg, #252525, #1a1a1a);
}

.bluemods_item_holder:hover::before {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: .5
    }

    50% {
        transform: scale(1.2);
        opacity: .2
    }

    100% {
        transform: scale(1);
        opacity: .5
    }
}

.bluemods_item_holder::after,
.bluemods_item_holder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(75, 112, 245, 0.2), rgba(75, 112, 245, 0));
    animation: rotate-glow 6s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.bluemods_item_holder:hover::after,
.bluemods_item_holder:hover::before {
    opacity: 1;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.bluemods_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bluemods_icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform .3s ease, box-shadow .3s ease;
}

.bluemods_icon:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(75, 112, 245, 0.6);
}

.bluemods_label {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.services-box-docs {
    flex: 1 1 30rem;
    background: var(--second-bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: .5s ease;
    border-color: var(--main-color);
    max-width: 100%;
    overflow-y: auto;
    height: auto;
}

.services-box-docs h3 {
    font-size: 2.6rem;
}

.services-box-docs p {
    font-size: 1.6rem;
    margin: 0 0 2rem;
}

.services-box-docs a {
    font-size: 1.6rem;
}

.services-box-docs li {
    text-align: left;
    padding-left: 20px;
    margin: 0 auto;
    width: 300px;
    list-style-type: disc;
}

/* Start Loading Screen */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #4B70F5;
    animation: pulse 1.5s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.5);
        opacity: 0.5;
    }
}

.loading-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* End of Loading Screen */

.no-scroll {
    overflow: hidden;
}

.light-text {
    filter: drop-shadow(0 0 20px #fff);
}

@media only screen and (max-width:768px) {
    .home-content div[style]>div {
        flex-basis: 100% !important;
    }
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--main-color), var(--accent));
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    transition: background .3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--main-color), var(--accent));
}

.faq-question::after {
    content: "▼";
    font-size: 14px;
    transition: transform .3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 20px;
    box-sizing: border-box;
}

.faq-answer p,
.faq-answer span,
.faq-answer a {
    margin: 10px 0;
    color: #fff;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.faq-answer a:hover {
    text-decoration: underline;
}

#navigation {
    padding: 40px 20px;
    text-align: center;
}

.nav-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
}

.nav-col {
    min-width: 150px;
    text-align: left;
}

.nav-heading {
    font-weight: bold;
    font-size: 1.9rem;
    margin-bottom: 12px;
    color: var(--main-color);
}

.nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-col ul li {
    margin: 8px 0;
}

.nav-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-col ul li a:hover {
    color: #4B70F5;
}

.divider-animate {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), #00C6FF, var(--main-color));
    background-size: 200% 100%;
    border-radius: 50px;
    margin: 20px 0;
    animation: dividerMove 5s linear infinite;
}

@keyframes dividerMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -250% 0;
    }
}




.home {
    position: relative;
}

.home .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('p/ic_banner.png');
    background-size: cover;
    background-position: center;
}

.home .background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(31, 36, 45, 1), rgba(31, 36, 45, 0));
}

.home .home-content {
    position: relative;
    z-index: 1;
}


.bordered-image {
    border: 1.5px solid #5865F2;
    border-radius: 50px;
}

.btn img {
    border: 1.5px solid #5865F2;
    border-radius: 50px;
    vertical-align: middle;
    width: 25;
    height: 25;
}




.social-boxes {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    /* Changed to stretch */
    flex-wrap: wrap;
    gap: 20px;
}

.social-box {
    flex: 1 1 15rem;
    background: var(--features-color);
    padding: 2rem 1rem 3rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-box:hover {
    border-color: var(--main-color);
    transform: scale(1.02);
}

.social-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.social-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}