/* 1. Main Entry Container */
.film-entry {
    margin-bottom: 80px; /* Space between different film projects */
    width: 100%;
}

/* 2. The "Monitor" Frame */
.video-frame {
    background-color: #000000;
    border: 4px inset #808080; /* Deep recessed look */
    padding: 12px;
    margin: 20px auto;
    
    /* Forces the video to be as large as possible within the layout */
    width: 95%; 
    max-width: 800px; 
    
    box-sizing: border-box;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/* 3. The Responsive Video Container */
.video-container {
    position: relative;
    /* 60% provides a taller, more immersive vertical presence than standard 16:9 */
    padding-bottom: 60%; 
    height: 0;
    width: 100%;
    overflow: hidden;
}

/* 4. The Iframe Embed */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* 5. The Technical Data (Spec Sheet) */
.spec-sheet {
    background-color: #c0c0c0;
    border: 2px outset #ffffff; /* Raised effect to contrast the inset video */
    margin: 0 auto;
    width: 95%;
    max-width: 800px; /* Matches video-frame exactly */
    box-sizing: border-box;
    text-align: left;
}

.spec-title {
    background-color: #000080; /* Classic Win95 Navy */
    color: #ffffff;
    padding: 4px 12px;
    font-weight: bold;
    font-family: "MS Sans Serif", Geneva, sans-serif;
    font-size: 14pt;
    letter-spacing: 1px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
    color: #000;
}

.spec-table td {
    padding: 10px;
    vertical-align: top;
    border-bottom: 1px solid #808080;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* Label column styling */
.spec-table b {
    color: #404040;
    text-transform: uppercase;
    font-size: 12pt;
}

/* 6. Back Link Styling */
.back-link {
    display: inline-block;
    margin-top: 20px;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    text-decoration: none;
    color: #0000ee;
}

.back-link:hover {
    text-decoration: underline;
    color: #ff0000;
}

.title-td {
    padding-left: 20px;
    padding-right: 20px
}