
* {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
button, .social-links, .menu a, .menu-btn, .download-btn {
    -webkit-tap-highlight-color: transparent;
}
@font-face {
    font-family: 'frz';
    src: url('../fonts/farizstudios.ttf') format('truetype');
}

body {
    font-family: 'frz', Arial, sans-serif;
    background: linear-gradient(45deg, #1c1c1c, #2e2e2e, #3c3c3c, #1c1c1c);
    background-size: 400% 400%;
    animation: gradientAnimation 8s infinite linear;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 800px;
    margin: auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.mc-container {
    max-width: 800px;
    margin-top: calc(15px + 2.5em);
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

.requirements {
            text-align: left;
            margin-top: 20px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
        }

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    color: white !important;
    background: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    margin: 10px;
    border: 2px solid white;
    box-sizing: border-box;
}

.download-btn:hover {
    background: #0000ff;
    color: white;
}

.download-btn:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-btn {
    font-size: 30px;
    cursor: pointer;
    color: white;
}

.brand {
    font-family: 'frz', Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(90deg, #00bfff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-grow: 1;
    text-align: center;
    margin-right: 30px;
}

.menu {
    font-family: Arial, sans-serif;
    position: fixed;
    top: 76px;
    left: 0;
    width: 250px;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
    padding-top: 10px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.menu.active {
    transform: translateX(0%);
}

.menu-category {
    color: #00bfff;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 20px 5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu a {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 25px;
}

.menu a i {
    font-size: 18px;
}

.social-links {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: 0.3s ease-in-out;
        }
        .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .social-links img {
            width: 24px;
            height: 24px;
        }
        
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.progress {
    width: 50px;
    height: 50px;
}

.progress svg {
    animation: rotate 2s linear infinite;
    width: 100%;
    height: 100%;
}

.circle {
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 125.6;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 125.6;
    }
    50% {
        stroke-dashoffset: 62.8;
    }
    100% {
        stroke-dashoffset: 125.6;
    }
}
.toast {
    visibility: hidden;
    min-width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}
