:root {
    --cinema-red: #ff0000;
    --cinema-red-dark: #cc0000;
    --cinema-red-light: #ff3333;
    --film-strip: #1a1a1a;
    --projector-gold: #ffd700;
    --screen-white: #f0f0f0;
    --dark-bg: #0a0a0a;
    --card-bg: #151515;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-blue: #00d4ff;
    --accent-purple: #9d4edd;
    --glow-red: 0 0 20px rgba(255, 0, 0, 0.5);
    --glow-gold: 0 0 15px rgba(255, 215, 0, 0.4);
    --shadow-cinema: 0 10px 40px rgba(0, 0, 0, 0.8);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 0, 0.03) 2px,
            rgba(255, 0, 0, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Film Strip Header */
header {
    background: var(--film-strip);
    border-bottom: 3px solid var(--cinema-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-cinema);
    background-image: 
        repeating-linear-gradient(
            90deg,
            var(--film-strip) 0px,
            var(--film-strip) 20px,
            rgba(255, 0, 0, 0.1) 20px,
            rgba(255, 0, 0, 0.1) 22px
        );
}

header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--cinema-red) 20%,
        var(--projector-gold) 50%,
        var(--cinema-red) 80%,
        transparent 100%
    );
    animation: filmMove 3s linear infinite;
}

@keyframes filmMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cinema-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        0 0 10px var(--cinema-red),
        0 0 20px var(--cinema-red),
        0 0 30px var(--cinema-red);
    transition: all 0.4s;
    position: relative;
    font-family: 'Arial Black', sans-serif;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 15px var(--cinema-red),
        0 0 30px var(--cinema-red),
        0 0 45px var(--cinema-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 2px solid var(--cinema-red);
    border-radius: 0;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: all 0.3s;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 24px;
    background: var(--cinema-red);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.mobile-menu-toggle:hover {
    border-color: var(--projector-gold);
    box-shadow: var(--glow-gold);
    background: var(--dark-bg);
}

.mobile-menu-toggle:hover span {
    background: var(--projector-gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.mobile-menu-toggle.active {
    background: var(--dark-bg);
    border-color: var(--projector-gold);
}

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

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid transparent;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cinema-red), var(--projector-gold));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 4px;
    z-index: -1;
}

nav a:hover {
    color: var(--text-primary);
    border-color: var(--cinema-red);
    box-shadow: var(--glow-red);
}

nav a:hover::before {
    opacity: 0.2;
}

nav a.active {
    color: var(--cinema-red);
    border-color: var(--cinema-red);
    box-shadow: var(--glow-red);
    background: rgba(255, 0, 0, 0.2);
}

nav a.active::before {
    opacity: 0.3;
}

/* Badges - Film Reel Style */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.badge-mini {
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    color: white;
    border: 1px solid #00aaff;
}

.badge-sezon {
    background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
    color: white;
    border: 1px solid #c77dff;
}

.badge-uzun {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a1a;
    border: 1px solid #ffed4e;
}

/* Cards - Film Frame Style */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    padding: 2rem 0;
}

.card {
    background: var(--card-bg);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-cinema);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    transform-style: preserve-3d;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--cinema-red);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        var(--shadow-cinema),
        var(--glow-red),
        0 0 40px rgba(255, 0, 0, 0.3);
    border-color: var(--cinema-red);
}

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

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    transition: transform 0.6s;
    position: relative;
    filter: brightness(0.9) contrast(1.1);
}

.card:hover .card-image {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.card-content {
    padding: 2rem;
    background: var(--card-bg);
    position: relative;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.card-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cinema-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.card-link:hover {
    color: var(--projector-gold);
    text-shadow: 0 0 10px var(--projector-gold);
}

/* Hero - Cinema Screen Style */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-size: 200% 200%;
    animation: screenFlicker 8s ease infinite;
    color: white;
    padding: 8rem 0 6rem;
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--cinema-red);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.15) 0%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

@keyframes screenFlicker {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--cinema-red) 0%,
        var(--projector-gold) 25%,
        var(--cinema-red) 50%,
        var(--projector-gold) 75%,
        var(--cinema-red) 100%
    );
    background-size: 200% 100%;
    animation: filmMove 2s linear infinite;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 
        0 0 20px var(--cinema-red),
        0 0 40px var(--cinema-red),
        0 0 60px var(--cinema-red),
        0 0 80px var(--cinema-red);
    position: relative;
    z-index: 2;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 20px var(--cinema-red),
            0 0 40px var(--cinema-red),
            0 0 60px var(--cinema-red);
    }
    50% { 
        text-shadow: 
            0 0 30px var(--cinema-red),
            0 0 60px var(--cinema-red),
            0 0 90px var(--cinema-red),
            0 0 120px var(--cinema-red);
    }
}

.hero p {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Sections */
.section {
    margin: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1.5rem;
    text-align: center;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--cinema-red) 20%,
        var(--projector-gold) 50%,
        var(--cinema-red) 80%,
        transparent 100%
    );
    border-radius: 2px;
}

/* Filters - Control Panel Style */
.filters {
    background: var(--card-bg);
    padding: 0;
    border-radius: 0;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-cinema);
    border: 3px solid var(--cinema-red);
    position: relative;
    overflow: hidden;
}

.filters::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--cinema-red), var(--projector-gold), var(--cinema-red), var(--projector-gold));
    z-index: -1;
    animation: borderGlow 4s linear infinite;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.filter-form {
    padding: 3rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--cinema-red);
    position: relative;
}

.filter-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cinema-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 0 20px var(--cinema-red);
}

.filter-icon {
    font-size: 2rem;
    animation: rotate 3s linear infinite;
}

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

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

.filter-item {
    position: relative;
}

.filter-item label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}


.filter-select {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--cinema-red);
    border-radius: 0;
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.4s;
    background: var(--dark-bg);
    color: var(--text-primary);
    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='%23ff0000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 12px;
    cursor: pointer;
    position: relative;
}

.filter-select:hover {
    border-color: var(--projector-gold);
    background-color: var(--card-bg);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.filter-select:focus {
    outline: none;
    border-color: var(--projector-gold);
    box-shadow: var(--glow-gold);
    background-color: var(--card-bg);
}

.filter-select option {
    background: var(--dark-bg);
    color: var(--text-primary);
    padding: 1rem;
}

.filter-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 0, 0, 0.3);
}

.filter-btn,
.filter-btn-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.875rem 1.75rem;
    border: 2px solid;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-cinema);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
}

.filter-btn {
    background: var(--cinema-red);
    color: white;
    border-color: var(--cinema-red);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-btn:hover::before {
    width: 400px;
    height: 400px;
}

.filter-btn:hover {
    background: var(--cinema-red-dark);
    box-shadow: var(--glow-red), var(--shadow-cinema);
    transform: translateY(-3px);
}

.filter-btn-reset {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.filter-btn-reset:hover {
    border-color: var(--cinema-red);
    color: var(--cinema-red);
    box-shadow: var(--glow-red);
    transform: translateY(-3px);
}


.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
}

.no-results p {
    margin: 1rem 0;
}

.badge-tur {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f4ec0 100%);
    color: white;
    border: 1px solid #8b7df0;
}

/* Not Defteri Panel - Film Reel Style */
.not-panel {
    background: var(--card-bg);
    border-radius: 0;
    padding: 3rem;
    box-shadow: var(--shadow-cinema);
    margin: 3rem 0;
    border: 2px solid var(--cinema-red);
    position: relative;
}

.not-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cinema-red), var(--projector-gold));
}

.not-item {
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    transition: all 0.4s;
    position: relative;
}


.not-item:hover {
    border-color: var(--cinema-red);
    box-shadow: var(--glow-red);
    transform: translateX(10px);
}

.not-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.not-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    padding: 1rem 1.5rem;
    border: 2px solid;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-cinema);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 48px;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--cinema-red);
    color: white;
    border-color: var(--cinema-red);
}

.btn-primary:hover {
    background: var(--cinema-red-dark);
    box-shadow: var(--glow-red);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--cinema-red);
    color: var(--cinema-red);
    box-shadow: var(--glow-red);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.not-form input,
.not-form textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--cinema-red);
    border-radius: 0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--dark-bg);
    color: var(--text-primary);
}

.not-form input:focus,
.not-form textarea:focus {
    outline: none;
    border-color: var(--projector-gold);
    box-shadow: var(--glow-gold);
    background: var(--card-bg);
}

.not-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Longread - Script Style */
.longread {
    background: var(--card-bg);
    border-radius: 0;
    padding: 4rem;
    box-shadow: var(--shadow-cinema);
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid var(--cinema-red);
    position: relative;
}

.longread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cinema-red), var(--projector-gold));
}

.toc {
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    border-left: 5px solid var(--cinema-red);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 0;
    box-shadow: var(--shadow-cinema);
    position: relative;
}

.toc::before {
    content: 'INDEX';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--dark-bg);
    padding: 0 1rem;
    color: var(--cinema-red);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.toc h3 {
    margin-bottom: 1.5rem;
    color: var(--cinema-red);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.toc li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--projector-gold);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 5px var(--projector-gold);
}

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.toc a:hover {
    color: var(--cinema-red);
    transform: translateX(10px);
    text-shadow: 0 0 10px var(--cinema-red);
}

.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    padding-top: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--cinema-red);
    padding-bottom: 1rem;
    position: relative;
}

.content-section h2::before {
    content: 'SCENE';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 0.7rem;
    color: var(--cinema-red);
    letter-spacing: 4px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--projector-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.content-section ul {
    margin: 2rem 0 2rem 3rem;
    list-style: none;
}

.content-section li {
    margin: 1rem 0;
    line-height: 1.9;
    font-size: 1.1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--cinema-red);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 5px var(--cinema-red);
}

.content-section strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Footer - Credits Style */
footer {
    background: var(--film-strip);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    border-top: 4px solid var(--cinema-red);
    position: relative;
    background-image: 
        repeating-linear-gradient(
            90deg,
            var(--film-strip) 0px,
            var(--film-strip) 20px,
            rgba(255, 0, 0, 0.1) 20px,
            rgba(255, 0, 0, 0.1) 22px
        );
}

footer::before {
    content: 'THE END';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    padding: 0.5rem 3rem;
    color: var(--cinema-red);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 5px;
    border: 2px solid var(--cinema-red);
    box-shadow: var(--glow-red);
}

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

.footer-section h3 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cinema-red);
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--projector-gold);
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.footer-section a::before {
    content: '▶';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--cinema-red);
    font-size: 0.8rem;
}

.footer-section a:hover {
    color: var(--cinema-red);
    transform: translateX(10px);
    text-shadow: 0 0 10px var(--cinema-red);
}

.footer-section a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Cookie Banner - Film Reel */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--film-strip);
    border-top: 3px solid var(--cinema-red);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9);
    padding: 2rem;
    z-index: 2000;
    display: none;
    background-image: 
        repeating-linear-gradient(
            90deg,
            var(--film-strip) 0px,
            var(--film-strip) 20px,
            rgba(255, 0, 0, 0.1) 20px,
            rgba(255, 0, 0, 0.1) 22px
        );
    transform: translateY(0);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 1;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner.closing {
    transform: translateY(100%);
    opacity: 0;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: var(--text-primary);
}

.cookie-text a {
    color: var(--cinema-red);
    text-decoration: none;
    font-weight: 700;
}

.cookie-text a:hover {
    text-shadow: 0 0 10px var(--cinema-red);
}

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

.cookie-buttons .btn {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 40px;
}

/* Form - Control Panel */
.form-container {
    background: var(--card-bg);
    border-radius: 0;
    padding: 4rem;
    box-shadow: var(--shadow-cinema);
    max-width: 700px;
    margin: 4rem auto;
    border: 2px solid var(--cinema-red);
    position: relative;
}

.form-container::before {
    content: 'CONTACT';
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--dark-bg);
    padding: 0 1.5rem;
    color: var(--cinema-red);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 4px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--cinema-red);
    border-radius: 0;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--dark-bg);
    color: var(--text-primary);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--projector-gold);
    box-shadow: var(--glow-gold);
    background: var(--card-bg);
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.5rem;
    cursor: pointer;
    accent-color: var(--cinema-red);
}

.checkbox-group label {
    font-weight: normal;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.form-error {
    color: var(--cinema-red);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    display: none;
    font-weight: 600;
    text-shadow: 0 0 10px var(--cinema-red);
}

.form-error.active {
    display: block;
}

/* Toast - Notification */
.toast {
    position: fixed;
    top: 40px;
    right: 40px;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: var(--dark-bg);
    padding: 1.5rem 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-cinema), 0 0 30px rgba(0, 255, 0, 0.5);
    z-index: 3000;
    display: none;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    min-width: 350px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ff00;
}

.toast.error {
    background: linear-gradient(135deg, var(--cinema-red) 0%, var(--cinema-red-dark) 100%);
    color: white;
    border-color: var(--cinema-red);
    box-shadow: var(--shadow-cinema), var(--glow-red);
}

.toast.active {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(150%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        position: relative;
    }
    
    .logo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--film-strip);
        border-top: 2px solid var(--cinema-red);
        box-shadow: var(--shadow-cinema);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }
    
    .main-nav.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
        width: 100%;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 1.25rem 2rem;
        width: 100%;
        border-radius: 0;
        background: transparent;
        border: none;
    }
    
    .main-nav a:hover {
        background: rgba(255, 0, 0, 0.2);
        border-color: transparent;
        transform: translateX(10px);
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .main-nav a.active {
        background: rgba(255, 0, 0, 0.2);
        border-left: 4px solid var(--cinema-red);
        color: var(--cinema-red);
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        justify-content: stretch;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .longread {
        padding: 2rem;
    }
    
    .filter-group {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        justify-content: stretch;
    }
    
    .filter-btn,
    .filter-btn-reset {
        flex: 1;
    }
}
