
    /*
    Theme Name: Deep Dive Cinema
    Description: A noir-inspired WordPress theme for cinema and movie enthusiasts
    Version: 1.0
    Author: Deep Dive Cinema
    */

    /* Your existing CSS with WordPress-specific additions */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Special Elite', monospace;
    background: linear-gradient(#0a0a0a, #141414);
    color: #bbb;
    background-image: url('https://clubhouse.deepdivecinema.club/wp-content/uploads/2025/07/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    padding-top: 90px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
}

header img {
    height: auto;
    max-height: 110px;
    margin-left: 15px;
    margin-right: auto;
    border-radius: 10px;
    margin-bottom: 0px;
}

.masthead-container {
    width: 99%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.masthead-container img {
    display: inline-block;
    transform-origin: center;
    transition: transform 0.3s ease;
    margin-right: auto;
}

.masthead-container h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    color: #ff2c55;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff2c55;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.search-bar input {
    padding: 6px 10px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #333;
    background-color: #222;
    color: #eee;
    border-right: none;
}

.search-bar button {
    padding: 6px 12px;
    border: 1px solid #333;
    border-left: none;
    border-radius: 0 4px 4px 0;
    background-color: #ff2c55;
    color: #FFD700;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background-color: #e31c45;
}

.content {
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    gap: 2rem;
    width: 99%;
    margin: 40px auto;
    padding-bottom: 80px;
}

.column {
    background: rgba(20, 20, 20, 0.85);
    padding: 20px;
    border: 1px solid rgba(255, 44, 85, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.column:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(255, 44, 85, 0.2);
}

h2 {
    color: #ff2c55;
    margin-bottom: 10px;
    font-size: 20px;
    border-bottom: 1px dashed rgba(255, 44, 85, 0.2);
    padding-bottom: 5px;
}

p {
    line-height: 1.6;
    font-size: 14px;
    color: #aaa;
}

footer {
    text-align: center;
    color: #555;
    font-size: 12px;
    margin-top: 40px;
    padding: 20px;
}

a {
    color: #ff2c55;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #ff2c55;
    transition: width 0.3s ease;
}

a:hover {
    color: #fff;
}

a:hover::after {
    width: 100%;
}

/* Movie Card Styles */
.movie-card {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(255, 44, 85, 0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(255, 44, 85, 0.3);
}

.movie-image img {
    width: 140px;
    height: auto;
    display: block;
    object-fit: cover;
    margin-right: 20px;
}

.movie-content {
    padding: 10px 15px;
    color: #ccc;
    flex: 1;
    margin-left: 20px;
}

.movie-title {
    color: #ff2c55;
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Unbounded', sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.movie-plot {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* WordPress specific styles */
.wp-block-post-title {
    color: #ff2c55;
    font-family: 'Unbounded', sans-serif;
}

.wp-block-post-excerpt {
    color: #aaa;
}

.post-meta {
    color: #777;
    font-size: 12px;
    margin-bottom: 15px;
}

/* Page-specific styles */
.page-title {
    color: #ff2c55;
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 44, 85, 0.2);
    padding-bottom: 10px;
}

.page-content {
    background: rgba(20, 20, 20, 0.85);
    padding: 30px;
    border: 1px solid rgba(255, 44, 85, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-image {
    margin: 20px 0;
    text-align: center;
}

.page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.page-content-text {
    line-height: 1.7;
    color: #ccc;
}

.page-content-text h2,
.page-content-text h3,
.page-content-text h4 {
    color: #ff2c55;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-comments {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 44, 85, 0.1);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.pagination a, .pagination span {
    padding: 8px 15px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 44, 85, 0.2);
    border-radius: 4px;
    color: #bbb;
    text-decoration: none;
}

.pagination a:hover {
    background: rgba(255, 44, 85, 0.2);
    color: #fff;
}

.pagination .current {
    background: #ff2c55;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 95%;
    }

    .movie-card {
        flex-direction: column;
    }

    .movie-image img {
        width: 100%;
        margin-right: 0;
    }

    .movie-content {
        margin-left: 0;
    }
}

    /* Careousel Styles */

    .ddc-carousel-container {
        width: 100%;
        height: 100vh;
        background: #141414;
        border: 2px solid #333;
        padding: 20px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ddc-carousel-container::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 44, 85, 0.03) 0%, transparent 70%);
        animation: ddc-rotate 30s linear infinite;
        pointer-events: none;
    }

    @keyframes ddc-rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .ddc-movie-frame {
        position: relative;
        z-index: 1;
        text-align: center;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ddc-movie-link {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .ddc-movie-link:hover {
        transform: scale(1.02);
    }

    .ddc-movie-poster {
        max-width: 90%;
        max-height: 70vh;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        opacity: 0;
        animation: ddc-fadeIn 0.8s ease forwards;
    }

    @keyframes ddc-fadeIn {
        to { opacity: 1; }
    }

    .ddc-movie-title {
        margin-top: 15px;
        font-family: 'Special Elite', monospace;
        font-size: 1.1em;
        color: #e0e0e0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        opacity: 0;
        animation: ddc-fadeIn 0.8s ease 0.3s forwards;
        padding: 0 10px;
    }

    .ddc-no-poster {
        width: 60%;
        max-width: 250px;
        aspect-ratio: 2/3;
        background: linear-gradient(135deg, #222, #111);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 2px dashed #444;
        font-family: 'Special Elite', monospace;
        font-size: 1.1em;
        color: #666;
        text-align: center;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    }

    .ddc-loading {
        font-family: 'Special Elite', monospace;
        color: #ff2c55;
        font-size: 1em;
        text-align: center;
        animation: ddc-pulse 1.5s ease infinite;
    }

    @keyframes ddc-pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }

    .ddc-error {
        color: #ff6b6b;
        font-family: 'Special Elite', monospace;
        text-align: center;
        padding: 20px;
        font-size: 0.9em;
    }