:root {
    --accent-color: #FF6700;
    --primary-color: #E0E1DD;
    --primary-color-darker: #D7DAFF;
    --color-darker: #64657A;
    --secondary-color: #1B263B;
    --main-bg-color: #0D1B2A;
    --dark-bg-color: #010B17;

    --main-font: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font);
    background-color: var(--main-bg-color);
    color: var(--primary-color);
    line-height: 1.6;
    padding: 20px;
    overflow-x: hidden;
}

h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-bg-color);
}


kbd {
    padding: 1px 6px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 0.78em;
    font-family: inherit;
}


/* LINKS */
a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.important-link {
    color: var(--accent-color);
    font-weight: 600;
}

.cta-link {
    color: var(--main-bg-color);
}

.important-link:hover,
.cta-link:hover {
    text-decoration-color: initial;
}

.important-text {
    color: var(--accent-color);
}


/* CONTAINER */
.main-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.intro {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.5rem;
    text-align: center;
    word-wrap: break-word;
    background-color: var(--secondary-color);
}

.additional-infos {
    font-size: 1.2rem;
    line-height: 2;
}

.whats-new-inline {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(224, 225, 221, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--text-color);

    & > p:not(.whats-new-title) {
        margin-left: 20px;
        font-size: 0.9em;
    }
}

.whats-new-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.whats-new-title {
    color: var(--primary-color);
}

.whats-new-chevron {
    color: var(--color-darker);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

#whats-new-section.collapsed .whats-new-chevron {
    transform: rotate(-90deg);
}

.whats-new-body {
    overflow: hidden;
    max-height: 200px;
    transition: max-height 0.25s ease;
}

#whats-new-section.collapsed .whats-new-body {
    max-height: 0;
}

.accent-color {
    color: var(--accent-color);
    font-weight: 100;
}


@media (max-width: 800px) {
    body {
        padding: 15px;
    }
    .title {
        margin-top: 5px;
    }
    .title-text {
        font-size: 2rem;
    }
    .intro-text {
        font-size: 1rem;
        padding: 0;
    }
    .additional-infos p {
        font-size: 0.9rem;
    }
}