
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.15s;
}

body {
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bg1 {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 60%;
    background: linear-gradient(120deg, #316bed, #3189ed 30%, #2ca2dc 50%, #38acdf 90%, #388ddf);
    border-bottom-right-radius: 33.3333px;
    clip-path: polygon(0% 0%, 100% 0%, 99.9% 100%, 0 80%);
    animation: gradient-animation 15s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg2 {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 60%;
    background-color: rgb(188, 189, 189);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
    opacity: 0.1;
}

.content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    z-index: 1;
}

nav {
    width: 100%;
    height: 64px;
    align-items: center;
    display: flex;
    font-size: 25px;
    /* background-color: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
    padding: 0 20px;
}

nav a {
    display: flex;
    color: #fff;
    text-decoration: none;
    align-items: center;
}

nav img {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    border-radius: 10px;
}

.center_font {
    height: 15vh;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.data {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.data .data_ring {
    width: 100px;
    height: 100px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.data .data_ring:hover {
    transform: scale(1.1);
}

.data .data_ring span {
    font-size: 24px;
}

.data .data_ring .name {
    font-size: 12px;
}

.download {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.d {
    background: linear-gradient(180deg, #ffffff, #f0f0f0);
    color: #3a9ae6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.d:hover {
    /* background: linear-gradient(180deg, #3a9ae6, #3a6bc3); */
    /* color: #fff; */
    transform: translateY(-2px);
}

.d img {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

.morefunction {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.mmmm {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.item {
    font-size: 18px;
    background: linear-gradient(90deg, #3a9ae6, #6ab0e4);
    padding: 15px 25px;
    margin: 10px;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    width: 200px; /* Fixed width for uniformity */
}

.item:hover {
    background: linear-gradient(90deg, #6ab0e4, #3a9ae6);
    transform: translateY(-3px);
}

.item:active {
    transform: translateY(1px);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    nav {
        font-size: 20px;
    }

    .center_font {
        font-size: 2rem;
    }

    .data .data_ring {
        width: 80px;
        height: 80px;
    }

    .data .data_ring span {
        font-size: 20px;
    }

    .data .data_ring .name {
        font-size: 10px;
    }

    .d {
        font-size: 14px;
        padding: 8px 15px;
        margin: 15px;
    }

    .item {
        font-size: 16px;
        padding: 10px 20px;
        width: 150px; /* Adjusted width for smaller screens */
    }
}

@media (max-width: 480px) {
    nav {
        font-size: 18px;
    }

    .center_font {
        font-size: 1.8rem;
    }

    .data .data_ring {
        width: 70px;
        height: 70px;
    }

    .data .data_ring span {
        font-size: 18px;
    }

    .data .data_ring .name {
        font-size: 9px;
    }

    .d {
        font-size: 12px;
        padding: 6px 12px;
        margin: 10px;
    }

    .item {
        font-size: 15px;
        padding: 8px 15px;
        width: 120px; /* Further adjustment for very small screens */
    }
}
