@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Space+Grotesk:wght@400;600;700;800&display=swap');

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(255,185,203,0.12), transparent 28%), #420000;
    color: #ff9a9a;
    text-shadow: 0 0 8px rgba(255,112,112,0.18);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    line-height: 1.55;
}

html, body { width: 100%; }

.container {
    width: 100%;
    max-width: 1120px;
    margin: 40px auto;
    padding: 38px 30px;
    text-align: center;
    background: #650000;
    border: 1px solid rgba(255,185,203,0.24);
    box-shadow: 0 30px 100px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
}

.header {
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

h1 {
    margin: 0;
    font-family: 'Space Grotesk', Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 7vw, 4.4rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffb3b3;
    text-shadow: 0 10px 30px rgba(120,0,0,0.55);
}

h1::after {
    content: "";
    display: block;
    width: 96px;
    height: 4px;
    margin: 24px auto 0;
    background: rgba(255,147,147,0.18);
    border-radius: 999px;
}

p {
    margin: 18px auto 0;
    max-width: 760px;
    font-size: clamp(1.05rem, 2.8vw, 1.2rem);
    font-weight: 600;
    color: rgba(255,147,147,0.92);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.8;
}

.logo-container { display:flex; justify-content:center; margin:24px 0; }
.logo { width:100%; max-width:320px; height:auto; filter: drop-shadow(0 0 10px rgba(255,255,255,0.08)); }

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin: 42px auto 40px;
}

.profile-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 0;
    padding: 36px 28px;
    color: #ffb3b3;
    text-decoration: none;
    min-height: 170px;
    display: grid;
    place-items: center;
    gap: 10px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: 0 28px 90px rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
}

.profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 84px;
    height: 5px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.1));
}

.profile-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(255,255,255,0.3); }

.profile-card .card-link {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.profile-header {
    width: min(100%, 720px);
    margin: 28px auto 0;
    padding: 18px 22px;
    display: grid;
    gap: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 40px rgba(0,0,0,0.16);
    border-radius: 16px;
}

.profile-header .social-handle {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd7d7;
    text-decoration: none;
}

.profile-header .event-name,
.profile-header .event-date {
    display: block;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.5;
    color: rgba(255,179,179,0.94);
    text-shadow: none;
}

.profile-header .event-date {
    color: rgba(255,179,179,0.76);
}

.profile-header .social-handle:hover,
.profile-header .social-handle:focus {
    color: #ffffff;
    text-decoration: underline;
}

h2 .social-handle {
    color: #ffb3b3;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

h2 .social-handle:hover,
h2 .social-handle:focus {
    color: #ffffff;
    text-decoration: underline;
}

.profile-card .dj-name {
    display: block;
    font-family: 'Space Grotesk', Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.05;
    color: #ffdbdb;
    text-shadow: 0 0 16px rgba(255,140,140,0.28);
    z-index: 1;
    overflow-wrap: break-word;
}

.profile-card-info {
    display: grid;
    gap: 6px;
    justify-items: center;
    z-index: 1;
}

.profile-card .social-handle {
    position: relative;
    z-index: 1;
    display: block;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #ffd7d7;
    text-decoration: none;
    text-shadow: none;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
}

.profile-card .event-name,
.profile-card .event-date {
    display: block;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.5;
    color: rgba(255,179,179,0.94);
    text-shadow: none;
}

.profile-card .event-date {
    color: rgba(255,179,179,0.74);
}

.profile-card .social-handle:hover,
.profile-card .social-handle:focus {
    color: #ffffff;
    text-decoration: underline;
}

.profile-card .social-handle:hover,
.profile-card .social-handle:focus {
    color: #ffffff;
    text-decoration: underline;
}

.profile-card span {
    display: block;
    font-family: 'Space Grotesk', Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.1;
    color: #ffb3b3;
    text-shadow: 0 0 12px rgba(255,120,120,0.2);
    z-index: 1;
}

.content-panel {
    background: linear-gradient(180deg, rgba(255,147,147,0.02), rgba(0,0,0,0.04));
    border: 1px solid rgba(255,147,147,0.12);
    padding: 20px;
    display: block;
    margin: 24px auto 34px;
    max-width: 940px;
    border-radius: 10px;
    /* subtle outer shadow, keep most depth on the video border */
    box-shadow: 0 12px 40px rgba(0,0,0,0.55), inset 0 6px 20px rgba(255,147,147,0.02);
}

.video-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #070507;
    border: 10px solid rgba(255,147,147,0.12);
    position: relative;
    z-index: 0; /* allow ticker to layer above when needed */
}

/* Shadow only around the outer border using a pseudo-element so the video content stays crisp */
.video-frame::after {
    content: "";
    position: absolute;
    inset: -18px; /* space for the shadow outside the border */
    border-radius: calc(8px + 18px);
    pointer-events: none;
    z-index: -1;
    box-shadow: 0 36px 90px rgba(0,0,0,0.7), 0 12px 30px rgba(0,0,0,0.55), inset 0 6px 18px rgba(255,40,40,0.02);
}

.video-frame iframe { display:block; width:100%; height:100%; border:none; }

.back-link {
    display: inline-flex; justify-content:center; align-items:center; margin-top:28px; padding:14px 28px;
    border: 1px solid rgba(255,255,255,0.22); background:transparent; color:#ffb3b3; text-decoration:none; text-transform:uppercase;
    letter-spacing:0.16em; font-weight:800; border-radius:4px; transition: background 0.2s ease, transform 0.2s ease;
}
.back-link:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.footer { margin-top:40px; font-size:0.95rem; color: rgba(255,147,147,0.72); }

.ticker-container { position: relative; z-index: 3; width:100%; overflow:hidden; margin:20px 0 30px; padding:12px 0; background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.14); }
.ticker { display:flex; align-items:center; min-width:max-content; animation: scrollTicker 18s linear infinite; }
.ticker-item { display:inline-block; padding:0 24px; font-size:1rem; color: rgba(255,147,147,0.94); text-transform:uppercase; letter-spacing:0.18em; flex-shrink:0; white-space:nowrap; }
.ticker-item:not(:last-child)::after { content: " · "; color: rgba(255,147,147,0.55); }

@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (max-width: 768px) {
    .container { padding: 28px 22px; }
    .logo { max-width: 280px; }
    .link-grid { gap: 14px; }
    .profile-card { padding: 30px 22px; min-height: 150px; }
    .profile-card span { font-size: 1.2rem; }
    .ticker-item { padding: 0 18px; }
}

@media (max-width: 480px) {
    .container { margin: 24px auto; padding: 20px 16px; }
    .logo { max-width: 240px; }
    .ticker-item { padding: 0 14px; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) { .ticker { animation: none; } }
