/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --bg-dark: #0a0a0a;
    --bg-medium: #1a1a1a;
    --bg-light: #2a2a2a;
    --accent-color: #c9a959;
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
}

/* Главный экран */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    font-weight: 400;
    letter-spacing: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-tagline {
    font-size: 24px;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.cta-button {
    padding: 15px 40px;
    font-size: 16px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Секции */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.subsection-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--accent-color);
    letter-spacing: 3px;
}

/* О проекте */
.about {
    background: var(--bg-medium);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-item {
    margin-bottom: 40px;
}

.about-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Видео */
.video-section {
    background: var(--bg-dark);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.video-item h3 {
    margin-top: 20px;
    font-size: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Творческая часть */
.creative {
    background: var(--bg-medium);
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.creative-item {
    background: var(--bg-light);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.creative-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.creative-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.creative-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.creative-item p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.download-btn,
.read-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s;
}

.download-btn:hover,
.read-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Актеры */
.actors {
    background: var(--bg-dark);
}

.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.actor-item {
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.actor-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.actor-info {
    padding: 25px;
}

.actor-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.actor-role {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.actor-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Визуальная концепция */
.visual {
    background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.65)), url('images/8JAK5E85.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.visual-subsection {
    margin-bottom: 80px;
}

.visual-subsection:last-child {
    margin-bottom: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    color: var(--primary-color);
    padding: 15px;
    text-align: center;
    letter-spacing: 1px;
}

/* Контакты */
.contacts {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/J7JMZ063.jpg');
    background-size: cover;
    background-position: center;
}

.contacts-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.contact-role {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Футер */
.footer {
    background: var(--bg-medium);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--primary-color);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--text-color);
}

#modalCaption {
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: 10px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .subsection-title {
        font-size: 24px;
    }

    .video-grid,
    .actors-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .creative-grid {
        grid-template-columns: 1fr;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
}

/* Новые стили для питч-презентации */

/* История */
.story {
    background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.65)), url('images/story-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 40px;
}

.story-block h3 {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.story-block h3::before,
.story-block h3::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.story-block h3::after {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.logline-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
}

.synopsis p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-download {
    text-align: center;
    margin-top: 40px;
}

/* Блоки сценария и синопсиса */
.screenplay-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.screenplay-intro {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
}

.screenplay-intro:hover {
    border-color: var(--primary-color);
}

.screenplay-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/448b2e79ec036fc2140191e6e144cf3d.jpg');
    background-size: cover;
    background-position: center;
}

.synopsis-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/c7fd24d07bb7f515697fd076689eb0d3.jpg');
    background-size: cover;
    background-position: center;
}

.screenplay-intro p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .screenplay-blocks {
        grid-template-columns: 1fr;
    }
}

/* Герои */
.characters {
    background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.65)), url('images/ACG4IT9H.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.character-card {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.character-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.character-image {
    height: 420px;
    background: var(--bg-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.actor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-color);
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Индивидуальные настройки фото персонажей */
.character-sasha img {
    object-position: 65% 20%;
}

.character-yura img {
    object-position: center 15%;
}

.character-kristina img {
    object-position: center 25%;
}

.character-info {
    padding: 25px;
}

.actor-name {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-style: italic;
}

.character-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.character-type {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.character-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.character-arc {
    color: var(--text-secondary);
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Визуальный язык - цветовая схема */
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: -40px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.subsection-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Афиши референсов */
.posters-row {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.posters-group {
    text-align: center;
}

.posters-group .subsection-title {
    text-align: center;
    margin-bottom: 15px;
}

.posters-group .subsection-description {
    text-align: center;
    margin-bottom: 20px;
}

.posters-grid {
    display: grid;
    gap: 30px;
    justify-items: center;
}

.posters-grid.posters-4 {
    grid-template-columns: repeat(4, 240px);
    justify-content: center;
}

.posters-grid.posters-2 {
    grid-template-columns: repeat(2, 280px);
    justify-content: center;
}

.posters-grid.posters-1 {
    grid-template-columns: 280px;
    justify-content: center;
}

.visual-subsection.centered {
    text-align: center;
}

.posters-4 .poster-image {
    width: 240px;
    height: 340px;
}

.poster-card {
    text-align: center;
}

.poster-image {
    width: 280px;
    height: 400px;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.poster-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-caption {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

.poster-description {
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    max-width: 240px;
}

@media (max-width: 768px) {
    .posters-grid.posters-2 {
        grid-template-columns: 280px;
    }
}

.color-scheme {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.color-block {
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.color-block-image {
    margin: -30px -30px 20px -30px;
    height: 200px;
    overflow: hidden;
}

.color-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-block.cold {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
    border-left: 4px solid #4a90d9;
}

.color-block.warm {
    background: linear-gradient(135deg, #3a2a1a 0%, #4a3a2a 100%);
    border-left: 4px solid #d4af37;
}

.color-block.contrast {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-left: 4px solid #c9a959;
}

.color-block h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.color-block p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.color-meaning {
    font-style: italic;
    color: var(--accent-color) !important;
}

/* Визуальные акценты */
.visual-accents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.accent-item {
    padding: 25px;
    background: rgba(42, 42, 42, 0.5);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accent-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.accent-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.accent-image {
    margin: -25px -25px 20px -25px;
    height: 180px;
    overflow: hidden;
}

.accent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

/* Мудборды */
.moodboard-block {
    margin-bottom: 50px;
}

.moodboard-block:last-child {
    margin-bottom: 0;
}

.moodboard-block {
    margin-top: 50px;
}

.moodboard-title {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Локации */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.location-card {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.location-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.location-image {
    height: 220px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 25px;
}

.location-info h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.location-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.location-card {
    cursor: pointer;
}

.slides-count {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-modal-title {
    color: var(--primary-color);
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Ритм и эмоция */
.rhythm {
    background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.5)), url('images/J0XSZVV4.jpg');
    background-size: cover;
    background-position: center;
}

.rhythm-concept {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    background: rgba(42, 42, 42, 0.5);
    padding: 30px;
    border-radius: var(--border-radius);
}

.rhythm-concept p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.emotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.emotion-card {
    background: var(--bg-light);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.emotion-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.emotion-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.emotion-card h4 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.emotion-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.emotion-function {
    font-size: 14px;
    color: var(--accent-color) !important;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.classical-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/26bc338d70b713768825219a1ababb15.jpg');
    background-size: cover;
    background-position: center;
}

.hiphop-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/218da5868dd8efd831409d95a4d87e25.jpg');
    background-size: cover;
    background-position: center;
}

.electronica-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/873f51d5056300f6760dcea8e24e9fdd.jpg');
    background-size: cover;
    background-position: center;
}

/* Слайдер музыки (круглые обложки) */
.music-slider-wrapper {
    margin-top: 50px;
    padding: 60px 40px;
}

.music-slider-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.music-cover-round {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
    background: url('images/09405795f5ca059f919902cccea08aec.jpg') center/cover;
}

.music-cover-round:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.music-cover-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-play-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
}

.music-cover-round:hover .music-play-mini {
    opacity: 1;
}

.music-arrow-mini {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 18px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

.music-arrow-mini:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.music-counter-mini {
    text-align: center;
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 2px;
}

.music-counter-mini span {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .music-cover-round {
        width: 120px;
        height: 120px;
    }

    .music-slider-mini {
        gap: 15px;
    }

    .music-arrow-mini {
        padding: 10px 14px;
        font-size: 16px;
    }
}

/* Режиссёрское видение */
.vision {
    background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.65)), url('images/WQKR163J.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.vision-statement {
    max-width: 900px;
    margin: 0 auto 60px;
}

.vision-statement blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    text-align: center;
    padding: 50px 40px;
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6)), url('images/P36B0KH3.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vision-point {
    padding: 30px;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
}

.vision-point h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vision-point p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Новые стили для режиссёрского видения */
.vision-subsection {
    margin-top: 60px;
}

/* Заголовок с декором (линии по бокам) */
.title-decorated {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.title-decorated::before,
.title-decorated::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.title-decorated::after {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.vision-principle {
    background: var(--bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.actors-principle-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/VEQVOYUL.jpg');
    background-size: cover;
    background-position: center;
}

.vision-principle p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
}

.vision-principle p:last-child {
    margin-bottom: 0;
}

.actors-approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.actor-approach-card {
    background: var(--bg-light);
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
}

.actor-approach-card:hover {
    border-color: var(--primary-color);
}

.actor-approach-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.actor-approach-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

@media (max-width: 1024px) {
    .actors-approach {
        grid-template-columns: 1fr;
    }
}

/* Кнопка "Смотреть пробы" */
.audition-btn {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 14px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.audition-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Модальное окно для видео проб */
.audition-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.audition-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audition-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: 0.3s;
}

.audition-close:hover {
    color: var(--text-color);
}

.audition-title {
    color: var(--primary-color);
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.audition-video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.audition-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .audition-modal-content {
        width: 95%;
        margin: 15% auto;
    }

    .audition-close {
        top: -35px;
        right: 5px;
        font-size: 30px;
    }

    .audition-title {
        font-size: 18px;
    }
}

.sasha-approach-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/6LCP9TLC.jpg');
    background-size: cover;
    background-position: center;
}

.kristina-approach-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/KPRIUWF4.jpg');
    background-size: cover;
    background-position: center;
}

.yura-approach-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/0S0GZPOF.jpg');
    background-size: cover;
    background-position: center;
}

.camera-philosophy {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/1IN7ER64.jpg');
    background-size: cover;
    background-position: center 25%;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    font-style: italic;
    border-radius: var(--border-radius);
}

.camera-philosophy p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 17px;
}

.camera-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.camera-card {
    background: var(--bg-light);
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
}

.camera-card h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.camera-card p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.camera-card p:last-child {
    margin-bottom: 0;
}

.camera-scale-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/40F01F0X.jpg');
    background-size: cover;
    background-position: center;
}

.camera-movement-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/6BQYTIPJ.jpg');
    background-size: cover;
    background-position: center;
}

.camera-pov-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/EL5RZHI0.jpg');
    background-size: cover;
    background-position: center;
}

/* Раскадровка */
.storyboard-intro {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/7L4FJYMO.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
}

.storyboard-intro p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 18px;
}

.storyboard-btn {
    padding: 15px 40px;
    font-size: 16px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.storyboard-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Модальное окно раскадровки */
.storyboard-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.storyboard-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.storyboard-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: 0.3s;
}

.storyboard-close:hover {
    color: var(--text-color);
}

.storyboard-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}

.slider-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 80vh;
}

.slider-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.slider-arrow {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.slider-counter {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 18px;
    letter-spacing: 2px;
}

.slider-counter span {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .slider-arrow {
        padding: 10px 15px;
        font-size: 18px;
    }

    .storyboard-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

/* Производство */
.production {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('images/123456231.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.production-card {
    background: rgba(42, 42, 42, 0.5);
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
    border-radius: var(--border-radius);
}

.production-card:hover {
    border-color: var(--primary-color);
}

.production-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.production-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.production-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.production-value {
    font-size: 28px;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.production-card p {
    color: var(--text-secondary);
}

.production-note {
    font-size: 14px;
    font-style: italic;
    color: var(--accent-color) !important;
    margin-top: 10px;
}

.production-timeline {
    list-style: none;
    text-align: left;
}

.production-timeline li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-secondary);
}

.production-timeline li:last-child {
    border-bottom: none;
}

.advantages-list {
    list-style: none;
    text-align: left;
}

.advantages-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.advantages-list li:last-child {
    border-bottom: none;
}

.advantages-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Аудитория */
.audience-block {
    background: rgba(42, 42, 42, 0.5);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
}

.audience-block h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    letter-spacing: 2px;
}

.audience-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.segment {
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.segment strong {
    color: var(--primary-color);
}

.audience-description {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 15px;
}

.audience-subtitle {
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.audience-demographics {
    color: var(--text-primary);
    font-size: 18px;
    text-align: center;
}

/* Hero формат */
.hero-format {
    font-size: 16px;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
}

/* Адаптивность для новых элементов */
@media (max-width: 768px) {
    .characters-grid {
        grid-template-columns: 1fr;
    }

    .color-scheme {
        grid-template-columns: 1fr;
    }

    .emotion-grid {
        grid-template-columns: 1fr;
    }

    .vision-points {
        grid-template-columns: 1fr;
    }

    .production-grid {
        grid-template-columns: 1fr;
    }

    .audience-segments {
        grid-template-columns: 1fr;
    }

    .vision-statement blockquote {
        font-size: 18px;
        padding: 25px;
    }

    .logline-text {
        font-size: 18px;
    }

    /* Постеры - адаптивность */
    .posters-grid.posters-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .posters-grid.posters-2 {
        grid-template-columns: 1fr;
    }

    .posters-grid.posters-1 {
        grid-template-columns: 1fr;
    }

    .posters-4 .poster-image,
    .poster-image {
        width: 100%;
        height: auto;
        aspect-ratio: 7/10;
    }

    .poster-description {
        max-width: 100%;
    }

    .posters-row {
        gap: 30px;
    }

    /* Визуальные акценты */
    .visual-accents {
        grid-template-columns: 1fr;
    }

    /* Локации */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* Камера */
    .camera-grid {
        grid-template-columns: 1fr;
    }

    /* Заголовки с линиями */
    .title-decorated::before,
    .title-decorated::after {
        width: 40px;
    }

    .story-block h3::before,
    .story-block h3::after {
        width: 40px;
    }

    /* Секция subtitle */
    .section-subtitle {
        margin-top: -30px;
        font-size: 14px;
    }

    /* Модальные окна слайдеров */
    .storyboard-modal-content {
        padding: 10px;
    }

    .slider-container img {
        max-height: 60vh;
    }

    .location-modal-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    /* Постеры - одна колонка на совсем узких экранах */
    .posters-grid.posters-4 {
        grid-template-columns: 1fr;
    }

    .posters-4 .poster-image,
    .poster-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .poster-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Персонажи */
    .character-image {
        height: 300px;
    }

    .character-info h3 {
        font-size: 20px;
    }

    /* Цветовые блоки */
    .color-block-image {
        height: 150px;
    }

    /* Акценты */
    .accent-image {
        height: 140px;
    }

    /* Локации */
    .location-image {
        height: 180px;
    }

    /* Эмоции */
    .emotion-icon {
        font-size: 36px;
    }

    .emotion-card h4 {
        font-size: 18px;
    }

    /* Производство */
    .production-value {
        font-size: 22px;
    }

    .production-icon {
        font-size: 36px;
    }

    /* Подход к актёрам */
    .actors-approach {
        grid-template-columns: 1fr;
    }

    .actor-approach-card h4 {
        font-size: 18px;
    }

    /* Слайдеры в модальных окнах */
    .slider-arrow {
        padding: 8px 12px;
        font-size: 16px;
    }

    .storyboard-slider {
        gap: 10px;
    }

    .slider-counter {
        font-size: 14px;
    }

    /* Музыкальный слайдер */
    .music-slider-wrapper {
        padding: 30px 15px;
    }

    .music-cover-round {
        width: 100px;
        height: 100px;
    }

    .music-arrow-mini {
        padding: 8px 12px;
        font-size: 14px;
    }

    /* Заголовки */
    .subsection-title {
        font-size: 20px;
    }

    .title-decorated::before,
    .title-decorated::after {
        width: 25px;
    }

    .story-block h3 {
        font-size: 24px;
    }

    .story-block h3::before,
    .story-block h3::after {
        width: 25px;
    }

    /* Контейнер */
    .container {
        padding: 0 15px;
    }

    /* Секции */
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    /* История */
    .synopsis p {
        font-size: 16px;
    }

    .logline-text {
        font-size: 16px;
    }

    /* Сценарий/Синопсис блоки */
    .screenplay-intro {
        padding: 30px 20px;
    }

    .screenplay-intro p {
        font-size: 16px;
    }

    .storyboard-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Аудитория */
    .audience-block {
        padding: 25px;
    }

    .audience-block h3 {
        font-size: 20px;
    }

    .audience-description {
        font-size: 16px;
    }

    .audience-subtitle {
        font-size: 20px;
    }
}

/* Исправление для мобильных - fixed backgrounds не работают на iOS */
@media (max-width: 1024px) {
    /* Все секции с фонами */
    .hero,
    .story,
    .visual,
    .characters,
    .rhythm,
    .vision,
    .production,
    .contacts {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center center;
    }

    /* Внутренние блоки с фонами */
    .vision-statement blockquote,
    .camera-philosophy,
    .storyboard-intro,
    .screenplay-intro,
    .screenplay-bg,
    .synopsis-bg,
    .emotion-card,
    .camera-card,
    .actor-approach-card,
    .classical-bg,
    .hiphop-bg,
    .electronica-bg,
    .actors-principle-bg,
    .sasha-approach-bg,
    .kristina-approach-bg,
    .yura-approach-bg,
    .camera-scale-bg,
    .camera-movement-bg,
    .camera-pov-bg {
        background-attachment: scroll !important;
        background-size: cover;
    }
}
