body {
    background-color: #000;
    display: flex;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding-bottom: 100px;
}

.guide-container {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    height: 100%;
    width: 1000px;
    gap: 50px;
}

.title-section {
    width: 100%;
    height: auto;
}

.title-section h1 {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 3rem;
    margin: 0;
}

.title-section h4 {
    text-align: center;
    color: #777;
    margin: 10px;
    font-weight: 300;
    font-size: 1.5rem;
}

.section {
    width: 100%;
    height: auto;
}

.section h1 {
    color: #fff;
    text-align: left;
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
}

.section p {
    color: #777;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    margin-top: 10px;
}

.image-grid {
    margin-top: 40px;
    display: grid;
    gap: 10px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;

    grid-auto-rows: 1fr;

    grid-template-columns: 1fr 1fr;
}

.image-caption {
    color: #555;
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 20px;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.75 / 1;
    border-radius: 5px;
}

.image-grid:has(img:only-child) {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
}

.image-grid:has(img:nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
}

.image-grid:has(img:nth-child(3):last-child) {
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: repeat(2, auto);
}

.image-grid:has(img:nth-child(3):last-child) img:first-child {
    grid-row: span 2;
}

.image-grid:has(img:nth-child(4):last-child) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
}

.floating-btn {
    position: fixed;
    z-index: 10000;

    padding: 10px 14px;
    border-radius: 32px;

    background: rgba(39,39,39, 0.73);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 0.8rem;
    font-weight: 200;

    border: none;
    cursor: pointer;
    text-decoration: none;

    transition: background 0.2s ease, transform 0.15s ease;
}

.floating-btn:hover {
    background: rgba(60,60,60,0.8);
    transform: scale(1.05);
}

.top-btn {
    top: 20px;
    left: 20px;
}

.bottom-btn {
    bottom: 20px;
    right: 20px;
}

#return {
    display: flex;
    align-items: center;
    gap: 6px;
}

#return .icon {
    display: flex;
}