
body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background: url("media/background.jpg") center/cover fixed no-repeat;
    color: #333;
}

p, li, article {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
}

.container a {
    color: #0033b3;
    text-decoration: underline;
}

.container a:visited {
    color: #517e96;
}

header, nav, footer {
    background: rgba(0, 0, 0, 0.8);
    color: #d1a05a;
    text-align: center;
    padding: 20px;
}

header {
    border-bottom: 2px solid #d1a05a;
}

nav {
    padding: 10px;
}

nav a,
.menu-item {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1em;
}

nav a:hover {
    color: #d1a05a;
    text-decoration: underline;
}

.menu-item.active {
    color: #c97a0d;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.text-column,
.image-column {
    flex: 1;
    max-width: 600px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.thumbnail {
    margin: 0 auto;
    padding: 20px;
    width: 60px;
    height: auto;
}

.actor-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
}

.actor-table th,
.actor-table td {
    border: 1px solid black;
    padding: 10px;
}

@media (max-width: 1024px) {
    .content-wrapper,
    .text-column,
    .image-column,
    .image-grid {
        flex-direction: column;
        max-width: 100%;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}

@media print {
    body {
        background: none !important;
        color: #000;
        font-size: 1em;
        line-height: 1.6;
    }

    header, nav, footer, .video-container {
        display: none !important;
    }

    .container {
        background: none;
        color: #000;
        box-shadow: none;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    img {
        max-width: 50% !important;
        height: auto;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }
}

body.high-contrast {
    background: #fff;
    color: #000;
}

body.high-contrast a {
    color: #000;
    text-decoration: underline;
}

body.high-contrast a:hover {
    background: #ff0;
    color: #000;
}

body.high-contrast header,
body.high-contrast nav,
body.high-contrast footer,
body.high-contrast .container,
body.high-contrast #content {
    background: #f0f0f0;
    color: #000;
    box-shadow: none;
    font-size: 150%;
}

body.high-contrast nav a {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 6px 10px;
    font-weight: bold;
    margin: 2px;
    display: inline-block;
}

body.high-contrast button,
body.high-contrast input,
body.high-contrast select,
body.high-contrast textarea {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 4px;
    font-weight: bold;
}

button.contrast-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10000;
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    padding: 6px 10px;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

body.high-contrast button.contrast-toggle {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.skip-link {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #000;
    color: #fff;
}

.skip-link:focus {
    padding: 10px;
    z-index: 9999;
}
