*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: rgb(255, 186, 249);
    color: white;
}

html, body {
    font-family: sans-serif;
    background: black url('MixAura no bg.png') center/cover no-repeat fixed;
    color: black;
    scroll-behavior: smooth;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
}

#header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

#header img {
    height: 60px;
    margin: 0 30px;
}

#header h2 {
    font-size: 20px;
    color: black;
    transition: 0.2s ease;
}

#header h2:hover {
    transform: translateY(-2px);
}

#content {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), white);
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#order {
    width: 100%;
    padding: 300px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 100px;
}

#order h1 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#order h2 {
    font-size: 18px;
    font-style: italic;
    font-weight: lighter;
    color: rgb(180, 180, 180);
    margin-bottom: 30px;
}

#orderbuttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

#orderbuttons button {
    width: 180px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid rgb(255, 186, 249);
    background-color: white;
    color: rgb(255, 186, 249);
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

#orderbuttons button:hover {
    background-color: rgb(255, 186, 249);
    color: white;
    cursor: pointer;
}

#process {
    width: 100%;
    max-width: 1000px;
    margin-top: 60px;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    scroll-margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#process h1 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
}

#process ol {
    font-size: 18px;
    color: rgb(60, 60, 60);
    max-width: 800px;
    line-height: 1.8;
    text-align: left;
}

#process li {
    margin-bottom: 20px;
}

#about {
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 100px;
}

#about h1 {
    font-size: 24px;
    text-transform: uppercase;
    background-color: black;
    color: white;
    padding: 14px 24px;
    margin-bottom: 45px;
    border-radius: 6px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

#about p {
    max-width: 1000px;
    font-size: 18px;
    line-height: 1.6;
    color: rgb(180, 180, 180);
    padding: 0 20px;
    text-align: center;
    margin-bottom: 100px;
}

.plugins {
    width: 100%;
    max-width: 1000px;
    margin-top: 300px;
    margin-bottom: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pluginnames {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    color: rgb(255, 186, 249);
}

.pluginnames a {
    font-size: 16px;
    transition: 0.2s ease;
}

.pluginnames a:hover {
    transform: translateY(-2px);
    cursor: pointer;
}

@media (max-width: 768px) {
    #header img {
        height: 50px;
        margin: 0 15px;
    }

    #orderbuttons button {
        width: 140px;
        height: 45px;
        font-size: 14px;
    }

    #about p {
        font-size: 16px;
    }

    #about h1,
    #process h1 {
        font-size: 20px;
    }
}
