#blur {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.menu-description {
    display: flex;
    justify-content: center;
    background-color: #241a1f;
    border-radius: 1.5rem;
    padding: 10px;
    max-width: 1000px;
    height: 100%;
    max-height: 400px;
    flex-direction: row;
}

.description-left, .description-right {
    flex: 0 0 20%;
    color: white;
    padding: 20px;
    height: 100%;
    font-size: 16px;
    line-height: 1.5;
    overflow-y: auto;
    scrollbar-width: none;
}

.description-left::-webkit-scrollbar, .description-right::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.description-left::-webkit-scrollbar-thumb, .description-right::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.description-left p, .description-right p {
    margin-bottom: 20px;
    font-size: 14px;
}

.description-left ul, .description-right ul {
    list-style-type: disc;
    text-align: left;
    margin-left: 20px;
}

.description-left li, .description-right li {
    margin-bottom: 10px;
    font-size: 14px;
}

.menu {
    background-color: #282023;
    color: white;
    border: none;
    border-radius: 1.5rem;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    width: 60%;
    gap: 50px;
    z-index: 1001;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.menu-left, .menu-right {
    border: 2px solid gray;
    border-radius: 1.5rem;
    padding: 20px;
    flex: 1;
    text-align: center;
    font-size: 24px;
}

.menu-left hr, .menu-right hr {
    all: revert;
    opacity: 0.15;
    border-radius: 20%;
}

.menu-left:hover, .menu-right:hover {
    background-color: #3d373a;
}

.menu-left img, .menu-right img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.menu-left:hover img, .menu-right:hover img {
    transform: scale(1.2);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.text-block {
    flex: 1;
    margin-right: 20px;
    font-size: 32px;
}

.text-block h1 {
    font-family: ArialBold, sans-serif;
}

.description {
    font-size: 18px;
    opacity: 0.7;
}

.image-block {
    flex: 1;
}

.image-block img {
    position: absolute;
    margin-top: -15%;
    margin-left: 10%;
    max-width: 30%;
    height: auto;
    filter: drop-shadow(0 0 100px rgba(255, 204, 204, 0.5));
    transition: filter 0.3s ease;
}

.button-group {
    margin-top: 20px;
    display: flex;
    gap: 50px;
}

.button-group button {
    width: 100%;
}

#button-ip-container {
    position: relative;
    width: 100%;
}

.color-container-ip-java {
    background-color: #241a1f;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.9s ease;
}

#button-ip-container:has(#ip-bedrock:hover) .color-container-ip-java {
    background-color: #35262e;
}

.ip-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
    cursor: pointer;
    background-color: #241a1f;
}

.ip-copy:hover {
    background-color: #35262e;
}

#ip-java {
    background-color: #2c2328;
}

#ip-java:hover {
    background-color: #35262e;
}

.start-ip-list {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.middle-ip-list {
    border-radius: 0;
}

.end-ip-list {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.ip-menu-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 10;
    background-color: transparent;
    border: none;
    position: absolute;
}

#ip-dropdown-list {
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.9s ease;
}

#ip-dropdown-list:not(.hidden) {
    opacity: 1;
    transition: opacity 0.9s ease-in-out;
}

.ip-arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.ip-open-arrow.ip-arrow {
    transform: rotate(-135deg);
}

@media (max-width: 1600px) {
    .image-block img {
        max-width: 35%;
    }
}

@media (max-width: 1440px) {
    .image-block img {
        max-width: 33%;
    }
}

@media (max-width: 1024px) {
    .button-group {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .button-group button {
        height: 50px;
    }

    .text-block {
        text-align: center;
        margin-right: 0;
    }

    .image-block {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu {
        width: auto;
        padding: 15px;
        margin: 0 30px;
        max-width: none;
        gap: 30px;
    }

    .menu-left, .menu-right {
        padding: 15px;
        font-size: 16px;
    }
}

@media (max-width: 425px) {
    .menu {
        padding: 10px;
        gap: 20px;
    }

    .menu-left, .menu-right {
        padding: 10px;
        font-size: 14px;
    }

    .text-block {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }
}
