* {
    box-sizing: border-box;

    margin: 0;

    padding: 0;
}


body {

    min-height: 100vh;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;

    background: #0f1117;

    color: #e6e6e6;

    line-height: 1.6;

}



/* Header */

header {

    max-width: 900px;

    margin: 50px auto 40px;

    padding: 0 20px;

    text-align: center;

}


.header-content h1 {

    font-size: 3rem;

    color: white;

    margin: 25px 0 15px;

}


.header-content p {

    color: #a9adb8;

    font-size: 1.15rem;

}



/* Back button */

.back-button {

    display: inline-block;

    padding: 10px 18px;

    background: #171a22;

    border: 1px solid #272c38;

    border-radius: 10px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition:

        background 0.2s ease,

        border-color 0.2s ease,

        transform 0.2s ease;

}


.back-button:hover {

    background: #222735;

    border-color: #3d7cff;

    transform: translateY(-2px);

}



/* Divider */

hr {

    max-width: 1100px;

    height: 1px;

    margin: 30px auto;

    border: none;

    background: #292d38;

}



/* Main */

main {

    max-width: 900px;

    margin: 40px auto;

    padding: 0 20px;

}



/* Release information */

.release-card {

    background: #171a22;

    border: 1px solid #272c38;

    border-radius: 18px;

    padding: 30px;

    text-align: center;

    margin-bottom: 30px;

    transition:

        transform 0.25s ease,

        border-color 0.25s ease,

        box-shadow 0.25s ease;

}


.release-card:hover {

    transform: translateY(-5px);

    border-color: #3d7cff;

    box-shadow:

        0 15px 35px rgba(0,0,0,0.35);

}


.release-card h2 {

    color: white;

    margin-bottom: 20px;

}


.release-card p {

    color: #b7bbc5;

    margin-bottom: 10px;

}


.release-card b {

    color: #6ea8fe;

}



/* Button */

.button {

    display: inline-block;

    margin-top: 20px;

    padding: 12px 22px;

    background: #2563eb;

    border-radius: 10px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition:

        background 0.2s ease,

        transform 0.2s ease;

}


.button:hover {

    background: #1d4ed8;

    transform: translateY(-2px);

}



/* Release notes */

.release-notes {

    background: #171a22;

    border: 1px solid #272c38;

    border-radius: 18px;

    padding: 35px;

}


.release-notes h2 {

    color: white;

    margin-bottom: 25px;

}



/* Markdown */

.markdown-content {

    color: #c7cad1;

}


.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {

    color: white;

    margin-top: 25px;

    margin-bottom: 12px;

}


.markdown-content p {

    margin-bottom: 15px;

}


.markdown-content ul,
.markdown-content ol {

    margin-left: 25px;

    margin-bottom: 15px;

}


.markdown-content a {

    color: #60a5fa;

}


.markdown-content code {

    background: #0f1117;

    color: #93c5fd;

    padding: 3px 7px;

    border-radius: 6px;

}


.markdown-content pre {

    background: #0f1117;

    padding: 20px;

    border-radius: 12px;

    overflow-x: auto;

}



/* Footer */

footer {

    text-align: center;

    color: #8b8f99;

    padding: 30px 20px;

}



/* domweb animation */

.page-load,
.release-card,
.release-notes {

    opacity: 0;

    transform: translateY(40px) scale(0.98);

    transition:

        opacity 0.6s ease,

        transform 0.6s ease;

}



.page-load.show,
.release-card.show,
.release-notes.show {

    opacity: 1;

    transform: translateY(0) scale(1);

}



/* Mobile */

@media(max-width:700px) {


    .header-content h1 {

        font-size: 2.2rem;

    }


    main {

        margin-top: 20px;

    }


    .release-card,
    .release-notes {

        padding: 22px;

    }


    .button {

        width: 100%;

    }

}