
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #020202 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
}
.container {
    padding: 3rem 2rem;
    max-width: 95vw;
    width: 800px;
    max-width: 100%;
}
h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.meta-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.meta-details {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}
.meta-details span {
    font-size: 0.95rem;
    color: #666;
}
.meta-details img {
    max-width: 100%;
    height: auto;
}
.meta-production p {
    margin-top: 0;
    margin-bottom: 0;
}

.meta-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-ghost-button {
    border: 1px solid #fff;
    padding: 0.5rem 2rem;
    border-radius: 2px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.meta-ghost-button:hover {
    background: #fff;
    color: #000;
}

.meta-button {
    border: 1px solid #dc8d50;
    background: #dc8d50;
    padding: 0.5rem 2rem;
    border-radius: 2px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in-out;
}

.meta-button:hover {
    background: #b76b36;
    border-color: #b76b36;
    color: #fff;
}

.coming-soon {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.meta-link {
    color: #fff;
    text-decoration: none;
}
.description {
    text-align: left;
    margin: 2rem 0;
}
.description h2 {
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 0.1rem;
    font-weight: 600;
}
.description p {
    font-size: 1rem;
    color: #f1f1f1;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}
.production {
    font-size: 0.95rem;
    color: #666;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.production a {
    color: #007bff;
    text-decoration: none;
}
.production a:hover {
    text-decoration: underline;
}
.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
    display: block;
}
.notice {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    display: block;
    text-align: left;
}
.author {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
}
.coming-soon {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
@media (max-width: 500px) {
    .container {
        width: 100%;
        padding: 1rem;
        border-radius: 0;
        box-shadow: none;
    }
    h1 {
        font-size: 1.1rem;
    }
    p {
        font-size: 1rem;
    }

    .meta-details {
        grid-template-columns: 1fr;
    }
}

.meta-video {
    width: 100%;
}

.meta-video iframe {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}