:root {
    --black: #101019;
    --background-start: #0f111a;
    --background-end: #13162a;
    --text-primary: #ffffff;
    --text-secondary: #ffffffb3;
    --text-3: #ffffff76;
    --container-max-width: 1200px;
    --primary: #8b9afc;
    --primary-2: #3f4fbb;
    --surface: #191b2b;
    --surface-2: #171928;
    --surface-3: #24273e;
    --surface-4: #1e2134;
    --blur: 14px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-3);
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    background-color: var(--black);
}

body {
    -ms-overflow-style: none;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Inter, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: linear-gradient(180deg, var(--background-start), var(--background-end));
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100dvh;
}

.container {
    max-width: var(--container-max-width);
    width: 100%;
}

.topbar {
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    justify-content: center;
    background: color-mix(in srgb, var(--surface), transparent 35%);
    border-bottom: 1px solid color-mix(in srgb, var(--primary), transparent 85%);
    backdrop-filter: blur(var(--blur));
    z-index: 5000;
}

.topbar-container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.home-button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.home-button img {
    width: 35px;
    height: 35px;
    border-radius: 10px;
}

.home-button span {
    color: var(--text-primary);
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button:active {
    transform: scale(95%);
    transition: transform 0.05s ease;
}

.topbar-links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.topbar-links a {
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.topbar-links a:hover {
    opacity: 1;
}

.topbar-links a:active {
    transform: scale(95%);
    transition: transform 0.05s ease;
}

.button {
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.2s ease;
    font-weight: 800;
    display: flex;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--primary-2), var(--primary));
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 10px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary), transparent 82%);
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: scale(95%);
    transition: transform 0.05s ease;
}

.button-secondary {
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.2s ease;
    font-weight: 800;
    display: flex;
    padding: 10px 20px;
    background-color: var(--surface);
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 10px;
}

.button-secondary:hover {
    transform: translateY(-2px);
}

.button-secondary:active {
    transform: scale(95%);
    transition: transform 0.05s ease;
}

.section {
    padding-top: calc(1rem + 65px);
    padding-bottom: 2rem;
    justify-items: center;
    min-height: 500px;
    height: auto;
    width: 100%;
    max-width: 1200px;
    justify-self: center;
}

.main-container {
    padding-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-container {
    display: flex;
    flex-direction: column;
    width: calc(50% - 0.5rem);
}

.text {
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
}

.title {
    font-weight: 800;
    font-size: 300%;
}

.sub-title {
    font-weight: 600;
    font-size: 200%;
}

.body {
    font-weight: 400;
    font-size: 100%;
    color: var(--text-secondary)
}

.row {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--c, var(--primary));
    border-radius: 50%;
}

.code-box-container {
    transition: transform 0.2s ease;
}

.code-box-container:hover {
    transform: translateY(-5px);
}

.code-box {
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    width: calc(100% - 20px);
    padding: 10px;
    margin: 0;
}

.code-box-top {
    display: flex;
    gap: 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: var(--surface);
}

.code {
    display: flex;
    background-color: var(--surface-2);
    border-top: 0;
    border-bottom: 0;
    display: block;
    font-family: monospace;
    white-space: nowrap;
    overflow: auto;
}

.code code {
    font-weight: 300;
    font-size: 11px;
}

.console {
    border: 1px solid color-mix(in srgb, var(--primary), transparent 65%);
    font-weight: 300;
    font-size: 13px;
    color: #83c1ff;
    background-color: var(--black);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.console pre {
    margin: 0;
}

.colored-text {
    color: var(--c, var(--primary));
}

.section-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-evenly;
    width: 100%;
}

.box { 
    width: 350px;
    height: 150px;
    padding: 15px;
    border-radius: 15px;
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    box-shadow: 0 30px 50px color-mix(in srgb, var(--black), transparent 70%);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.box:hover {
    transform: translateY(-5px);
}

.box-top {
    display: flex;
    flex-direction: row;
    height: 30px;
    gap: 10px;
    align-items: baseline;
}

.box-title {
    font-weight: 700;
    font-size: 110%;
}

.box-icon {
    width: 35px;
    height: 35px;
    text-align: center;
    align-content: center;
    background-color: var(--surface-3);
    border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
    border-radius: 10px;
}

.box-divider {
    width: 100%;
    align-self: center;
    height: 1px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--primary), transparent 50%), transparent);
    margin-bottom: 5px;
    margin-top: 15px;
}

.price-box {
    width: 200px;
    height: 250px;
    padding-bottom: 20px;
    justify-content: space-between;
}

.price-box-top {
    justify-content: space-between;
}

.price-box-divider {
    margin-bottom: 0;
    margin-top: 10px;
}

.list {
    list-style-type: none;
    padding: 0;
    color: var(--text-secondary);
}

.list li {
    font-weight: 400;
    font-size: 80%;
}

.missing-feature {
    color: var(--text-3);
}

.important-feature {
    font-weight: 800;
}

.price-divider {
    margin-bottom: 5px;
    margin-top: 5px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--primary), transparent 80%), transparent);
}

.price-text {
    font-weight: 400;
    font-size: 70%;
}

.discord-box {
    height: 50px;
    width: calc(100% - 30px);
    justify-content: space-between;
    flex-direction: row;
}

.discord-group {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 100%;
}

.discord-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.discord-name {
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.discord-link {
    margin: 0;
    font-size: 12px;
}

.discord-group img {
    width: 35px;
    height: 35px;
    border-radius: 10px;
}

.info-box {
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
    width: auto;
    height: 50px;
    border-radius: 20px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.info-box:hover {
    transform: translateY(-2px);
}

.info-text {
    margin: 0;
}

.final-section {
    min-height: 300px;
}

.bottom-bar {
    display: flex;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    justify-content: center;
    background: color-mix(in srgb, var(--surface), transparent 35%);
    border-top: 1px solid color-mix(in srgb, var(--primary), transparent 85%);
}

.bottom-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.bottom-logo img {
    width: 35px;
    height: 35px;
    border-radius: 10px;
}

.bottom-logo span {
    color: var(--text-primary);
}