/* =====================================================
   TOGMEN Productions - Global Styles
   Cinematic Dark Theme with Neon Blue Accents
   ===================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --accent-primary: #0080ff;
    --accent-glow: rgba(0, 128, 255, 0.5);
    --accent-hover: #00a3ff;
    --text-primary: #d9d9d9;
    --text-secondary: #888888;
    --text-white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1400px;
    
    /* Effects */
    --neon-glow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    --neon-glow-sm: 0 0 10px var(--accent-glow);
    --glass-blur: blur(20px);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   Reset & Base Styles
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* =====================================================
   Container
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.display-heading {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-tech);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-primary);
    box-shadow: var(--neon-glow-sm);
}

.section-title.center {
    display: block;
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-tech);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.1em;
}

.nav-logo-text span {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow-sm);
}

/* Nav Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    position: relative;
    padding: 10px 12px;
    display: block;
    white-space: nowrap;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 12px;
    right: 12px;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: var(--neon-glow-sm);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: calc(100% - 24px);
}

.nav-cta {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    background: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 10px 22px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.3);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-smooth);
    z-index: 1;
}

.nav-cta:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.nav-cta:hover::before {
    left: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: -1;
}

/* Circuit pattern overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 128, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 128, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: var(--font-tech);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--accent-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: var(--neon-glow-sm);
}

.hero-title {
    font-size: clamp(3rem, 12vw, 9rem);
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 0.9;
}

.hero-title span {
    display: block;
    color: var(--accent-primary);
    text-shadow: var(--neon-glow);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-white);
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow-sm);
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
}

/* =====================================================
   Glassmorphism Cards
   ===================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(0, 128, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 128, 255, 0.1);
}

/* =====================================================
   Featured Projects Section
   ===================================================== */
.featured-projects {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.featured-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.project-card:hover::before {
    border-color: var(--accent-primary);
    box-shadow: inset 0 0 30px rgba(0, 128, 255, 0.2);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 1;
}

.project-category {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.project-year {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =====================================================
   About Section
   ===================================================== */
.about-section {
    padding: var(--section-padding);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-image-border {
    position: absolute;
    inset: 20px;
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    z-index: -1;
    box-shadow: var(--neon-glow-sm);
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-white);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-text h2 span {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow-sm);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: var(--neon-glow-sm);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--bg-tertiary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 350px;
}

.footer-title {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--neon-glow-sm);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom span {
    color: var(--accent-primary);
}

/* =====================================================
   Gallery Page
   ===================================================== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--text-white);
    border-color: var(--accent-primary);
}

.filter-btn.active {
    color: var(--text-white);
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .gallery-category {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.gallery-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-zoom svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.gallery-item:hover .gallery-zoom {
    transform: translateY(0);
    opacity: 1;
}

.gallery-zoom:hover {
    background: var(--accent-hover);
    box-shadow: var(--neon-glow);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* All items same size */
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* =====================================================
   Video/Trailer Section
   ===================================================== */
.video-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.video-section::before,
.video-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.video-section::before {
    top: 0;
}

.video-section::after {
    bottom: 0;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 128, 255, 0.1);
    background: var(--bg-tertiary);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper:hover {
    border-color: rgba(0, 128, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 128, 255, 0.2);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.video-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent-primary);
    opacity: 0.5;
    margin-bottom: 20px;
}

.video-placeholder p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Footer Contact Info */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact svg {
    stroke: var(--accent-primary);
    flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--accent-primary);
    padding-left: 0;
}

/* =====================================================
   Page Header (For Inner Pages)
   ===================================================== */
.page-header {
    padding: 180px 0 100px;
    background: 
        linear-gradient(180deg, rgba(0, 128, 255, 0.05) 0%, transparent 100%),
        var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 128, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(0, 128, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.page-header h1 span {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow-sm);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
    position: relative;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb span {
    color: var(--accent-primary);
}

/* =====================================================
   Series/Diziler Page
   ===================================================== */
.series-section {
    padding: var(--section-padding);
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.series-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.series-card:hover {
    border-color: rgba(0, 128, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 128, 255, 0.1);
}

.series-poster {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.series-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.series-card:hover .series-poster img {
    transform: scale(1.1);
}

.series-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-primary);
    color: var(--text-white);
    font-family: var(--font-tech);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.series-info {
    padding: 25px;
}

.series-genre {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.series-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.series-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.series-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.series-meta svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-primary);
}

.series-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.series-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.series-btn:hover {
    border-bottom-color: var(--accent-primary);
}

.series-btn svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.series-btn:hover svg {
    transform: translateX(5px);
}

/* =====================================================
   Awards/Ödüller Page
   ===================================================== */
.awards-section {
    padding: var(--section-padding);
}

.awards-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), transparent);
    transform: translateX(-50%);
}

.award-year-group {
    margin-bottom: 60px;
}

.award-year {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.award-year span {
    background: var(--bg-primary);
    padding: 10px 30px;
    border: 2px solid var(--accent-primary);
    border-radius: 30px;
    box-shadow: var(--neon-glow-sm);
}

.award-item {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
}

.award-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--accent-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--neon-glow-sm);
}

.award-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.award-item:nth-child(odd) .award-card {
    margin-right: calc(50% + 30px);
    margin-left: 0;
}

.award-item:nth-child(even) .award-card {
    margin-left: calc(50% + 30px);
    margin-right: 0;
}

.award-card {
    flex: 1;
    max-width: calc(50% - 50px);
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.award-card:hover {
    border-color: rgba(0, 128, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 128, 255, 0.1);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 128, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.award-item:nth-child(odd) .award-icon {
    margin-left: auto;
}

.award-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent-primary);
}

.award-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.award-category {
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.award-project {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* =====================================================
   About Page
   ===================================================== */
.about-page-section {
    padding: var(--section-padding);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.about-intro-image::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid var(--accent-primary);
    border-radius: 16px;
    z-index: -1;
    box-shadow: var(--neon-glow-sm);
}

.about-intro-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-intro-text h2 span {
    color: var(--accent-primary);
}

.about-intro-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    border-color: rgba(0, 128, 255, 0.4);
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-primary);
    box-shadow: var(--neon-glow-sm);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.team-role {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: rgba(0, 128, 255, 0.4);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 128, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.contact-card h3 {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--accent-primary);
}

.contact-form-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.contact-form-card h2 {
    font-family: var(--font-tech);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Map placeholder */
.contact-map {
    margin-top: 80px;
    height: 400px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* =====================================================
   Admin Login Page
   ===================================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(0, 128, 255, 0.05) 0%, transparent 70%),
        var(--bg-primary);
}

.auth-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 128, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(0, 128, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 50px 40px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    box-shadow: var(--neon-glow);
    position: relative;
    z-index: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header .nav-logo {
    justify-content: center;
    margin-bottom: 25px;
}

.login-header h1 {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.2);
    background: rgba(0, 128, 255, 0.05);
}

.login-btn {
    width: 100%;
    margin-top: 10px;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
}

.login-footer a {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.login-footer a:hover {
    text-shadow: var(--neon-glow-sm);
}

/* =====================================================
   Admin Dashboard
   ===================================================== */
.dashboard {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: var(--bg-tertiary);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-menu {
    padding: 20px 15px;
    flex: 1;
}

.sidebar-menu-title {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    padding: 10px 15px;
    margin-top: 10px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: 10px;
    margin-bottom: 5px;
    transition: var(--transition-smooth);
}

.sidebar-link:hover {
    background: rgba(0, 128, 255, 0.1);
    color: var(--text-white);
}

.sidebar-link.active {
    background: var(--accent-primary);
    color: var(--text-white);
    box-shadow: var(--neon-glow-sm);
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #0040ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    font-weight: 700;
    color: var(--text-white);
}

.user-details h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    background: var(--bg-primary);
}

.content-header {
    padding: 25px 40px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.content-header h1 {
    font-family: var(--font-tech);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.search-box input {
    width: 200px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-box svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
}

.content-body {
    padding: 40px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 25px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: rgba(0, 128, 255, 0.3);
    transform: translateY(-3px);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 255, 0.1);
    border-radius: 12px;
}

.stat-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.stat-card h3 {
    font-family: var(--font-tech);
    font-size: 2rem;
    color: var(--text-white);
    font-weight: 700;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Movies Table */
.table-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.table-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h2 {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.movies-table {
    width: 100%;
    border-collapse: collapse;
}

.movies-table th {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-align: left;
    padding: 15px 25px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

.movies-table td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: middle;
}

.movies-table tr:last-child td {
    border-bottom: none;
}

.movies-table tr:hover td {
    background: rgba(0, 128, 255, 0.03);
}

.movie-poster {
    width: 60px;
    height: 85px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

.movie-title-cell h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 4px;
}

.movie-title-cell span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.status-badge.published {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
}

.status-badge.draft {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.action-btns {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.action-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.action-btn.delete:hover {
    border-color: #ff4444;
    color: #ff4444;
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

/* =====================================================
   Admin CRUD Pages
   ===================================================== */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb span {
    color: var(--text-secondary);
}

.breadcrumb span:last-child {
    color: var(--text-white);
    font-weight: 500;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-form-section,
.admin-list-section {
    margin-bottom: 30px;
}

.admin-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.admin-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-header h2 {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.admin-card-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-form {
    padding: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.file-upload-label:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(0, 128, 255, 0.05);
}

.file-upload-label svg {
    stroke: currentColor;
}

/* Admin Table */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-align: left;
    padding: 15px 20px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-primary);
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: var(--transition-smooth);
}

.admin-table tbody tr:hover {
    background: rgba(0, 128, 255, 0.05);
}

.table-poster {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.table-actions {
    display: flex;
    gap: 8px;
}

.action-edit {
    background: rgba(0, 128, 255, 0.1);
    border-color: transparent;
}

.action-edit:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.action-delete {
    background: rgba(255, 68, 68, 0.1);
    border-color: transparent;
}

.action-delete:hover {
    background: #ff4444;
    color: white;
    border-color: #ff4444;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: rgba(0, 128, 255, 0.15);
    color: var(--accent-primary);
}

.badge-info {
    background: rgba(0, 200, 200, 0.15);
    color: #00c8c8;
}

.badge-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-danger {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
}

.badge-success {
    background: rgba(0, 200, 100, 0.15);
    color: #00c864;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-active {
    background: rgba(0, 200, 100, 0.15);
    color: #00c864;
}

.status-draft {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-inactive {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
}

/* Pagination */
.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top: 1px solid var(--glass-border);
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pagination-buttons {
    display: flex;
    gap: 8px;
}

.pagination-btn {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.pagination-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Search Box in Admin */
.admin-card-actions .search-box {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.admin-card-actions .search-box svg {
    stroke: var(--text-secondary);
}

.admin-card-actions .search-box input {
    background: transparent;
    border: none;
    padding: 10px;
    color: var(--text-white);
    font-size: 0.9rem;
    width: 200px;
}

.admin-card-actions .search-box input::placeholder {
    color: var(--text-secondary);
}

/* Table Avatar */
.table-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #0040ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

/* Admin Gallery Grid */
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
}

.admin-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.admin-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.admin-gallery-item:hover img {
    transform: scale(1.05);
}

.admin-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.admin-gallery-item:hover .admin-gallery-overlay {
    opacity: 1;
}

.admin-gallery-overlay .gallery-badge {
    font-family: var(--font-tech);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.admin-gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.admin-gallery-actions {
    display: flex;
    gap: 8px;
}

.admin-gallery-actions .action-btn {
    width: 32px;
    height: 32px;
}

/* File Upload Large */
.file-upload-large .file-upload-label {
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
}

.file-upload-large .file-upload-label span {
    margin-top: 15px;
    font-size: 1rem;
}

.file-upload-large .file-upload-label small {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .admin-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .admin-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-card-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .admin-card-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .admin-card-actions .search-box {
        width: 100%;
    }
    
    .admin-card-actions .search-box input {
        width: 100%;
    }
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--neon-glow);
    }
    50% {
        box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1200px) {
    .about-content {
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-tertiary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        transition: var(--transition-smooth);
        gap: 40px;
        z-index: 1000;
    }
    
    .nav-right.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image-container {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    /* Dashboard */
    .sidebar {
        transform: translateX(-100%);
        transition: var(--transition-smooth);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .content-header {
        padding: 20px;
    }
    
    .content-body {
        padding: 20px;
    }
    
    .movies-table {
        display: block;
        overflow-x: auto;
    }
    
    .login-card {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Responsive - New Pages
   ===================================================== */
@media (max-width: 992px) {
    /* About Page */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-intro-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Awards Timeline */
    .awards-timeline::before {
        left: 20px;
    }
    
    .award-item::before {
        left: 20px;
    }
    
    .award-item,
    .award-item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }
    
    .award-item .award-card,
    .award-item:nth-child(odd) .award-card,
    .award-item:nth-child(even) .award-card {
        margin-left: 50px;
        margin-right: 0;
        max-width: 100%;
    }
    
    .award-item:nth-child(odd) .award-icon {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    /* Page Header */
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    /* Series Grid */
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Contact */
    .contact-map {
        height: 250px;
    }
    
    /* Footer Contact */
    .footer-contact {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .award-card {
        padding: 20px;
    }
    
    .award-icon {
        width: 50px;
        height: 50px;
    }
    
    .award-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card-icon {
        margin: 0 auto;
    }
}

/* =====================================================
   Admin Panel - Complete Styles
   ===================================================== */
.dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--bg-primary);
}

.sidebar {
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    display: flex;
    flex-direction: column;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-header .nav-logo-text {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.sidebar-header .nav-logo-text span {
    color: var(--accent-primary);
}

.sidebar-menu {
    padding: 20px 0;
    flex: 1;
}

.sidebar-menu-title {
    display: block;
    padding: 15px 20px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(0, 128, 255, 0.1);
    color: var(--accent-primary);
}

.sidebar-link.active {
    background: rgba(0, 128, 255, 0.15);
    color: var(--accent-primary);
    border-left-color: var(--accent-primary);
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    flex-wrap: wrap;
    gap: 15px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left h1 {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
}

.sidebar-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle svg {
    width: 20px;
    height: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.welcome-text strong {
    color: var(--text-primary);
}

.content-body {
    flex: 1;
    padding: 30px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 128, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
    stroke-width: 1.5;
}

.stat-info h3 {
    font-family: var(--font-tech);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.quick-action-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.quick-action-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

/* Admin Cards */
.admin-form-section {
    margin-bottom: 30px;
}

.admin-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.admin-card-header h2 {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Admin Forms */
.admin-form {
    padding: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-input-sm {
    padding: 8px 12px;
    font-size: 0.85rem;
}

.form-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.form-actions {
    display: flex;
    gap: 12px;
    padding-top: 10px;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-icon:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-icon.btn-danger:hover {
    border-color: #ff4444;
    color: #ff4444;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

/* Admin Tables */
.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
}

.admin-table td {
    font-size: 0.9rem;
    color: var(--text-primary);
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: rgba(0, 128, 255, 0.05);
}

.table-thumb {
    width: 50px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

.table-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.pagination-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-num {
    padding: 6px 12px;
    background: var(--accent-primary);
    color: var(--text-white);
    border-radius: 6px;
    font-weight: 500;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-success {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
}

.status-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-info {
    background: rgba(0, 128, 255, 0.15);
    color: var(--accent-primary);
}

.status-danger {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
}

/* Admin Gallery Grid */
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.admin-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.admin-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.admin-gallery-item:hover img {
    transform: scale(1.05);
}

.admin-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.admin-gallery-item:hover .admin-gallery-overlay {
    opacity: 1;
}

.gallery-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary);
    background: rgba(0, 128, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.gallery-actions {
    display: flex;
    gap: 10px;
}

/* Admin Panel - Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-header {
        padding: 20px;
    }
    
    .content-body {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-card-header {
        padding: 15px 20px;
    }
    
    .admin-form {
        padding: 20px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px 15px;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-pagination {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-left h1 {
        font-size: 1.2rem;
    }
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.sidebar-overlay.active {
    display: block;
}

/* Gallery Page - Consistent Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--text-white);
}

/* =====================================================
   Admin Panel - Additional Styles
   ===================================================== */

/* Header Breadcrumb */
.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.header-breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.header-breadcrumb a:hover {
    color: var(--accent-primary);
}

.header-breadcrumb svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

.header-breadcrumb span:last-child {
    color: var(--text-white);
    font-weight: 500;
}

/* Admin Card Actions */
.admin-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-card-actions .form-input {
    min-width: 150px;
}

/* Gallery Section Padding */
.gallery-section {
    padding: 80px 0 100px;
}

/* Responsive Gallery Grid - Fixed Equal Sizes */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
