/* Global dark cinematic theme */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #0b0b0d;
    color: #e0e0e0;
    text-align: center;
}

/* Top icons */
.social-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.social-header img {
    width: 26px;
    height: 26px;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
    filter: invert()
}

.social-header img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Logo */
.logo-section {
    margin-top: 10px;
    margin-bottom: 40px;
}

.logo-img {
    width: 280px;
    max-width: 70%;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.7));
}

/* EPK content */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 80px;
}

h1, h2 {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    color: #cfcfcf;
}

.embed-container {
    margin: 40px 0;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

