@font-face 
{
    font-family: 'Dirty Headline';
    src: url('fonts/DirtyHeadline.ttf') format('truetype');
    font-display: swap
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
:root {
    --clr-bg: #1a1745;
    --clr-bg-light: #252161;
    --clr-accent: #dc8f02;
    --clr-accent-glow: #f5a623;
    --clr-text: rgba(255, 255, 255, .88);
    --clr-text-muted: rgba(255, 255, 255, .6);
    --clr-surface: rgba(255, 255, 255, .06);
    --clr-border: rgba(255, 255, 255, .12);
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --max-w: 52rem;
    --radius: 10px;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem
}
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clr-text);
    background: linear-gradient(170deg, var(--clr-accent) 0%, #6b3fa0 30%, var(--clr-bg) 60%);
    background-attachment: fixed;
    min-height: 100vh
}
a {
    color: var(--clr-accent-glow);
    text-decoration: none;
    transition: color .2s
}
a:hover {
    color: #fff
}
img {
    max-width: 100%;
    height: auto;
    display: block
}
/* ── Nav ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 23, 69, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--clr-border)
}
nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: .75rem 1rem
}
nav a {
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .25rem 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s
}
nav a:hover {
    color: #fff;
    border-bottom-color: var(--clr-accent)
}

/* ── Hero / Header ── */
.hero {
    text-align: center;
    padding: 5rem 1.5rem 3rem;
    max-width: var(--max-w);
    margin: 0 auto
}
.hero img {
    width: clamp(120px, 18vw, 220px);
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .4))
}
.hero h1 {
    font-family: 'Dirty Headline', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    letter-spacing: .02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 40%, var(--clr-accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}
.hero .dates {
	font-size: 1.05rem;
	color: var(--clr-text-muted);
	line-height: 1.8
}
.hero .dates strong {
	color: var(--clr-text)
}
.hero .arrow {
	display: inline-block;
	margin: 0 .35rem;
	color: var(--clr-accent);
	font-weight: 700
}
.teaser {
    font-size: clamp(3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--clr-accent-glow);
    margin-bottom: .75rem;
    letter-spacing: .01em
}
.social-cta {
    font-size: .95rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.25rem
}
.socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: .5rem
}
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    transition: background .2s, transform .2s
}
.socials a:hover {
    background: var(--clr-accent);
    transform: translateY(-2px)
}
.socials svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: #fff
}

/* ── Sections ── */
section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 1.5rem
}
section+section {
	border-top: 1px solid var(--clr-border)
}
section h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff
}

/* ── Info ── */
.info-text {
	max-width: 40rem;
	margin: 0 auto 2rem;
	text-align: center;
	color: var(--clr-text-muted)
}
.info-text b {
	color: var(--clr-text)
}
.poster {
	display: block;
	width: clamp(260px, 50%, 380px);
	margin: 0 auto;
	border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(0, 0, 0, .35)
}

/* ── Iframe sections ── */
.form-frame {
	width: 100%;
	border: 0;
	border-radius: var(--radius);
	background: var(--clr-surface);
	min-height: 500px
}

/* ── Partners ── */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    max-width: 44rem;
    margin: 0 auto
}
.partners-grid a {
    display: inline-block;
    padding: .45rem 1rem;
    border-radius: 2rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    font-size: .88rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: background .2s, color .2s, border-color .2s, transform .15s
}
.partners-grid a:hover {
    background: var(--clr-accent);
    color: #fff;
    border-color: var(--clr-accent);
    transform: translateY(-1px)
}

/* ── Footer ── */
footer {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid var(--clr-border)
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start
}
.footer-grid iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: var(--radius)
}
.footer-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem
}
.footer-info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .35rem .75rem;
    font-size: .92rem;
    color: var(--clr-text-muted)
}
.footer-info dt {
    font-weight: 600;
    color: var(--clr-text)
}
.footer-info dd {
    margin: 0
}
.copyright {
    text-align: center;
    padding: 2rem 1rem 1rem;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

/* ── Responsive ── */
@media(max-width:640px) {
    nav ul {
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center
    }
    .footer-grid {
        grid-template-columns: 1fr
    }
    section {
        padding: 2rem 1rem
    }
    .hero {
        padding: 3.5rem 1rem 2rem
    }
}