```css
@font-face {
    font-family: "Nexa Heavy";
    src: url("fonts/Nexa-Heavy.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "Nexa Book";
    src: url("fonts/Nexa-Book.ttf") format("truetype");
    font-weight: normal;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #111111;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   HEADER
   ========================= */

.header {
    height: 70px;
    background: #080808;

    display: flex;
    align-items: center;

    padding: 0 40px;

    border-bottom: 1px solid #333333;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 35px;
}

.menu a {font-family: "Nexa Book", Arial, sans-serif;
    display: flex;
    align-items: center;

    padding: 0 20px;

    color: white;
    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    border-left: 2px solid #1683ff;

    transition: background 0.2s;
}

.menu a:hover {
    background: #222222;
}


/* =========================
   BANNER
   ========================= */

.banner {
    height: 450px;

    background-image: url("images/banner.png");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.banner::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}

.banner h1 {
    position: relative;

    margin: 0;

    font-family: "Nexa Heavy", Arial, sans-serif;
    font-size: 90px;
    letter-spacing: 0 !important;
    font-weight: 900;
}


/* =========================
   MaXX NEWS
   ========================= */

.news-ticker {
    width: 100%;
    height: 55px;

    display: flex;

    background: #080808;
    border-bottom: 1px solid #333333;

    overflow: hidden;

    position: sticky;
    top: 0;
    z-index: 100;
}

.news-label {
    flex-shrink: 0;

    height: 55px;

    display: flex;
    align-items: center;

    padding: 0 22px;

    background: #1683ff;

    z-index: 2;
}

.news-label img {
    max-height: 32px;
    max-width: 120px;

    width: auto;
    height: auto;

    display: block;
    object-fit: contain;
}

.news-window {
    flex: 1;

    height: 55px;

    overflow: hidden;

    display: flex;
    align-items: center;
}

.news-track {
    display: flex;
    align-items: center;

    white-space: nowrap;

    animation: newsScroll 25s linear infinite;
}

.news-track span {font-family: "Nexa Book", Arial, sans-serif;
    margin-right: 35px;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

@keyframes newsScroll {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }

}


/* =========================
   NAJNOWSZY FILM
   ========================= */

.latest {
    width: 100%;
    margin: 0;

    padding: 50px 60px;
}

.latest h2 {
    margin: 0 0 25px;

    font-size: 24px;
    letter-spacing: 2px;

    border-left: 5px solid #1683ff;
    padding-left: 15px;
}


/* =========================
   FILM
   ========================= */

.video {
    width: 100%;
    max-width: 1100px;

    aspect-ratio: 16 / 9;

    background: #000000;
}

.video iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================
   TELEFON
   ========================= */

@media (max-width: 700px) {

    .header {
        padding: 0 20px;
    }

    .menu a {font-family: "Nexa Book", Arial, sans-serif;
        padding: 0 10px;
        font-size: 11px;
    }

    .banner {
        height: 300px;
    }

    .banner h1 {
        font-size: 55px;
        letter-spacing: 0 !important;
    }

    .news-ticker {
        height: 50px;
    }

    .news-label {
        height: 50px;
        padding: 0 15px;
    }

    .news-label img {
        max-height: 27px;
        max-width: 90px;
    }

    .news-window {
        height: 50px;
    }

    .news-track span {
        font-size: 12px;
        margin-right: 25px;
    }

    .latest {
        padding: 35px 15px;
    }

}
.videos {
    padding: 40px;
}

.videos h2 {
    font-family: "Nexa Heavy", Arial, sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    background: #111;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.video-card:hover {
    transform: translateY(-3px);
    border-color: #1683ff;
}

.video-card img {
    width: 100%;
    display: block;
}

.video-card .video-info {
    padding: 12px;
}

.video-card .video-title {
    font-family: "Nexa Book", Arial, sans-serif;
    color: white;
    font-size: 15px;
}

.video-card .video-date {
    font-family: "Nexa Book", Arial, sans-serif;
    color: #888;
    font-size: 12px;
    margin-top: 6px;
}

.section-title {
    font-family: "Nexa Heavy", Arial, sans-serif;
    font-size: 22px;
    color: white;
    border-left: 4px solid #1683ff;
    padding-left: 12px;
    margin-bottom: 20px;
}