.banner-container {
    display: flex;
    justify-content: center;

    .banner-img {
        object-fit: cover;
        display: block;
    }
}

.pages-wrapper {
    .section-1 {
        .content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 3rem;

            .left {
                width: 100%;

                .server-description {
                    width: 100%;
                    margin-bottom: 3rem;

                    .divider {
                        width: 10%;
                        margin-bottom: 1rem;
                    }

                    .desc {
                        max-width: 860px;
                        margin: 2rem auto 0;
                        padding: 0 1rem;

                        font-size: 1.05rem;
                        line-height: 1.75;

                        text-align: center;
                        letter-spacing: 0.2px;
                    }
                }

                .server-info-container {
                    width: 100%;

                    .divider {
                        width: 10%;
                        margin-bottom: 1.25rem;
                    }

                    .information-wrapper {
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;

                        .left, .right {
                            display: flex;
                            flex-direction: column;
                            gap: 15px;
                            width: 50%;

                            .item {
                                display: flex;
                                flex-direction: row;
                                gap: 8px;

                                .title {
                                    font-weight: bold;
                                    max-width: 65%;
                                    min-width: 65%;
                                }

                                .desc {
                                    text-align: right;
                                }
                            }
                        }
                    }
                }
            }

            .right {
                #utc-0 {
                    margin-bottom: 3rem;
                }

                .timezone-container {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    gap: 0;
                    width: 100%;
                }

                .timezone {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    padding: 12px 26px;
                    min-width: 300px;
                    max-width: 300px;
                    gap: 14px;

                    .dates-container {
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-end;

                        .date-label, .timezone-label {
                            color: white;
                        }

                        .date-label {
                            font-weight: bold;
                            font-size: 12px;
                        }

                        .timezone-label {
                            font-size: 11px;
                        }
                    }

                    .time-label {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: white;
                        font-size: 26px;
                    }
                }
            }
        }

    }

    .section-2 {
        padding: 5rem 24rem;
        background-color: white;
        width: 100%;

        .infos-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 0;

            .info {
                display: flex;
                flex-direction: column;
                gap: 10px;
                justify-content: center;
                align-items: center;
                padding: 15px 65px;

                color: white;

                .title {
                    font-size: 0.95rem;
                    font-weight: 600;
                    letter-spacing: 0.6px;
                    text-transform: uppercase;
                    opacity: 0.9;
                }

                .value::before {
                    content: "";
                    display: block;
                    width: 28px;
                    height: 2px;
                    margin: 6px auto;

                    background: rgba(255, 255, 255, 0.35);
                    border-radius: 2px;
                }

                .value {
                    font-size: 1.6rem;
                    font-weight: 700;
                    letter-spacing: 0.4px;
                }
            }

            .info-accounts {
                border-radius: 16px 0 0 16px;
            }

            .info-zeny {
                border-radius: 0 16px 16px 0;
            }
        }
    }
}
