/* === Base Styles === */
body,
html {
    margin: 0;
    height: 100%;
    background-color: #f6f7f8;
    font-family: 'Inter', sans-serif;
}

#sidebar {
    background-color: var(--dark);
}

/* === Layout Structure === */
.app-container {
    display: flex;
    height: 100vh;
}

.main-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    margin: 0 !important;
}

.main-content::-webkit-scrollbar {
    display: none;
}

/* === Content Wrapper (max width 1920px like other pages) === */
.content-wrapper {
    max-width: 1688px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* === Help Content === */
.help-content {
    flex-grow: 1;
    box-sizing: border-box;
    width: 100%;
    padding: 100px 0 20px 0;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 690;
    padding-bottom: 100px;
}

.help-content::-webkit-scrollbar {
    display: none;
}

.help-content h1 {
    font-size: 61px;
    margin-bottom: 24px;
}

.help-content h2 {
    font-size: 27px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.help-content p {
    margin-bottom: 16px;
    font-weight: 400;
}

.highlight-join {
    color: var(--lightBlue);
}

/* === Numbered Sections === */
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.numbered-item .number {
    font-size: 27px;
    font-weight: bold;
    text-align: right;
    line-height: 1;
}

.numbered-item .content {
    flex: 1;
}

.numbered-item .content h3 {
    font-size: 20px;
    font-weight: bold;
}

.numbered-item .content p {
    margin: 0;
}

.numbered-item .number:empty::before {
    content: '';
    display: inline-block;
    width: 1em;
}

/* === Back Button === */
/* right wird dynamisch per JS gesetzt */
#backBtn {
    position: fixed;
    top: 200px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, right 0.2s ease;
}

#backBtn svg {
    width: 60%;
    height: 60%;
    transition: transform 0.2s ease;
}

#backBtn:hover {
    background-color: var(--grey);
}

#backBtn:hover svg {
    transform: scale(1.15);
}

/* === Container für Back Button === */
.backBtn-max-content {
    max-width: 1688px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* === Indented List === */
.indented-list {
    padding-left: 40px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 16px;
    }

    .help-content {
        padding: 20px 0 120px 0;
    }

    #backBtn {
        top: 120px;
    }
}