/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(
        circle at top,
        #0b1e39,
        #000814
    ); /* cosmic gradient */
    color: #e0e6ed; /* starlight text */
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

/* Header */
.movie-header {
    text-align: center;
    margin-bottom: 2rem;
}

.movie-header h1 {
    font-size: 2.2rem;
    color: #f9d71c; /* sun gold */
    text-shadow: 0 0 8px rgba(249, 215, 28, 0.6);
}

.movie-header h3 {
    font-weight: 400;
    color: #9bbcd9;
}

.movie-header .date {
    font-style: italic;
    color: #8d99ae;
}

/* Sections */
.part {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.part h2 {
    margin-bottom: 1rem;
    color: #a3c4f3; /* comet blue */
    border-bottom: 2px solid #5a7d9a;
    padding-bottom: 0.5rem;
}

/* Videos */
.video-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 15px rgba(163, 196, 243, 0.4);
}

/* Changes Table */
.changes h3 {
    margin-bottom: 0.75rem;
    color: #a3c4f3; /* comet blue */
}

.changes table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
}

.changes tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.changes td {
    vertical-align: top;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.changes img {
    max-width: 100%;
    border-radius: 8px;
}

/* Links */
a {
    color: #a29bfe; /* nebula violet */
    text-decoration: none;
}
a:hover {
    color: #dfe6e9;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #9bbcd9;
}
