:root {
    --red: #ED1C24;
    --orange: #FF6A00;
    --yellow: #FFC400;
    --dark: #1a0a00;
    --text: #FFF8F0;
    --text-muted: rgba(255, 248, 240, 0.82);
    --surface: rgba(26, 10, 0, 0.55);
    --border: rgba(255, 248, 240, 0.12);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100vh;
    /* overflow: hidden; */
}

body {
    position: relative;
    /* background: linear-gradient(165deg, var(--red) 0%, var(--orange) 48%, var(--yellow) 100%); */
    background: linear-gradient(165deg, #ED1C24 0%, #FF6A00 48%, #FFC400 100%);
    color: var(--text);
    font-family: 'Work Sans', sans-serif;
}

/* single-page shell */
.page {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

/* overlays */
.black__overlay,
.grid__overlay,
.hero_top_right,
.hero_glow_bottom_left {
    position: absolute;
    pointer-events: none;
}


/* .black__overlay {
    inset: 0;
    z-index: 4;
    background:
        linear-gradient(180deg,
            rgba(26, 10, 0, 0.5) 0%,
            rgba(26, 10, 0, 0.35) 45%,
            rgba(26, 10, 0, 0.6) 100%),
        radial-gradient(ellipse 70% 90% at 50% 50%,
            rgba(26, 10, 0, 0.2) 0%,
            rgba(26, 10, 0, 0.55) 100%);
} */

/* .grid__overlay {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    z-index: 5;
} */

.hero_top_right {
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.28) 0%, transparent 70%);
    z-index: 5;
}

.hero_glow_bottom_left {
    bottom: -100px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.3) 0%, transparent 70%);
    z-index: 5;
}

/* hero image */
.hero__image {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image img {
    width: auto;
    height: min(100vh, 100%);
    max-width: min(78vw, 56rem);
    object-fit: contain;
}

/* header */
header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    padding: 3rem 2.5rem 0;
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;

}

header p {
    padding-bottom: 0.5rem;
}

header p::before {
    position: absolute;
    content: '';
    width: 8rem;
    height: 3px;
    bottom: 0;
    background: linear-gradient(90deg,
            #ED1C24 0%, #FF6A00 17%, #FFC400 34%, #3DBE4B 51%, #1FA6D6 68%, #5B4FE0 84%, #C13DC1 100%);
}

.logo_ {
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
}

.heading__text {
    margin-top: 0.25rem;
    font-size: clamp(0.7rem, 1.2vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* main hero */
.hero {
    position: relative;
    z-index: 10;
    flex: 1;
    min-height: 0;
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: 1.25rem 2.5rem 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero__left {
    position: relative;
}

.hero__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    color: var(--text);
}

.hero__title-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.limited-star {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(6.5rem, 7vw, 5rem);
    height: clamp(6.5rem, 7vw, 5rem);
    flex-shrink: 0;
    transform: translateY(-0.15em);
    animation: star-pulse 2.5s ease-in-out infinite;
}

.limited-star__shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: var(--dark);
    filter: drop-shadow(0 4px 12px rgba(26, 10, 0, 0.35));
}

.limited-star__text {
    position: relative;
    top: 0.3rem;
    z-index: 1;
    font-family: 'syne', 'Work Sans', sans-serif;
    font-size: clamp(0.42rem, 0.9vw, 0.52rem);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--yellow);
}

@keyframes star-pulse {

    0%,
    100% {
        transform: translateY(-0.15em) scale(1);
    }

    50% {
        transform: translateY(-0.15em) scale(1.06);
    }
}

.hero__desc {
    margin-top: 1rem;
    max-width: 24rem;
    font-size: clamp(0.82rem, 1.4vw, 0.95rem);
    line-height: 1.55;
    color: var(--text-muted);
}

.hero__cta {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.7rem 1.4rem;
    background: var(--dark);
    color: var(--text);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 248, 240, 0.15);
    transition: background 0.2s, transform 0.2s;
}

.hero__cta:hover {
    background: rgba(26, 10, 0, 0.85);
    transform: translateY(-2px);
}

/* price & entry ticket tag */
.entry-tag {
    position: relative;
    margin-top: 1rem;
    width: min(100%, 15rem);
    background: #000;
    border-radius: 0.75rem;
    padding: 0.85rem 1.1rem 0.75rem;
    overflow: hidden;
}

.entry-tag::before,
.entry-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: var(--orange);
    z-index: 1;
}

.entry-tag::before {
    left: -0.425rem;
}

.entry-tag::after {
    right: -0.425rem;
}

.entry-tag__top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.entry-tag__price {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    color: var(--yellow);
}

.entry-tag__label {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.55rem, 1.2vw, 0.65rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.entry-tag__divider {
    margin: 0.55rem 0 0.5rem;
    border-top: 1px dashed rgba(255, 248, 240, 0.25);
}

.entry-tag__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}

.entry-tag__seats {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    line-height: 1;
    color: var(--text);
}

.entry-tag__note {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.48rem, 1vw, 0.55rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: right;
    color: var(--yellow);
}

.color__gradient {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* right column */
.hero__right {
    justify-self: end;
    width: 100%;
    max-width: 21rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: 100%;
}

.hero__right-label {
    position: relative;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    padding-bottom: 0.5rem;
    margin-bottom: 0.65rem;
}

.hero__right-label::before {
    position: absolute;
    content: '';
    width: 8rem;
    height: 3px;
    bottom: 0;
    background: linear-gradient(90deg,
            #ED1C24 0%, #FF6A00 17%, #FFC400 34%, #3DBE4B 51%, #1FA6D6 68%, #5B4FE0 84%, #C13DC1 100%);
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    overflow-y: auto;
    min-height: 0;
    padding-right: 0.25rem;
}

.skills::-webkit-scrollbar {
    width: 3px;
}

.skills::-webkit-scrollbar-thumb {
    background: rgba(255, 248, 240, 0.2);
    border-radius: 999px;
}

.skill {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    backdrop-filter: blur(12px);
    flex-shrink: 0;
}

.skill__num {
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    padding-top: 0.1rem;
}

.skill p {
    font-family: 'Work Sans';
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text);
}

/* footer — compact bar inside the page */
footer {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 0.85rem 2rem;
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    background: rgba(26, 10, 0, 0.45);
    backdrop-filter: blur(8px);
}

.footer__tag {
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 700;
}

.footer__cta {
    padding: 0.55rem 1.25rem;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 196, 0, 0.35);
}

.footer__copy {
    font-size: 0.72rem;
    color: rgba(255, 248, 240, 0.45);
}

/* responsive — portrait mobile */
@media (max-width: 900px) {

    html,
    body {
        overflow: hidden;
    }

    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 1rem;
        padding: 1rem 1.25rem 0.5rem;
    }

    .hero__image img {
        height: min(88vh, 100%);
        max-width: min(92vw, 36rem);
    }

    .hero__left {
        order: 1;
    }

    .hero__right {
        order: 2;
        justify-self: stretch;
        max-width: none;
    }

    .hero__desc {
        max-width: none;
    }

    .hero__title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    header {
        padding: 1rem 1.25rem 0;
        gap: 0.75rem;
    }

    footer {
        padding: 0.65rem 1.25rem;
        gap: 0.5rem 1rem;
    }

    .footer__copy {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title-row {
        gap: 0.3rem;
    }

    .limited-star {
        width: 4rem;
        height: 4rem;
    }

    .limited-star__text {
        font-size: 0.38rem;
    }

    .skill p {
        font-size: 0.72rem;
    }

    .entry-tag {
        width: min(100%, 13.5rem);
        padding: 0.7rem 0.95rem 0.65rem;
    }
}

/* landscape phones — Galaxy A06 etc. (~360px tall) */
@media (orientation: landscape) and (max-height: 520px) {

    html,
    body {
        height: 100%;
        overflow: hidden;
    }

    .page {
        height: 100dvh;
        overflow: hidden;
    }

    header {
        padding: 0.4rem 1rem 0;
        gap: 0.25rem;
    }

    header p::before,
    .hero__right-label::before {
        width: 4rem;
        height: 2px;
    }

    .logo_ {
        font-size: 0.78rem;
    }

    .heading__text {
        font-size: 0.62rem;
        margin-top: 0.1rem;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: 1fr;
        gap: 0.75rem;
        padding: 0.35rem 1rem 0.25rem;
        align-items: start;
    }

    .hero__left {
        order: 0;
        min-width: 0;
    }

    .hero__right {
        order: 0;
        max-width: none;
        min-width: 0;
        max-height: calc(100dvh - 5.5rem);
    }

    .hero__title {
        font-size: clamp(1.15rem, 4.5vh, 1.65rem);
    }

    .limited-star {
        width: 3.5rem;
        height: 3.5rem;
    }

    .limited-star__text {
        font-size: 0.35rem;
    }

    .hero__desc {
        margin-top: 0.35rem;
        font-size: 0.68rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .entry-tag {
        margin-top: 0.4rem;
        width: min(100%, 10.5rem);
        padding: 0.45rem 0.7rem 0.4rem;
    }

    .entry-tag__price {
        font-size: 1.15rem;
    }

    .entry-tag__label {
        font-size: 0.45rem;
    }

    .entry-tag__seats {
        font-size: 0.9rem;
    }

    .entry-tag__note {
        font-size: 0.38rem;
    }

    .entry-tag__divider {
        margin: 0.35rem 0 0.3rem;
    }

    .hero__cta {
        margin-top: 0.45rem;
        padding: 0.4rem 0.85rem;
        font-size: 0.72rem;
    }

    .hero__right-label {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
        padding-bottom: 0.3rem;
    }

    .skills {
        gap: 0.3rem;
        max-height: calc(100dvh - 7.5rem);
        overflow-y: auto;
    }

    .skill {
        padding: 0.4rem 0.55rem;
        gap: 0.4rem;
    }

    .skill__num {
        font-size: 0.72rem;
    }

    .skill p {
        font-size: 0.65rem;
        line-height: 1.35;
    }

    .hero__image img {
        height: 95dvh;
        max-width: 55vw;
        opacity: 0.35;
    }

    footer {
        padding: 0.35rem 0.75rem;
        gap: 0.35rem 0.75rem;
    }

    .footer__tag {
        font-size: 0.72rem;
    }

    .footer__cta {
        padding: 0.35rem 0.85rem;
        font-size: 0.72rem;
    }

    .footer__copy {
        font-size: 0.6rem;
        width: auto;
    }
}