/* Fonts - Inter from site 1 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

/* Global text alignment */
p, h1, h2, h3, h4, h5, h6 {
    text-align: left;
    font-weight: 400;
}

/* Headings underline */
h1, h2, h3, h4, h5, h6 {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

/* Container removed - using main-content instead */

/* Header - Aligned by axes with proper spacing and proportions */
.header {
    background-color: #000000;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.header-logo-img {
    max-width: 120px;
    width: 120px;
    height: auto;
    display: block;
}

/* Desktop version - logo fixed above navigation menu */
@media (min-width: 769px) {
    .header-logo {
        position: fixed;
        left: 125px; /* Center of sidebar-nav (250px / 2) */
        top: 20px; /* Position above sidebar-nav, adaptive spacing */
        transform: translateX(-50%);
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .header-logo-img {
        max-width: clamp(80px, 8vw, 120px);
        width: clamp(80px, 8vw, 120px);
        height: auto;
        display: block;
    }
}

.header-language {
    flex: 0 0 auto;
    margin-left: auto;
}

.mobile-menu-toggle {
    flex: 0 0 auto;
    margin-right: auto;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.language-toggle {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: opacity 0.3s ease;
}

.language-toggle:hover {
    opacity: 0.7;
}

/* Left Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 100px;
    bottom: 0;
    width: 250px;
    background-color: #000000;
    border-right: 1px solid #ffffff;
    z-index: 999;
    overflow-y: auto;
    padding: 40px 0;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.sidebar-menu-item {
    margin: 0;
    padding: 0;
}

.sidebar-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    position: relative;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid transparent;
}

.sidebar-link:hover {
    opacity: 0.7;
}

.sidebar-link.active {
    border-bottom: 1px solid #ffffff;
}

.sidebar-menu-item-parent {
    position: relative;
}

.sidebar-arrow {
    float: right;
    transition: transform 0.3s ease;
}

.sidebar-menu-item-parent.expanded .sidebar-arrow {
    transform: rotate(90deg);
}

.sidebar-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.sidebar-menu-item-parent.expanded .sidebar-submenu {
    max-height: 200px;
    opacity: 1;
    padding: 10px 0 10px 20px;
}

.sidebar-submenu .sidebar-link {
    padding: 12px 0;
    font-size: 13px;
}

/* Main content offset for fixed header and sidebar */
.main-content {
    margin-top: 100px; /* Exactly header height - content starts at header's bottom border */
    margin-left: 250px;
    padding: 40px;
    max-width: calc(100% - 250px);
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 100px;
    min-height: calc(var(--snap-height, 100vh));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
    position: relative;
}

/* First three blocks (projects, movies, concept-art) - each takes full screen */
#projects {
    /*height: calc(100vh - 100px); */
    min-height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

#movies,
#concept-art {
    min-height: calc(100vh - 100px);
    padding-top: 100px;
    padding-bottom: 60px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#movies.timeline-section,
#concept-art.timeline-section {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Contacts section - full screen */
#contacts {
    height: calc(100vh - 100px);
    min-height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

/* Video player sections should not be visible in snap flow */
.video-player-section {
    display: none !important;
}


.snap-section > * {
    position: relative;
    z-index: 1;
}

.section-inner {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.timeline-section {
    position: relative;
    overflow: hidden;
}

.participation-section.timeline-section {
    --snap-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* About Us scroll buttons */
.about-scroll-btn {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
    z-index: 10;
    backdrop-filter: blur(5px);
    width: fit-content;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}

.about-scroll-btn.visible {
    opacity: 0.1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.about-scroll-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.about-scroll-btn--top {
    margin-top: 0;
    margin-bottom: 50px;
}

.about-scroll-btn--bottom {
    margin-top: 150px;
    margin-bottom: 0;
}

.articles-section.timeline-section {
    --snap-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Section Titles */
.section-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 40px;
    padding-top: 0;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Projects Section */
.projects-section {
    margin-bottom: 80px;
}

.projects-grid {
    display: flex;
    flex-direction: row;
    gap: 00px;
    margin-bottom: 40px;
    align-items: stretch;
    justify-content: space-between;
}

.project-card {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #000000;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: calc(50% - 15px);
    min-width: 0;
}

.project-card:hover {
    opacity: 0.9;
    transform: translateY(-5px);
}

.project-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #000000;
    flex-shrink: 0;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.03);
    filter: brightness(0.6);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    padding: 20px;
    gap: 20px;
}

.project-btn {
    background-color: #000000;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
}

.project-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.project-overlay-text {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    text-transform: none;
}

/* Movies Section */
.movies-section {
    margin-bottom: 80px;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
    grid-auto-rows: auto;
}

.movie-card {
    cursor: pointer;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    width: 100%;
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    overflow: hidden;
    position: relative;
}

.movie-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.movie-card:hover .movie-image {
    transform: scale(1.03);
    filter: brightness(0.4);
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
    pointer-events: auto;
}

.watch-trailer-btn,
.video-preview .movie-image-container,
.video-preview .movie-overlay {
    touch-action: manipulation;
}

.watch-trailer-btn {
    background-color: #000000;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
}

.watch-trailer-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.movie-card .preview-title {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 0;
    padding: 0 15px;
    text-align: left;
}

/* Movie Player Layout */
.video-player-section {
    margin-bottom: 80px;
    display: none !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: never !important;
}

.video-player-section.is-active {
    display: block;
    scroll-snap-align: none !important;
    scroll-snap-stop: never !important;
}

.movie-player-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

.movie-player-video {
    flex: 3;
    min-width: 0;
    position: relative;
    aspect-ratio: 16 / 9;
}

.movie-player-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000000;
}

.movie-player-info {
    flex: 2;
    min-width: 0;
    background-color: #000000;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.movie-player-title {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.movie-player-description {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
    text-transform: none;
}

/* Block 1: Video Previews */
.video-previews {
    margin-bottom: 80px;
}

/* Slider */
.slider { display: flex; align-items: center; gap: 12px; }
.slider-viewport { overflow: hidden; flex: 1; }
.slider-track { display: flex; gap: 30px; transition: transform 0.3s ease; }
.slider-button { background: none; color: #FFFFFF; border: 1px solid #FFFFFF; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.slider-button:disabled { opacity: 0.4; cursor: default; }

.video-preview {
    background-color: #000000;
    border: none;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}

.video-preview:hover {
    background-color: #000000;
}

.video-preview.active-preview {
    background-color: #111111;
    border: 1px solid #222222;
}

.video-preview:hover .project-preview-image {
    filter: brightness(1.1) contrast(1.2);
}

.preview-thumbnail {
    /**width: 200px;
    height: 200px;**/
    background-color: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.project-preview-image {
    
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    filter: brightness(0.9) contrast(1.1);
    background-color: #000000;
    aspect-ratio: 1 / 1;
}



.preview-title {
    font-size: 14px;
    font-weight: 400;
    padding: 20px 20px 10px;
    color: #FFFFFF;
}

.preview-description {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    padding: 0 20px 10px;
    line-height: 1.5;
}

.concept-art-card--static {
    cursor: default;
}

.concept-art-card--static:hover {
    transform: none;
}

.concept-art-card--static:hover .movie-image {
    transform: none;
    filter: none;
}

.concept-art-description {
    padding: 0 20px 20px;
}

.concept-art-description p {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0 0 1em;
}

.concept-art-description p:last-child {
    margin-bottom: 0;
}

.concept-art-grid {
    margin-bottom: 0;
}

.concept-art-player-section {
    margin-top: 0;
}



.video-info {
    padding: 30px;
    background-color: #000000;
}

.video-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.video-description {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Block 2.5: Participation in projects */
.participation-section {
    margin-bottom: 80px;
}

.about-description {
    background-color: #000000;
    border: 1px solid #222222;
    padding: 30px;
    margin-bottom: 40px;
}

.about-description p {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

.about-row {
    display: flex;
    gap: 40px;
    align-items: stretch; /* Changed from center to stretch for equal heights */
    margin-bottom: 40px;
}

.about-row:last-of-type {
    margin-bottom: 0;
}

.about-row--video-left {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    background-color: #000000;
    border: 1px solid #222222;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text */
    min-height: 100%; /* Ensure it matches media height */
}

.about-row-title {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center; /* Center title */
}

.about-row-description {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
    text-align: center; /* Center description */
}

.about-media {
    flex: 1;
    background-color: #000000;
    border: 1px solid #222222;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%; /* Ensure it matches text height */
}

.about-video {
    width: 100%;
    display: block;
    transition: filter 0.3s ease;
}

.about-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.about-video-container:hover .about-video {
    filter: brightness(0.6);
}

.about-video-container:hover .about-video-overlay-play {
    opacity: 1;
}

.about-video-overlay-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.watch-video-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.watch-video-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* YouTube Video Link Styles */
.about-video-link {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.about-video-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-video-link:hover .about-video-overlay {
    opacity: 1;
}

.about-video-link:hover .about-video-image {
    filter: brightness(0.6);
}

.watch-youtube-btn {
    background-color: #FF0000;
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Roboto', 'Arial', sans-serif;
}

.watch-youtube-btn:hover {
    background-color: #CC0000;
}

.youtube-overlay-logo {
    scale: 0.5;
    width: 200px;
    height: auto;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

.youtube-overlay-logo:hover {
    opacity: 1;
    transform: scale(0.55);
}


/* YouTube fallback */
.yt-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #000000;
}

.yt-fallback span {
    background: rgba(0,0,0,0.65);
    border: 1px solid #FFFFFF;
    padding: 10px 16px;
    letter-spacing: 1px;
}

/* Block 3: Articles */
.articles-section {
    margin-bottom: 80px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 00px;
}

/* Press Coverage Layout */
.press-coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.press-coverage-block + .press-coverage-block {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #333333;
}

.press-coverage-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.press-coverage-title {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.press-coverage-description {
    font-size: 16px;
    font-weight: 300;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

.press-coverage-right {
    display: flex;
    flex-direction: column;
    gap: 00px;
}

.press-coverage-guitar {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #000000;
}

.guitar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.press-articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.press-article-card {
    cursor: pointer;
    background-color: #000000;
    border: 1px solid #333333;
    padding: 15px;
    transition: border-color 0.3s ease;
}

.press-article-card:hover {
    border-color: #FFFFFF;
}

.press-article-title {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
    margin: 0 0 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.press-article-title:hover {
    color: #CCCCCC;
}

.press-article-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333333;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.press-article-link {
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.press-article-card {
    border:none !important;
}

.press-article-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .press-coverage-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .press-coverage-title {
        font-size: 14px;
    }
    
    .press-coverage-description {
        font-size: 14px;
    }
    
    .press-coverage-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .press-coverage-guitar {
        width: 100%;
        max-width: 100%;
    }
}

/* Ensure 2 columns on desktop regardless of container width */
@media (min-width: 769px) {
    .articles-section .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    
    /* Snap scrolling on desktop - center alignment for specified sections */
    #projects,
    #movies,
    #concept-art,
    #about-us,
    #press-coverage,
    #contacts {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    /* Exclude video player sections from snap */
    .video-player-section {
        scroll-snap-align: none !important;
        scroll-snap-stop: never !important;
    }
}

.article-card {
    background-color: #000000;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.article-card:hover {
    background-color: #000000;
}

.article-image {
    width: 80%;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.publication-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    transition: filter 0.3s ease;
}

.publication-logo:hover {
    filter: brightness(1.1) contrast(1.2);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.article-card:hover .article-overlay {
    opacity: 1;
}

.read-more {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}

.article-card:hover .read-more {
    background-color: #000000;
    color: #FFFFFF;
}

.read-more:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.article-content {
    padding: 25px;
}

.article-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-link:hover {
    color: #CCCCCC;
}

/* Concept Art Section */
.concept-art-section {
    margin-bottom: 80px;
}

.concept-art-grid {
    margin-bottom: 40px;
}

.concept-art-player-section {
    margin-top: 20px;
}

/* Responsive Design */
/* Mobile Responsive - Single Media Query */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    body {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 80px;
    }
    
    /* Header */
    .header {
        height: 80px;
        border-bottom: 1px solid #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
        padding: 0;
        margin-bottom: 0;
    }
    
    .header-container {
        height: 80px;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    /* Center logo on mobile - perfectly centered */
    .header-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1002;
    }
    
    .header-logo-img {
        max-width: 80px;
        width: 80px;
    }
    
    /* Language toggle on the right with proper spacing */
    .header-language {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }
    
    /* Mobile menu button on the left with proper spacing */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }
    
    /* Main content */
    .main-content {
        margin-top: 80px;
        margin-left: 0;
        max-width: 100%;
        padding: 0;
        position: relative;
    }
    
    /* Snap sections */
    .snap-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        scroll-margin-top: 80px;
        margin-top: 20px;
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
    }
    
    .snap-section:first-child {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* First three blocks on mobile - each takes full screen, no scroll */
    #projects {
        /*height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);*/
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 20px;
        overflow: hidden;
        position: relative;
    }

    #concept-art,
    #movies {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 20px;
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
        min-height: auto;
    }
    
    /* Disable scrolling inside these sections on mobile */
    #projects .section-inner {
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    #concept-art .section-inner,
    #movies .section-inner {
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    
    /* Contacts section on mobile - full screen, no scroll */
    #contacts {
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 20px;
        overflow: hidden;
        position: relative;
    }
    
    /* Disable scrolling inside contacts section on mobile */
    #contacts .section-inner {
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    /* About Us and Press Coverage sections on mobile */
    #about-us,
    #press-coverage {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 20px;
    }
    
    #about-ut {
        margin-top: 40px;
    }
    /* CRITICAL: All sections start RIGHT AFTER white line - NO content above it */
    .snap-section .section-inner {
        padding: 0 20px !important;
        margin-top: 0 !important;
        position: relative;
        top: auto !important;
        transform: none !important;
    }
    
    /* Projects section inner - add top padding to match movies */
    #projects .section-inner {
        padding-top: 20px !important;
    }
    
    /* Section titles start IMMEDIATELY after white line */
    .snap-section .section-title {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 20px;
        position: relative;
        font-size: 14px;
    }
    
    /* First element in section starts IMMEDIATELY after white line */
    .snap-section .section-inner > *:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Prevent ANY content from going above the white line */
    .snap-section .section-inner > * {
        position: relative !important;
        top: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Allow margin-bottom for spacing between elements */
    .snap-section .section-inner > *:not(:first-child) {
        margin-top: 20px !important;
    }
    
    /* Mobile menu from left - override base styles */
    .sidebar-nav {
        display: block !important;
        position: fixed;
        width: 100%;
        max-width: 300px;
        top: 80px;
        left: -100%;
        right: auto;
        bottom: 0;
        transition: left 0.3s ease;
        border-right: 1px solid #ffffff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .sidebar-nav.mobile-open {
        left: 0;
    }
    
    /* Overlay for mobile menu */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Typography */
    .container {
        padding: 0 20px;
    }
    
    .main-title {
        font-size: 14px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    /* Grids and layouts */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-grid {
        flex-direction: column;
        gap: 00px;
    }
    
    .movies-grid {
        grid-template-columns: 1fr;
        gap: 00px;
    }
    
    /* Cards */
    .project-card {
        max-width: 100%;
    }
    
    .project-card-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .project-overlay {
        padding: 15px;
    }
    
    .movie-card {
        max-width: 100%;
    }
    
    .movie-card .preview-title {
        font-size: 16px;
    }
    
    /* Increase spacing in first 2 blocks (Projects and Movies) */
    #projects .section-inner > *:not(:first-child) {
        margin-top: 40px !important;
    }
    
    #projects .projects-grid {
        gap: 40px !important;
    }
    
    #projects .project-card {
        margin-bottom: 30px;
    }
    
    #movies .movies-grid,
    #concept-art .movies-grid {
        gap: 30px;
    }
    
    #movies .movie-card,
    #concept-art .movie-card {
        margin-bottom: 30px;
    }
    
    /* Video and media */
    .video-placeholder {
        height: 300px;
    }
    
    /* Make WATCH TRAILER buttons always visible on mobile */
    .movie-overlay {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .watch-trailer-btn {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Make WATCH ON YOUTUBE button visible on mobile */
    .about-video-overlay {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
    }
    
    .watch-youtube-btn {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .youtube-overlay-logo {
        scale:0.5;
        opacity: 0.7 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .movie-player-layout {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .movie-player-info {
        padding: 20px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .movie-player-video {
        aspect-ratio: auto;
        position: static;
    }
    
    .movie-player-video video {
        position: static;
        width: 100%;
        height: auto;
    }
    
    .movie-player-title {
        font-size: 16px;
    }
    
    .about-row,
    .about-row--video-left {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .about-text,
    .about-media {
        padding: 20px;
    }
    
    /* Sections spacing */
    .video-previews,
    .video-player-section,
    .participation-section,
    .articles-section,
    .concept-art-section,
    .projects-section {
        margin-bottom: 50px;
    }
    
    /* Contacts section */
    .contacts-section {
        padding: 0;
        margin-bottom: 0;
    }
    
    .contact-info {
        font-size: 14px;
    }
    
    /* Disable timeline overlays on mobile */
    .timeline-section::before,
    .timeline-section::after {
        display: none;
    }
    
    .timeline-section {
        overflow: visible !important;
    }
    
    /* Reduce sizes in Movies, Projects and Concept Art blocks by 5% on mobile */
    #movies .movie-card,
    #movies .movie-image-container,
    #movies .movie-image,
    #projects .project-card,
    #projects .project-image-container,
    #projects .project-image,
    #concept-art .movie-card,
    #concept-art .movie-image-container,
    #concept-art .movie-image,
    #concept-art .preview-thumbnail,
    #concept-art .preview-image,
    #concept-art .video-preview,
    #concept-art .concept-art-card--static {
        transform: scale(0.95);
        transform-origin: center center;
    }

    #concept-art .concept-art-card--static:hover {
        transform: scale(0.95);
    }
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .main-title {
        font-size: 14px;
    }
    
    .preview-title,
    .article-title {
        font-size: 14px;
    }
    
    .preview-description,
    .article-excerpt {
        font-size: 14px;
    }

    .about-text,
    .about-media {
        padding: 15px;
    }
}



/* Block 4: Contacts */
.contacts-section {
    margin-bottom: 0;
    padding: 0;
    background-color: #000000;
    border-top: none;
}

.contacts-content {
    max-width: 800px;
    margin: 0;
}

.contact-info {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-info:last-child {
    margin-bottom: 0;
}


/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.video-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active .video-modal-overlay {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-modal-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

.video-modal-video {
    flex: 3;
    min-width: 0;
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-modal-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000000;
}

.video-modal-info {
    flex: 2;
    min-width: 0;
    background-color: #000000;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-modal-title {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.video-modal-description {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
    text-transform: none;
}

/* Video modal responsive styles */
@media (max-width: 1024px) {
    .video-modal-layout {
        flex-direction: column;
    }
    
    .video-modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }
}
body {padding-left:10px;}
#about-us {margin-top:20px !important;}