div#container {
    padding: 3vw !important;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 2vw;
}

    div#container > section#top {
        display: flex;
        justify-content: space-around;
        gap: 2vw;
    }

        div#container > section#top > section#left {
            background: var(--color-surface);
            padding: 3vw;
            width: 54vw;
            box-shadow: var(--shadow-soft);
            border-radius: 0.5vw;
            transition: all 0.3s ease;
            border: 1px solid var(--color-border-strong);
        }
        
        div#container > section#top > section#left:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
                div#container > section#top > section#left > div#one > div#title {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                }

                    div#container > section#top > section#left > div#one > div#title > h1 {
                        color: var(--color-heading);
                        font-size: 2.5vw;
                    }

                    div#container > section#top > section#left > div#one > div#title > hr {
                        margin-top: 0.2vw;
                        width: 3vw;
                        border: 0.05vw #8B0FE8 solid;
                    }

                    div#container > section#top > section#left > div#one > div#title > h4 {
                        margin-top: 0.2vw;
                        color: var(--color-text-secondary);
                        font-size: 1.5vw;
                    }

                div#container > section#top > section#left > div#one > div#media {
                    margin-top: 1.5vw;
                }

                    div#container > section#top > section#left > div#one > div#media > iframe {
                        width: 54vw;
                        height: 30.375vw;
                        display: block;
                    }

                div#container > section#top > section#left > div#one > div#text {
                    margin-top: 1.5vw;
                    font-size: 1vw;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: center;
                }

                div#container > section#top > section#left > div#one > div#text.quote {
                    border-left: 0.2vw #FF095A solid;
                    background: var(--color-quote-background);
                    padding: 0.4vw 0.6vw 0.4vw 0.6vw;
                }

                    div#container > section#top > section#left > div#one > div#text > p {
                        text-align: justify;
                        margin: 0;
                    }

                    div#container > section#top > section#left > div#one > div#text > h4 {
                        font-size: 1.3vw;
                        font-weight: 600;
                        margin-bottom: -0.6vw;
                    }

                        div#container > section#top > section#left > div#one > div#text > p > i {
                            font-style: italic;
                        }

                        div#container > section#top > section#left > div#one > div#text > p > b {
                            font-weight: bold;
                        }

                        div#container > section#top > section#left > div#one > div#text > p > code {
                            font-family: 'Courier New', monospace;
                            color: var(--color-text-primary);
                        }

                    div#container > section#top > section#left > div#one > div#text > p:nth-child(n+2) {
                        margin-top: 1vw;
                    }

                div#container > section#top > section#left > div#one > div#stats {
                    margin-top: 1.5vw;
                    font-size: 1vw;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    div#container > section#top > section#left > div#one > div#stats > div#one {
                        color: #fff;
                        width: 100%;
                        padding: 1vw 0;
                        display: flex;
                        align-items: center;
                        justify-content: space-around;
                    }
                    
                    div#container > section#top > section#left > div#one > div#stats.one > div#one {
                        background: #7D45FF;
                    }

                    div#container > section#top > section#left > div#one > div#stats.two > div#one {
                        background: #8B0FE8;
                    }

                    div#container > section#top > section#left > div#one > div#stats.three > div#one {
                        background: #DA1EFF;
                    }

                    div#container > section#top > section#left > div#one > div#stats.four > div#one {
                        background: #E80FC0;
                    }

                    div#container > section#top > section#left > div#one > div#stats.five > div#one {
                        background: #FF095A;
                    }

                        div#container > section#top > section#left > div#one > div#stats > div#one > div#article {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                        }

                            div#container > section#top > section#left > div#one > div#stats > div#one > div#article > h4 {
                                font-size: 2.5vw;
                                font-weight: bold;
                            }
                                    
                            div#container > section#top > section#left > div#one > div#stats > div#one > div#article > p {
                                font-size: 1vw;
                            }

    div#container > section#top > section#right {
        box-shadow: var(--shadow-soft);
        background: var(--color-surface);
        width: 26vw;
        padding: 1vw;
        border-radius: 0.5vw;
        transition: all 0.3s ease;
        border: 1px solid var(--color-border-strong);
    }
    
    div#container > section#top > section#right:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }

        div#container > section#top > section#right > div#one {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            div#container > section#top > section#right > div#one > div#one {
                margin-bottom: 1vw;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

                div#container > section#top > section#right > div#one > div#one > h2 {
                    color: var(--color-heading);
                    font-size: 1.5vw;
                }

                div#container > section#top > section#right > div#one > div#one > hr {
                    margin-top: 0.2vw;
                    width: 3vw;
                    border: 0.05vw #8B0FE8 solid;
                }
                div#container > section#top > section#right > div#one > div#two > div {
                    width: 26vw;
                    height: 25vw;
                    
                    background-size: cover;
                }

                    div#container > section#top > section#right > div#one > div#two > div > h2 {
                        position: absolute;
                        padding: 0.2vw 0.5vw;
                        background: rgba(0, 0, 0, 0.6);
                        margin-top: 0.5vw;
                        color: #fff;
                        font-size: 1.2vw;
                    }

                    div#container > section#top > section#right > div#one > div#two > div > h3 {
                        position: absolute;
                        padding: 0.2vw 0.5vw;
                        background: rgba(0, 0, 0, 0.6);
                        color: #fff;
                        margin-top: 3vw;
                        font-size: 1vw;
                    }

                    div#container > section#top > section#right > div#one > div#two > div > a {
                        height: 25vw;
                        width: 26vw;
                        position: absolute;
                    }

            div#container > section#top > section#right > div#one > div#three {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                width: 100%;
            }

                div#container > section#top > section#right > div#one > div#three > div {
                    width: 12.5vw;
                    height: 11.5vw;
                    
                    background-size: cover;
                    margin-top: 1vw;
                }

                    div#container > section#top > section#right > div#one > div#three > div > h2 {
                        position: absolute;
                        padding: 0.2vw 0.5vw;
                        background: rgba(0, 0, 0, 0.6);
                        margin-top: 0.5vw;
                        color: #fff;
                        font-size: 1.2vw;
                    }

                    div#container > section#top > section#right > div#one > div#three > div > h3 {
                        position: absolute;
                        padding: 0.2vw 0.5vw;
                        background: rgba(0, 0, 0, 0.6);
                        margin-top: 0.5vw;
                        color: #fff;
                        margin-top: 3vw;
                        font-size: 1vw;
                    }

                    div#container > section#top > section#right > div#one > div#three > div > a {
                        height: 11.5vw;
                        width: 12.5vw;
                        position: absolute;
                    }

        div#container > section#top > section#right > div#two {
            margin-top: 3vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 40vw;
        }

            div#container > section#top > section#right > div#two > div#one {
                margin-bottom: 1vw;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

                div#container > section#top > section#right > div#two > div#one > h2 {
                    color: var(--color-heading);
                    font-size: 1.5vw;
                }

                div#container > section#top > section#right > div#two > div#one > hr {
                    margin-top: 0.2vw;
                    width: 3vw;
                    border: 0.05vw #8B0FE8 solid;
                }

            div#container > section#top > section#right > div#two > div#two {
                height: 100%;
                width: 100%;
                overflow: auto;
            }

    div#container > section#bottom {
        margin: 1.2vw;
        box-shadow: var(--shadow-soft);
        background: var(--color-surface);
        padding: 1vw;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border-radius: 0.5vw;
        transition: all 0.3s ease;
        border: 1px solid var(--color-border-strong);
    }
    
    div#container > section#bottom:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }

        div#container > section#bottom > div {
            width: 12.5vw;
            height: 11.5vw;
            
            background-size: cover;
            margin: 0.5vw 1vw;
        }

            div#container > section#bottom > div > h2 {
                position: absolute;
                padding: 0.2vw 0.5vw;
                background: rgba(0, 0, 0, 0.6);
                margin-top: 0.5vw;
                color: #fff;
                font-size: 1.2vw;
            }

            div#container > section#bottom > div > h3 {
                position: absolute;
                padding: 0.2vw 0.5vw;
                background: rgba(0, 0, 0, 0.6);
                margin-top: 0.5vw;
                color: #fff;
                margin-top: 3vw;
                font-size: 1vw;
            }

            div#container > section#bottom > div > a {
                height: 11.5vw;
                width: 12.5vw;
                position: absolute;
            }