html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    min-height: 100vh;
}

body {
    background:
        radial-gradient(ellipse 90% 70% at 55% 65%, #000 70%, rgba(26, 0, 44, 0.9) 100%),
        radial-gradient(ellipse 80% 60% at 35% 35%, #011536 0%, #161c2c 60%, #000 100%),
        radial-gradient(circle at 20% 20%, #1c2348 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, #230920 0%, #0b0c12 100%),
        radial-gradient(circle at 95% 70%, #2b1521 0%, transparent 80%);
    background-color: #050618;
}

#pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    pointer-events: none;
    z-index: 2;
}

#sp {
    box-sizing: border-box;
    width: auto;
    min-width: 0 !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.cg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
}

.sg {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none;
    position: relative;
    animation: 30s linear infinite ux-gradient;
    will-change: background;
    z-index: 1;
}

.ut {
    margin-top: 15px;
    z-index: 4;
    position: relative;
    width: clamp(120px, 40vw, 440px);
    height: auto;
    margin-bottom: 2vw;
}

.ss {
    min-height: 100vh;
    background: #00000081;
    z-index: 100;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.ss:last-of-type {
    background: #0d0f23;
}

@media (max-width: 700px) {
    .sg {
        min-height: 60vw;
        height: 70vw;
    }

    .ut {
        width: clamp(90px, 60vw, 200px);
        font-size: clamp(1.2rem, 8vw, 2.3rem);
    }
}

.ss-as,
.ss-e {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
    border-bottom: 2px solid #232f45;
}

.ss-e {
    background: #0f151f;
}

.as-p,
.e-p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5vw;
    max-width: 1100px;
    width: 100%;
    padding: 5vw 3vw 4vw 3vw;
    margin: auto;
}

.as-txt,
.e-txt {
    flex: 1;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}

.as-txt h2,
.e-txt h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 0.6em;
    color: #fff;
    letter-spacing: 1px;
}

.as-txt h2 span {
    color: #e545c2;
    font-weight: 700;
}

.as-punch {
    font-size: 1.2em;
    color: #e545c2;
    margin: 1.3em 0 1.1em 0;
    font-weight: 600;
}

.as-btn {
    background: #e545c2;
    color: #fff;
    border: none;
    padding: 0.7em 2em;
    border-radius: 2em;
    font-family: inherit;
    margin-top: 1.4em;
    cursor: pointer;
    box-shadow: 0 2px 12px #0003;
    transition: background .18s;
}

.as-btn:hover {
    background: #bb338f;
}

.as-img,
.e-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    max-width: 400px;
}

.as-img img,
.e-img img {
    width: 100%;
    max-width: 340px;
    border-radius: 1.1em;
    box-shadow: 0 4px 32px #0008;
    object-fit: cover;
    background: #1e1e2d;
}

@media (max-width: 900px) {

    .as-p,
    .e-p {
        flex-direction: column;
        gap: 3vw;
        padding: 7vw 2vw;
    }

    .as-img img,
    .e-img img {
        max-width: 75vw;
    }

    .as-txt h2,
    .e-txt h2 {
        font-size: 1.35em;
    }
}

@media (max-width: 600px) {

    .as-p,
    .e-p {
        padding: 12vw 2vw 10vw 2vw;
    }

    .as-img img,
    .e-img img {
        max-width: 98vw;
    }

    .as-txt,
    .e-txt {
        font-size: 1em;
    }
}