:root {
    --page-width: 766px;
}

html, body, .content, .page, .hero {
    scrollbar-width: thin;
    scrollbar-color: #444 #111;
}

body {
    background: #181818 !important;
    color: white;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13px;

    padding: 0;
    margin: 0;
}

header {
    background: linear-gradient(
        to bottom,
        rgba(54, 54, 54, 0.85), rgba(32, 32, 32, 0.85)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.01);
    
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(30px);
}

.hero {
    background: black;
    background-image: url("./assets/crazybg.jpg");
    background-size: cover;
    background-position: center;

    height: 612px;
    display: flex;
    justify-content: center;

    border-bottom: 1px solid rgb(36, 36, 36);
}
.content {
    width: var(--page-width);
    z-index: 2;
}

.hero .gradient {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%);
    width: 100%;
    height: 630px;
    position: absolute;
    z-index: 1;
}
.hero .content {
    padding-top: 120px; 
}

.hero .logo {
    margin-bottom: 24px;
}

.hero .text {
    width: 600px;
    margin-bottom: 20px;
}

.hero .red {
    color: #FF4747;
}

.hero .buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.hero .buttons a {
    text-decoration: none;
    color: white;
    box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom, #454545, #1C1C1C);
    border-radius: 2px;
    padding: 10px 15px;
}

.hero .buttons a {
    display: flex;
    gap: 15px;
}

.hero .buttons a .stack{
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
}

.hero .buttons a .stack .sub {
    color: rgba(255, 255, 255, 0.5);
}

.hero .note {
    color: rgba(255, 255, 255, 0.5);
}

/*.hero .buttons a.manual {
    background: linear-gradient(to bottom, #242424, #000000);
    box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}*/

.hero .buttons a.discord {
    background: linear-gradient(to bottom, #495D95, #192B59);
}

.lr-split {
    display: flex;
    justify-content: space-between;
    gap: 22px;
}

.lr-split .stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lr-split .stack h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.lr-split.two {
    justify-content: flex-start;
}

.page {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.lr-split img {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page .content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}