/* Reset CSS */
*,
*::before,
*::after {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.section-title {
    font-family: var(--title-font);
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 80px;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.section-title span {
    background: linear-gradient(to right, #9333ea, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.7),
        0 0 20px rgba(147, 51, 234, 0.5),
        0 0 30px rgba(168, 85, 247, 0.3),
        0 2px 4px rgba(147, 51, 234, 0.3);
}


.section-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #9333ea, #3b82f6);
    margin: 30px auto 0;
    border-radius: 4px;
}