<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body
{
    background-color: var(--white-color-2);
}

#page
{
    display: flex;
    flex-direction: column;

    width: 800px;

    margin: auto;
    margin-top: 70px;
    margin-bottom: 20px;

    background-color: var(--white-color-1);
}

#mainImg
{
    width: 100%;
    box-sizing: border-box;
}

/* Info part */

#infoPage
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px;
}

#infoPage p
{
    background-color: var(--black-color);
    color: var(--white-color-1);

    padding: 2px;
    width: 140px;
    
    text-align: center;
}

#infoPage h1
{
    font-family: titleFont;
    width: 75%;
    margin-bottom: 8px;
}

#ViewAll
{
    flex: 1;
    margin: 0 8px 8px 8px;
    padding: 4px;

    background-color: var(--blue-1);
    border: 0;
    color: var(--white-color-1);
    
    text-align: center;
    text-decoration: none;

    box-sizing: border-box;

    cursor: pointer;
}

#ViewAll:hover
{
    background-color: var(--blue-2);
}

/* Article part */

#articlePage
{
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.module
{
    margin-bottom: 8px;
}

/* points modules */

.module ul
{
    width: 100%;
    margin-left: 128;
}

/* game modules */

.game-module
{
    display: flex;
    align-items: center;

    width: 100%;
}

.game-module img
{
    width: 400px;
    margin-right: 16px;

    object-fit: contain;

    cursor: pointer;
}

.game-module .description, .game-module .button-list
{
    margin: 8px 0;
}

.game-module .title
{
    font-size: 22px;
    font-family: titleFont;
    cursor: pointer;
    color: var(--black-color);
    text-decoration: none;
}

.game-module .title:hover
{
    text-decoration: underline;
}

.game-module .date
{
    font-size: 14px;
    color: var(--black-color-3);
}

.game-module .description
{
    display: -webkit-box; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.game-module .button-list a
{
    color: var(--blue-1);
    
    font-size: 18px;
    text-decoration: none;

    cursor: pointer;
}

.game-module .button-list a:hover
{
    color: var(--blue-2);
}

/* paragraph modules */

.paragraph-module
{
    width: 100%;
}

.paragraph-module a
{
    color: var(--blue-1);
    font-weight: 1000;
    text-decoration: none;
}

.paragraph-module a:hover
{
    color: var(--blue-2);
}

/* image module */

.image-module
{
    width: 90%;
    box-sizing: border-box;
}

/* video module */

.video-module
{
    width: 90%;
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
}

.video-module iframe
{
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}

/* subtitle module */

.subtitle-module
{
    width: 100%;
}

/* carroussel module */

.carousel-module
{
    width: 100%;
    overflow: hidden;
    position: relative;

    background-color: var(--white-color-2);
}

.carousel-module img 
{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carousel-inner 
{
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-module img 
{
    width: 100%;
}

.prev, .next 
{
    position: absolute;

    height: 128px;
    top: 50%;
    transform: translateY(-50%);

    background-color: rgba(0,0,0,0.25);
    color: white;
    border: none;

    font-size: 32px;

    padding: 10px;
    cursor: pointer;
}

.prev 
{
    left: 0;
    border-radius: 0 4px 4px 0;
}

.next 
{
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* models module */

.models-module
{
    width: 100%;
    height: 500px;

    background: radial-gradient(circle, var(--black-color-3) 0%, var(--black-color-2) 100%);
    border-radius: 4px;
}</pre></body></html>