:root {
    --film-gold: #f4d03f;
    --film-dark: #0a0a0a;
    --film-darker: #000000;
    --film-light: #1a1a1a;
    --film-accent: #e74c3c;
    --film-text: #e8e8e8;
    --film-text-dark: #b0b0b0;
    --film-border: #333333;
    --film-shadow: rgba(244, 208, 63, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    max-width: 100%;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--film-text);
    line-height: 1.8;
    background: var(--film-darker);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(244, 208, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Film Strip Effect */
@keyframes filmMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.film-strip {
    position: relative;
    padding: 20px 0;
}

.film-strip::before,
.film-strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--film-darker) 0px,
        var(--film-darker) 20px,
        var(--film-gold) 20px,
        var(--film-gold) 25px
    );
    background-size: 40px 15px;
    animation: filmMove 2s linear infinite;
}

.film-strip::before {
    top: 0;
}

.film-strip::after {
    bottom: 0;
}

/* Header */
.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--film-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.logo {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--film-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Arial Black', sans-serif;
    position: relative;
    padding: 8px 0;
    transition: all 0.4s;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

.logo:hover {
    color: #f5d84f;
    text-shadow: 0 0 25px rgba(244, 208, 63, 0.8);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: menuFadeIn 0.6s ease-out forwards;
}

@keyframes menuFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--film-text);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--film-gold);
    transition: width 0.4s;
    box-shadow: 0 0 10px var(--film-gold);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--film-gold);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 2px solid var(--film-gold);
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--film-gold);
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(244, 208, 63, 0.5);
}

.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(8px, -8px);
}

/* Hero Section - Cinema Style */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--film-gold);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(244, 208, 63, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(231, 76, 60, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(244, 208, 63, 0.03) 2px, rgba(244, 208, 63, 0.03) 4px);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 
        0 0 20px rgba(244, 208, 63, 0.8),
        0 0 40px rgba(244, 208, 63, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    font-family: 'Arial Black', sans-serif;
    background: linear-gradient(135deg, var(--film-gold) 0%, #ffffff 50%, var(--film-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 4rem;
    opacity: 0.95;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: var(--film-text);
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Cinema Style */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 2px;
        white-space: normal;
        line-height: 1.4;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--film-gold);
    color: var(--film-darker);
    box-shadow: 
        0 0 20px rgba(244, 208, 63, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--film-gold);
}

.btn-primary:hover {
    background: #f5d84f;
    transform: translateY(-4px);
    box-shadow: 
        0 0 30px rgba(244, 208, 63, 0.8),
        0 8px 25px rgba(0, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--film-gold);
    border: 2px solid var(--film-gold);
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.3);
}

.btn-secondary:hover {
    background: var(--film-gold);
    color: var(--film-darker);
    box-shadow: 0 0 25px rgba(244, 208, 63, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--film-gold);
    color: var(--film-gold);
}

.btn-outline:hover {
    background: var(--film-gold);
    color: var(--film-darker);
}

/* Sections */
.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--film-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    padding-bottom: 2rem;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--film-gold), transparent);
    box-shadow: 0 0 15px var(--film-gold);
}

.features-section,
.quick-links-section {
    padding: 6rem 0;
    position: relative;
}

.features-section {
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* Feature Cards - Film Frame Style */
.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 3rem;
    border: 3px solid var(--film-gold);
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: 
        0 0 20px rgba(244, 208, 63, 0.2),
        inset 0 0 30px rgba(244, 208, 63, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #f5d84f;
    box-shadow: 
        0 0 40px rgba(244, 208, 63, 0.6),
        inset 0 0 40px rgba(244, 208, 63, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--film-gold) 0%, #f5d84f 100%);
    border: 3px solid var(--film-gold);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.film-icon::after,
.story-icon::after,
.camera-icon::after,
.sound-icon::after {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--film-darker);
    letter-spacing: 2px;
    font-family: 'Arial Black', sans-serif;
}

.film-icon::after { content: 'FILM'; }
.story-icon::after { content: 'STORY'; }
.camera-icon::after { content: 'CAM'; }
.sound-icon::after { content: 'SOUND'; }

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--film-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.feature-card p {
    color: var(--film-text);
    line-height: 1.9;
    font-size: 1.05rem;
}

.feature-link {
    color: var(--film-gold);
    text-decoration: none;
    font-weight: 700;
    margin-top: 2rem;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.feature-link:hover {
    color: #f5d84f;
    border-bottom-color: var(--film-gold);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
    transform: translateX(5px);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Quick Link Cards - Poster Style */
.quick-link-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 3rem;
    border: 2px solid var(--film-border);
    text-decoration: none;
    color: var(--film-text);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    transform: rotate(45deg);
    transition: left 0.6s;
    left: -100%;
}

.quick-link-card:hover::after {
    left: 100%;
}

.quick-link-card:hover {
    border-color: var(--film-gold);
    transform: translateY(-8px);
    box-shadow: 
        0 0 30px rgba(244, 208, 63, 0.4),
        inset 0 0 30px rgba(244, 208, 63, 0.05);
}

.quick-link-card h3 {
    color: var(--film-gold);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.quick-link-card p {
    color: var(--film-text-dark);
    line-height: 1.8;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

.content-section {
    padding: 5rem 0;
}

.content-section h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--film-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.content-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--film-gold), transparent);
    box-shadow: 0 0 15px var(--film-gold);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 4rem;
    color: var(--film-gold);
    font-weight: 700;
    border-left: 6px solid var(--film-gold);
    padding-left: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.3);
    box-shadow: -10px 0 20px rgba(244, 208, 63, 0.1);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--film-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section p {
    margin-bottom: 2rem;
    line-height: 2;
    font-size: 1.1rem;
    color: var(--film-text);
    text-align: justify;
}

/* Term Cards - Film Reel Style */
.term-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid var(--film-border);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
    border-left: 6px solid var(--film-gold);
    position: relative;
    overflow: hidden;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--film-gold);
    box-shadow: 0 0 20px var(--film-gold);
}

.term-card:hover {
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.7),
        -10px 0 30px rgba(244, 208, 63, 0.2);
    transform: translateX(10px);
    border-color: var(--film-gold);
}

.term-card h3 {
    color: var(--film-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.term-card .term-category {
    display: inline-block;
    background: rgba(244, 208, 63, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    font-size: 0.85rem;
    color: var(--film-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border: 1px solid var(--film-gold);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.term-card p {
    color: var(--film-text);
    line-height: 1.9;
}

/* Info Blocks - Cinema Screen Style */
.info-block {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.05) 0%, rgba(244, 208, 63, 0.02) 100%);
    border-left: 6px solid var(--film-gold);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(244, 208, 63, 0.05);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--film-gold);
    box-shadow: 0 0 20px var(--film-gold);
}

.info-block h4 {
    color: var(--film-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.info-block p,
.info-block ul {
    color: var(--film-text);
    line-height: 1.9;
}

.info-block.kisaca {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
    border-left-color: var(--film-gold);
}

.info-block.dikkat {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border-left-color: var(--film-accent);
}

.info-block.dikkat h4 {
    color: var(--film-accent);
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* Search */
.search-box {
    margin: 3rem 0;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 3px solid var(--film-border);
    border-radius: 0;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: var(--film-light);
    font-family: inherit;
    color: var(--film-text);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.search-box input:focus {
    outline: none;
    border-color: var(--film-gold);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
    background: var(--film-darker);
}

.search-box input::placeholder {
    color: var(--film-text-dark);
}

.search-results {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--film-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form Container */
.contact-form-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid var(--film-gold);
    padding: 0;
    margin: 4rem 0;
    box-shadow: 
        0 0 40px rgba(244, 208, 63, 0.2),
        inset 0 0 50px rgba(244, 208, 63, 0.05);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--film-gold), transparent);
    box-shadow: 0 0 20px var(--film-gold);
}

.contact-form-header {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, transparent 100%);
    padding: 3rem;
    border-bottom: 2px solid var(--film-border);
}

.contact-form-header h3 {
    color: var(--film-gold);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

.contact-form-header p {
    color: var(--film-text);
    font-size: 1.1rem;
    margin: 0;
}

.contact-form {
    padding: 3rem;
}

/* Forms */
.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--film-gold);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 3px solid var(--film-border);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--film-light);
    color: var(--film-text);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--film-gold);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
    background: var(--film-darker);
}

.form-group textarea {
    min-height: 200px;
    resize: vertical;
}

.form-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    color: var(--film-text);
    cursor: pointer;
    position: relative;
    padding: 1rem;
    background: rgba(244, 208, 63, 0.05);
    border: 2px solid var(--film-border);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.3s;
}

.form-group .checkbox-label:hover {
    border-color: var(--film-gold);
    background: rgba(244, 208, 63, 0.1);
}

.form-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 3px solid var(--film-border);
    background: var(--film-light);
    position: relative;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.2);
}

.form-group input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--film-gold);
    border-color: var(--film-gold);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.6);
}

.form-group input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--film-darker);
    font-size: 16px;
    font-weight: bold;
}

.checkbox-text {
    flex: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.form-error {
    color: var(--film-accent);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-form-container {
        margin: 3rem 0;
    }

    .contact-form-header {
        padding: 2rem;
    }

    .contact-form-header h3 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .contact-form {
        padding: 2rem;
    }

    .checkbox-text {
        font-size: 0.85rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8);
    z-index: 2000;
    padding: 2.5rem;
    border-top: 4px solid var(--film-gold);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--film-text);
    line-height: 1.9;
}

.cookie-content a {
    color: var(--film-gold);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.cookie-content a:hover {
    border-bottom-color: var(--film-gold);
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 0;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(244, 208, 63, 0.3);
    border: 3px solid var(--film-gold);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.modal-content h2 {
    margin-bottom: 2.5rem;
    color: var(--film-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

.cookie-settings-list {
    margin-bottom: 2.5rem;
}

.cookie-setting-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--film-border);
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-item label {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--film-text);
    font-size: 1.1rem;
}

.cookie-setting-item input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
    accent-color: var(--film-gold);
}

.cookie-setting-item p {
    margin-top: 1rem;
    margin-left: 3rem;
    font-size: 0.95rem;
    color: var(--film-text-dark);
    font-weight: normal;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}


/* Footer */
.site-footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    border-top: 4px solid var(--film-gold);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--film-gold), transparent);
    box-shadow: 0 0 20px var(--film-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--film-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.footer-section a:hover {
    color: var(--film-gold);
    transform: translateX(5px);
    border-bottom-color: var(--film-gold);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(244, 208, 63, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

/* Diagrams */
.diagram {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem;
    border-radius: 0;
    margin: 4rem 0;
    text-align: center;
    border: 3px solid var(--film-gold);
    box-shadow: 
        0 0 30px rgba(244, 208, 63, 0.2),
        inset 0 0 40px rgba(244, 208, 63, 0.05);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.diagram-box {
    display: inline-block;
    background: linear-gradient(135deg, var(--film-gold) 0%, #f5d84f 100%);
    padding: 2rem 3rem;
    border: 3px solid var(--film-gold);
    border-radius: 0;
    margin: 1rem;
    font-weight: 700;
    color: var(--film-darker);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    text-transform: uppercase;
    letter-spacing: 2px;
}

.diagram-box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(244, 208, 63, 0.8);
}

.diagram-arrow {
    display: inline-block;
    color: var(--film-gold);
    font-size: 2.5rem;
    margin: 0 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

/* Sitemap */
.sitemap-list {
    list-style: none;
}

.sitemap-list li {
    margin-bottom: 1.5rem;
}

.sitemap-list a {
    color: var(--film-gold);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
}

.sitemap-list a:hover {
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
    transform: translateX(10px);
    border-bottom-color: var(--film-gold);
}

.sitemap-list ul {
    margin-left: 3rem;
    margin-top: 1rem;
}

.sitemap-list ul li {
    margin-bottom: 1rem;
}

.sitemap-list ul a {
    font-size: 1.1rem;
    color: var(--film-text);
    font-weight: normal;
    text-transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
        border-top: 3px solid var(--film-gold);
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-30px);
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 600px;
        padding: 2rem;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(244, 208, 63, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 0;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-content p {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .cookie-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons .btn {
        width: 100%;
        flex: 1;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content-section h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content-section h2 {
        font-size: 1.8rem;
        padding-left: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 2rem;
    }

    .content-section h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
        padding-left: 0.75rem;
        letter-spacing: 0.5px;
        margin-left: 0;
    }

    .content-section h2::before {
        display: none;
    }

    .content-section p {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 1rem;
    }

    .info-block {
        padding: 1.5rem;
        margin-left: 5px;
        margin-right: 5px;
    }

    .term-card {
        padding: 1.5rem;
        margin-left: 5px;
        margin-right: 5px;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        gap: 1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .cookie-buttons {
        gap: 0.75rem;
    }

    .cookie-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* Filters Container - Cinema Style */
.filters-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 3rem;
    margin: 3rem 0;
    border: 3px solid var(--film-gold);
    box-shadow: 
        0 0 30px rgba(244, 208, 63, 0.2),
        inset 0 0 40px rgba(244, 208, 63, 0.05);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    overflow: hidden;
}

.filters-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.05), transparent);
    animation: filterShine 3s infinite;
}

@keyframes filterShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.filters-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: end;
    position: relative;
    z-index: 1;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    color: var(--film-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--film-darker);
    border: 2px solid var(--film-border);
    color: var(--film-text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--film-gold);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
    background: var(--film-light);
}

.filter-input::placeholder {
    color: var(--film-text-dark);
}

.filter-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f4d03f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.filter-btn {
    padding: 1rem 2rem;
    margin-top: 1.5rem;
}

/* Results Count */
.results-count {
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--film-gold);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.results-count p {
    color: var(--film-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

/* Productions Grid */
.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Production Card - Poster Style */
.production-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid var(--film-border);
    padding: 2.5rem;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.production-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--film-gold);
    transform: scaleX(0);
    transition: transform 0.5s;
    box-shadow: 0 0 20px var(--film-gold);
}

.production-card:hover::before {
    transform: scaleX(1);
}

.production-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.production-card:hover::after {
    opacity: 1;
}

.production-card:hover {
    transform: translateY(-10px);
    border-color: var(--film-gold);
    box-shadow: 
        0 0 40px rgba(244, 208, 63, 0.4),
        inset 0 0 40px rgba(244, 208, 63, 0.05);
}

.production-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--film-border);
}

.production-header h3 {
    color: var(--film-gold);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    flex: 1;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.production-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.production-type.film {
    background: var(--film-gold);
    color: var(--film-darker);
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

.production-type.dizi {
    background: var(--film-accent);
    color: white;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}

.production-info {
    margin-bottom: 1.5rem;
}

.production-info p {
    color: var(--film-text);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.production-info strong {
    color: var(--film-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.production-description {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(244, 208, 63, 0.05);
    border-left: 4px solid var(--film-gold);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.production-description p {
    color: var(--film-text);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.production-techniques {
    margin-top: 1.5rem;
}

.production-techniques strong {
    color: var(--film-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.technique-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.technique-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(244, 208, 63, 0.1);
    border: 1px solid var(--film-gold);
    color: var(--film-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    transition: all 0.3s;
}

.technique-tag:hover {
    background: var(--film-gold);
    color: var(--film-darker);
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    border: 2px solid var(--film-accent);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.no-results p {
    color: var(--film-text);
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive for Filters */
@media (max-width: 768px) {
    .filters-form {
        grid-template-columns: 1fr;
    }

    .productions-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        width: 100%;
    }
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.contact-info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid var(--film-border);
    padding: 2.5rem;
    transition: all 0.4s;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-info-card:hover {
    border-color: var(--film-gold);
    box-shadow: 0 0 30px rgba(244, 208, 63, 0.3);
    transform: translateY(-5px);
}

.contact-info-card h3 {
    color: var(--film-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.contact-info-card p {
    color: var(--film-text);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--film-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.contact-info-card a:hover {
    color: #f5d84f;
    border-bottom-color: var(--film-gold);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.contact-note {
    color: var(--film-text-dark);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Push Notification - Custom */
.push-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 5000;
    max-width: 400px;
    width: calc(100% - 40px);
}

.push-notification {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(244, 208, 63, 0.3);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(150%) scale(0.8);
    animation: pushNotificationIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.push-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    box-shadow: 0 0 15px currentColor;
}

.push-notification.success {
    border-color: #10b981;
    color: #10b981;
}

.push-notification.error {
    border-color: var(--film-accent);
    color: var(--film-accent);
}

.push-notification.info {
    border-color: var(--film-gold);
    color: var(--film-gold);
}

.push-notification-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.push-notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    min-width: 24px;
}

.push-notification-message {
    color: var(--film-text);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.push-notification-close {
    background: none;
    border: none;
    color: var(--film-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0.7;
    flex-shrink: 0;
}

.push-notification-close:hover {
    opacity: 1;
    color: currentColor;
    transform: scale(1.2);
}

@keyframes pushNotificationIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.push-notification.out {
    animation: pushNotificationOut 0.4s ease-in forwards;
}

@keyframes pushNotificationOut {
    to {
        opacity: 0;
        transform: translateX(150%) scale(0.8);
    }
}

@media (max-width: 480px) {
    .push-notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }

    .push-notification {
        padding: 1.2rem 1.5rem;
    }

    .push-notification-message {
        font-size: 0.9rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--film-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--film-gold);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #f5d84f;
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}
