html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f0f11;
    color: #ffffff;
    font-family: systemui, sansserif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

canvas#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.banner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner p {
    display: block;
    font-style: italic;
    margin-top: 0.5rem;
}

.banner h1 {
    font-size: 8rem;
    margin: 0;
    letter-spacing: 2px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4f46e5;
}

.row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 15px;
    cursor: grab;
    user-select: none;
    scrollbar-width: thin;
    scrollbar-color: #4f46e5 #18181b;
}

.row:active {
    cursor: grabbing;
}

.box {
    flex: 0 0 280px;
    background: #18181b;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #27272a;
}

.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    pointer-events: none;
}

.box a {
    color: #38bdf8;
    text-decoration: none;
}

.image {
    width: 100%;
    height: 120px !important;
    max-height: 120px !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0 auto 10px auto;
    display: block;
}

.box img.image {
    width: 100%;
    height: 90px !important;
    max-height: 90px !important;
    object-fit: cover;
    border-radius: 4px;
}