* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    -webkit-touch-callout: none;
}

button, a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

html {
    height: 100%;
    height: -webkit-fill-available;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
    color-scheme: light dark;
}

body {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    color: #ffffff;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #000000;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.post-event-hero {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 50;
    width: 90%;
    max-width: 520px;
    padding: 5rem 2.5rem;
}

.post-event-hero .hero-logo {
    width: clamp(100px, 22vw, 160px);
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

.hero-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
}

.hero-link {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.hero-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
}

@media (max-width: 480px) {
    .post-event-hero {
        padding: 2rem 1.5rem;
        width: 92%;
    }

    .hero-contact {
        gap: 0.5rem;
    }

    .hero-link,
    .hero-divider {
        font-size: 0.6rem;
        letter-spacing: 0.05em;
    }
}
