body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    overflow-y: auto;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #000000; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ffffff;
}

.acrylic-header {
    backdrop-filter: blur(10px);
    background: #111111;
    border: 0.2px solid #333333;
    border-radius: 100px; 
    position: relative; 
    left: 10px;
    top: 10px; 
    width: 100%; 
    max-width: 1860px; 
    height: 57px;
    z-index: 1000; 
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

h1.outfit-header {
    font-weight: 800;
    position: relative;
    bottom: 30px;
    right: 20px;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    bottom: 30px;
}


.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links li a:hover::before {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px; /* Adjust width if needed */
    height: 30px; /* Adjust height if needed */
    position: relative;
    display: none;
    margin-left: 10px;
}

.card-titles {
    color: #ffffff;
    margin-top: -80px ;
}

.exe-holder {
    display: flex;
    flex-wrap: wrap; 
    justify-content: left;
    padding: 10px;
    gap: 20px;
}

.IOS {
    margin-bottom: -50px;
    color: #ffffff;
}

.ios-exe-holder {
    display: flex;
    flex-wrap: wrap; 
    justify-content: left;
    padding: 10px;
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 375px) {
    .exe-holder {
        flex-direction: column; 
        align-items: center;
        justify-content: left;
        position: relative;
        right: 35px;
    }

    .ios-exe-holder {
        flex-direction: column; 
        align-items: center;
        justify-content: left;
        position: relative;
        right: 35px;
    }

    .exe-card {
        width: 90%;
        max-width: 360px; 
        margin-bottom: 20px; 
    }

    .exe-title {
        margin-right: 0; 
        margin-top: 10px;
        width: 200px; 
    }

    .exe-img {
        margin-right: 0; 
    }

    .button-container {
        bottom: 20px; 
        margin-left: -20px; 
        width: 100%; 
        justify-content: center; 
    }
}

@media (max-width: 425px) {
    .exe-holder {
        flex-direction: column; 
        align-items: center;
        justify-content: left;
        position: relative;
        right: 35px;
    }

    .ios-exe-holder {
        flex-direction: column; 
        align-items: center;
        justify-content: left;
        position: relative;
        right: 35px;
    }


    .exe-card {
        width: 100%;
        max-width: 430px; 
        margin-bottom: 20px; 
    }

    .exe-title {
        margin-right: 0; 
        margin-top: 10px;
        width: 140px;
    }

    .exe-img {
        margin-right: 0; 
    }

    .button-container {
        bottom: 20px; 
        margin-left: -10px; 
        width: 100%; 
        justify-content: center; 
    }
}



.exe-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px; 
    height: 120px;
    text-align: center;
}

.exe-title {
    font-size: 24px;
    margin-top: 0px;
    margin-right: 260px;
}

.exe-img {
    height: 70px;
    width: 70px;
    margin-right: 280px;
    position: relative;
    bottom: 10px;
    border-radius: 8px;
}

.button-container {
    display: flex;  
    justify-content: center;  
    flex-wrap: wrap; 
    gap: 10px;
    position: relative;
    bottom: 85px;
    left: 60px;
}

.card-button {
    display: flex; 
    align-items: center; 
    justify-content: center;  
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Outfit';
    width: 130px;
    height: 30px;
    font-size: 17px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card-button:hover {
    transform: scale(1.05);
    outline: none;
    border: none;
}

.download-icon {
    width: 16px; 
    height: 16px; 
    margin-right: 5px; 
}

.discord-icon {
    width: 20px; 
    height: 20px; 
    margin-right: 5px;  
}

.website-icon {
    width: 20px; 
    height: 20px; 
    margin-right: 3px; 
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 69px;
    left: -250px;
    width: 100%;
    height: 92%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    display: none;
    z-index: 1000;
}

.mobile-menu.show {
    transform: translateX(0); /* Adjust this value based on your menu width */
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
}


.footer {
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    position: relative; 
    width: 100%;
    height: 20px;
    margin-top: 2%;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-bottom: 55px;
    }

    .mobile-menu.show {
        left: 0;
        display: block;
    }

    .acrylic-header {
        max-width: 740px;
    }
}

main {
    padding: 7rem 2rem;
}

@media (max-width: 425px)  {
    
.acrylic-header {
    max-width: 400px;
}

}

@media (max-width: 375px)  {
    .acrylic-header {
        max-width: 350px;
    }
}

@media (max-width: 325px)  {
    
    .acrylic-header {
        max-width: 300px;
    }
}