body {
    background-color: white;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.logo-container {
    padding: 1.5rem 1rem;
    background-color: white;
    transition: padding 0.3s ease;
    border-bottom: none;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    max-height: 120px;
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* Navigation Styles */
    .main-nav {
        background-color: white;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    .main-nav .container {
        position: relative;
    }

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-menu li {
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.nav-menu a:hover {
    color: #333;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #333;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    padding: 15px;
    z-index: 1002;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-toggle span {
    display: block;
    width: 32px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background-color: rgba(0, 230, 230, 0.1);
}

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

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

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

.hero-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 240px); /* Adjusted for nav */
    overflow: hidden;
    background-color: white;
    margin-top: calc(180px); /* Adjust based on header height */
}

@media (max-width: 768px) {
    .hero-container {
        height: 60vh;
        margin-top: calc(140px);
    }
}

@media (max-width: 480px) {
    .hero-container {
        height: 50vh;
        margin-top: calc(120px);
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Pixel Tells Animation */
.pixel-tells-container {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    height: 50%;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.pixel-tells {
    position: absolute;
    width: 50%;
    height: auto;
    bottom: -100%;
    animation: rollUp 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes rollUp {
    0% {
        bottom: -100%;
        opacity: 0;
    }
    25% {
        bottom: -75%;
        opacity: 0.2;
    }
    50% {
        bottom: -50%;
        opacity: 0.4;
    }
    75% {
        bottom: -25%;
        opacity: 0.6;
    }
    90% {
        bottom: -10%;
        opacity: 0.8;
    }
    100% {
        bottom: 0;
        opacity: 0.9;
    }
}

/* Tablet Devices */
@media (max-width: 768px) {
    .logo-container {
        padding: 1rem;
    }
    
    .logo {
        max-height: 90px;
        width: auto;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .hero-container {
        margin-top: calc(140px);
        height: 60vh;
    }

    .hero-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    .product-logo {
        height: 100px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .product-card h3 {
        font-size: 1.4rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .logo-container {
        padding: 1rem 0.5rem;
        margin-bottom: 60px;  /* Add space for the menu */
    }
    
    .logo {
        max-height: 70px !important;
        width: auto;
    }

    .main-nav {
        padding: 0;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 90px;  /* Position below the logo */
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 150px;  /* Adjust to account for new menu position */
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 2rem 1rem;
        gap: 1.5rem;
        justify-content: flex-start;
        align-items: center;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
        animation: fadeIn 0.3s ease-out;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideIn 0.5s ease-out forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
        font-weight: 200;
        color: white;
    }

    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        transition: all 0.3s ease;
        color: white;
    }

    .hero-container {
        margin-top: calc(120px);
        height: 50vh;
    }

    .hero-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    .pixel-tells {
        width: 80%;
    }

    .product-logo {
        height: 80px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper display on very small screens */
@media (max-width: 320px) {
    .logo {
        max-height: 60px !important;
        width: auto;
    }
    
    .hero-container {
        height: calc(100vh - 140px);
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .pixel-tells {
        width: 80%;
    }
}

/* Handle landscape orientation on mobile */
@media (max-height: 480px) and (orientation: landscape) {
    .logo {
        max-height: 50px !important;
        width: auto;
    }
    
    .hero-container {
        height: calc(100vh - 120px);
    }
}

/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Products Section */
.products-section {
    display: none;
    /* background-color: #f5f5f5;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center; */
}

.section-title {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 200;
}

.about-section .section-title {
    color: white;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333;
}

.products-row {
    margin: 0;
    display: flex;
    align-items: stretch;
}

.product-col {
    padding: 20px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-logo {
    text-align: center;
    margin-bottom: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-logo img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    width: auto;
}

.product-card h3 {
    color: #333;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.product-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 300;
    padding: 0 0.5rem;
}

.product-features {
    list-style: none;
    padding: 0 0.5rem;
    margin: 0;
}

.product-features li {
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
}

.product-features li::before {
    content: '•';
    color: #333;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-card {
        margin-bottom: 2rem;
    }

    .product-logo {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .product-logo {
        height: 80px;
    }
}

/* Sticky Header */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #444;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

@media (max-width: 480px) {
    .hero-container {
        margin-top: calc(120px);
        height: calc(100vh - 180px);
    }

    .hero-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
}

/* Services Section */
.services-section {
    display: none;
    /* background-color: white;
    padding: 80px 0;
    position: relative;
    z-index: 1; */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-tagline {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.service-card {
    background-color: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.product-focused::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00e6e6, rgba(0, 230, 230, 0.3));
}

.service-card.expertise-focused::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 230, 230, 0.3), #00e6e6);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card.product-focused:hover {
    background-color: rgba(0, 230, 230, 0.05);
}

.service-card.expertise-focused:hover {
    background-color: rgba(0, 230, 230, 0.03);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #00e6e6;
    stroke-width: 1;
}

.service-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.service-features li::before {
    content: '•';
    color: #333;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .services-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .services-tagline {
        font-size: 1rem;
    }
}

/* Use Cases Section */
.use-cases-section {
    display: none;
    /* background-color: #f5f5f5;
    padding: 80px 0;
    position: relative;
    z-index: 1; */
}

.use-cases-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.use-cases-tagline {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.use-case-category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 1rem;
}

.category-logo {
    max-height: 60px;
    width: auto;
    opacity: 0.9;
}

.use-case-card {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-card:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 230, 230, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.use-case-icon {
    width: 40px;
    height: 40px;
}

.use-case-icon svg {
    width: 100%;
    height: 100%;
    stroke: #00e6e6;
}

.use-case-card h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.use-case-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Responsive adjustments for Use Cases */
@media (max-width: 992px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .use-case-category {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .use-cases-section {
        padding: 60px 0;
    }

    .use-cases-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .category-logo {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .use-cases-section {
        padding: 40px 0;
    }

    .use-case-card {
        padding: 1.25rem;
    }

    .use-case-icon {
        width: 32px;
        height: 32px;
    }

    .use-case-card h3 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .use-case-card p {
        font-size: 0.95rem;
    }

    .use-cases-tagline {
        font-size: 1rem;
    }

    .category-logo {
        max-height: 40px;
    }
}

/* About Section */
.about-section {
    background-color: black;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .row {
    margin: 0;
}

.about-content .col-md-6 {
    padding: 0;
}

.about-image {
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    background-color: black;
}

.about-image img {
    max-width: 130%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    color: white;
    min-height: 100%;
}

.about-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-intro:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-text {
        padding: 1.5rem;
        text-align: center;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-image {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .about-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 230, 230, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
    stroke: #00e6e6;
}

.pillar h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pillar p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.about-mission {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.about-mission p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Responsive adjustments for About section */
@media (max-width: 992px) {
    .about-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-intro {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .pillar-icon {
        width: 50px;
        height: 50px;
    }

    .about-mission {
        padding: 1.5rem;
    }

    .about-mission p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .pillar {
        padding: 1.5rem;
    }

    .pillar h3 {
        font-size: 1.1rem;
    }

    .about-mission {
        padding: 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.subscribe-wrap {
    margin-top: 2rem;
}

.subscribe-button {
    background: black;
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subscribe-button:hover {
    background: rgba(0, 0, 0, 0.85);
}

.subscribe-panel {
    margin-top: 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
    z-index: 1100; /* ensure inputs are interactable above overlays */
    pointer-events: auto !important;
    overflow: visible !important;
}

/* Ensure Constant Contact embed captures pointer events and fills space */
.ctct-inline-form {
    min-height: 160px;
    pointer-events: auto !important;
}

.ctct-inline-form iframe,
.ctct-inline-form form {
    width: 100% !important;
    min-height: 140px !important;
    pointer-events: auto !important;
    display: block !important;
}

/* Constant Contact widget styling - comprehensive fallback */
.ctct-inline-form {
    width: 100%;
    min-height: 160px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ctct-inline-form * {
    box-sizing: border-box;
}

.ctct-inline-form form {
    display: flex !important;
    align-items: stretch;
    gap: 0.75rem;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.ctct-inline-form .ctct-form-field,
.ctct-inline-form .ctct-form-element {
    flex: 1 1 auto;
    margin: 0 !important;
}

.ctct-inline-form input[type="email"],
.ctct-inline-form input[type="text"][name="email"],
.ctct-inline-form .ctct-form-field input,
.ctct-inline-form input {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 44px !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 6px !important;
    padding: 0 12px !important;
    font-size: 1rem !important;
    background: white !important;
    color: black !important;
    font-family: 'Inter', sans-serif !important;
    margin: 0 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1101 !important;
    position: relative !important;
}

.ctct-inline-form input[type="email"]:focus,
.ctct-inline-form input[type="text"][name="email"]:focus,
.ctct-inline-form .ctct-form-field input:focus {
    outline: none !important;
    border-color: black !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

.ctct-inline-form button[type="submit"],
.ctct-inline-form .ctct-form-button,
.ctct-inline-form input[type="submit"] {
    flex: 0 0 auto !important;
    height: 44px !important;
    padding: 0 16px !important;
    background: black !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 300 !important;
    margin: 0 !important;
}

.ctct-inline-form button[type="submit"]:hover,
.ctct-inline-form .ctct-form-button:hover,
.ctct-inline-form input[type="submit"]:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Hide any error messages or extra elements that might interfere */
.ctct-inline-form .ctct-form-error,
.ctct-inline-form .ctct-form-message {
    display: none !important;
}

/* Make it stack on narrow screens */
@media (max-width: 480px) {
    .ctct-inline-form form {
        flex-wrap: wrap !important;
    }
    .ctct-inline-form button[type="submit"],
    .ctct-inline-form .ctct-form-button,
    .ctct-inline-form input[type="submit"] {
        width: 100% !important;
        margin-top: 0.5rem !important;
    }
}

/* Stories Hero Image - Centered */
.stories-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.stories-hero-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Newsletter form layout: input left, button right */
.newsletter-form .form-group {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.email-input {
    flex: 1 1 auto;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0 12px;
    font-size: 1rem;
    background: white;
    color: black;
}

.email-input:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.subscribe-btn {
    flex: 0 0 auto;
    height: 44px;
    padding: 0 16px;
    background: black;
    color: white;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subscribe-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.8);
}

.subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Make it stack on narrow screens */
@media (max-width: 480px) {
    .newsletter-form .form-group {
        flex-wrap: wrap;
    }
    .subscribe-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Stories Link Section */
.stories-link-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 600px;
}

.stories-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    color: black;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.stories-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: black;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.stories-link i {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .stories-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    color: #333;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.social-link.linkedin {
    background: white;
}

.social-link.imdb {
    background: white;
}

.social-link.instagram {
    background: white;
}

/* Responsive adjustments for Contact section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-text {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Footer */
.footer {
    background-color: white;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .footer {
        padding: 1.2rem 0;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

.product-cta {
    margin-top: 2rem;
    text-align: center;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background-color: rgba(0, 230, 230, 0.1);
    border: 1px solid rgba(0, 230, 230, 0.2);
    border-radius: 8px;
    color: #00e6e6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: rgba(0, 230, 230, 0.2);
    transform: translateY(-2px);
    color: #00e6e6;
    text-decoration: none;
}

.demo-button i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .demo-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .demo-button i {
        font-size: 1rem;
    }
}

/* MediaCellar Flow Animation */
.file-flow-demo {
    height: 180px;
    position: relative;
    overflow: hidden;
    margin: 1rem 0 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 0.8rem;
}

.source-container {
    position: absolute;
    left: 0;
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.source {
    width: 30px;
    height: 30px;
    background: rgba(0, 230, 230, 0.1);
    border: 1px solid rgba(0, 230, 230, 0.2);
    border-radius: 6px;
    position: relative;
}

.file-stream {
    position: absolute;
    left: 25%;
    width: 45%;
    height: 100%;
}

.flow-line {
    position: absolute;
    height: 1px;
    background: rgba(0, 230, 230, 0.1);
    width: 100%;
}

.flow-line:nth-child(1) { top: 25%; }
.flow-line:nth-child(2) { top: 50%; }
.flow-line:nth-child(3) { top: 75%; }

.moving-file {
    position: absolute;
    width: 8px;
    height: 10px;
    background: #00e6e6;
    border-radius: 2px;
    animation: moveToRepository 3s linear infinite;
    opacity: 0;
}

.file-stream .moving-file:nth-child(4) { 
    top: calc(25% - 5px);
    animation-delay: 0s;
}
.file-stream .moving-file:nth-child(5) { 
    top: calc(50% - 5px);
    animation-delay: 1s;
}
.file-stream .moving-file:nth-child(6) { 
    top: calc(75% - 5px);
    animation-delay: 2s;
}
.file-stream .moving-file:nth-child(7) { 
    top: calc(25% - 5px);
    animation-delay: 1.5s;
}
.file-stream .moving-file:nth-child(8) { 
    top: calc(50% - 5px);
    animation-delay: 2.5s;
}
.file-stream .moving-file:nth-child(9) { 
    top: calc(75% - 5px);
    animation-delay: 0.5s;
}

.repository {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 90px;
    background: rgba(0, 230, 230, 0.1);
    border: 1px solid rgba(0, 230, 230, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.search-indicator {
    width: 70%;
    height: 2px;
    background: rgba(0, 230, 230, 0.2);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.search-progress {
    position: absolute;
    width: 30%;
    height: 100%;
    background: #00e6e6;
    border-radius: 1px;
    animation: searchMove 2s ease-in-out infinite;
}

@keyframes searchMove {
    0% { left: -30%; }
    100% { left: 100%; }
}

@keyframes moveToRepository {
    0% { 
        left: 0;
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% { 
        left: 100%;
        opacity: 0;
        transform: translateY(-10px) scale(0.5);
    }
}

/* Responsive adjustments for the animation */
@media (max-width: 992px) {
    .file-flow-demo {
        height: 150px;
    }

    .source {
        width: 25px;
        height: 25px;
    }

    .repository {
        width: 50px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .file-flow-demo {
        height: 120px;
        margin: 1rem 0 1.5rem;
    }

    .moving-file {
        width: 6px;
        height: 8px;
    }
}

/* Lolita Animations */
.moderation-demo {
    height: 80px;
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 0.8rem;
}

.content-item {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 230, 0.2);
    position: absolute;
    border-radius: 8px;
    animation: slideForDecision 3s linear infinite;
}

@keyframes slideForDecision {
    0% { 
        left: 0;
        opacity: 0;
        transform: scale(0.8);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    40% { 
        left: 40%;
        transform: scale(1);
    }
    60% { 
        transform: scale(1.1);
        background: rgba(0, 230, 230, 0.3);
    }
    80% { 
        transform: scale(1);
        background: rgba(0, 230, 230, 0.2);
    }
    100% { 
        left: 100%;
        opacity: 0;
        transform: scale(0.8);
    }
}

.ai-scan {
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 0 2rem;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(0, 230, 230, 0.5);
    animation: scanContent 2s infinite;
    box-shadow: 0 0 8px rgba(0, 230, 230, 0.5);
}

@keyframes scanContent {
    0% { 
        top: 0;
        opacity: 0.3;
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 12px rgba(0, 230, 230, 0.8);
    }
    100% { 
        top: 100%;
        opacity: 0.3;
    }
}

/* Responsive adjustments for Lolita animations */
@media (max-width: 992px) {
    .moderation-demo {
        height: 70px;
    }

    .content-item {
        width: 50px;
        height: 50px;
    }

    .ai-scan {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .moderation-demo {
        height: 60px;
        margin: 0.8rem 0;
    }

    .content-item {
        width: 40px;
        height: 40px;
    }

    .ai-scan {
        height: 60px;
        margin: 0 0 1.5rem;
    }

    .scan-line {
        height: 1px;
    }
}

/* Projects Section */
.projects-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.projects-content {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-content .row {
    margin: 0;
}

.projects-content .col-md-6 {
    padding: 0;
}

.project-image {
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    background-color: black;
}

.project-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.project-image img:hover {
    transform: scale(1.02);
}

.project-description {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    color: white;
    min-height: 100%;
}

.project-description h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-description p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    align-self: flex-start;
    margin-top: 1rem;
}

.learn-more-btn:hover {
    background-color: #f0f0f0;
    color: black;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.humaneering-features {
    margin-top: 2rem;
}

.humaneering-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.humaneering-features li {
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.humaneering-features li::before {
    content: '•';
    color: #00e6e6;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive adjustments for Projects section */
@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }

    .project-description {
        padding: 1.5rem;
        text-align: center;
    }

    .project-description h3 {
        font-size: 1.5rem;
    }

    .project-description p {
        font-size: 1rem;
    }

    .project-image {
        padding: 1rem;
    }

    .learn-more-btn {
        align-self: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 40px 0;
    }

    .project-description {
        padding: 1rem;
    }

    .project-description h3 {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .project-description p {
        font-size: 0.95rem;
    }

    .learn-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Zugzwang Section */
.zugzwang-section {
    background-color: black;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.zugzwang-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.zugzwang-content {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.zugzwang-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.video-item {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 100%;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .zugzwang-section {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .zugzwang-section {
        padding: 40px 0;
    }
    
    .video-grid {
        gap: 1rem;
    }
}

/* Cinema Page Specific Styles */
.zugzwang-description {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.zugzwang-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crew-credits {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
}

.crew-credits h3 {
    color: black;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.crew-credits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crew-credits li {
    color: black;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.crew-credits strong {
    font-weight: 500;
    color: black;
}

/* PDF Section Styles */
.pdf-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.pdf-section h3 {
    color: black;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.password-form {
    margin-bottom: 1.5rem;
}

.password-input {
    width: 100%;
    max-width: 300px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background: white;
    color: black;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.password-input::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.password-input:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.password-btn {
    background: black;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.password-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.pdf-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pdf-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.pdf-link:hover {
    background: rgba(0, 0, 0, 0.1);
    color: black;
    text-decoration: none;
    transform: translateY(-2px);
}

.pdf-link i {
    color: black;
    font-size: 1.2rem;
}

/* Support Section Styles */
.support-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.support-section h3 {
    color: black;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.support-link:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.support-link i {
    font-size: 1.2rem;
}

/* Video Section Styles */
.video-section {
    margin-top: 3rem;
}

.video-section h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
    text-align: center;
}

.video-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: center;
}

/* Side-by-side layout for credits and support */
.credits-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.credits-support-grid .crew-credits,
.credits-support-grid .support-section {
    margin: 0;
}

/* Responsive adjustments for cinema page */
@media (max-width: 768px) {
    .zugzwang-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .credits-support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .crew-credits,
    .pdf-section,
    .support-section {
        margin: 1.5rem 1rem;
        padding: 1.5rem;
    }
    
    .crew-credits h3,
    .pdf-section h3,
    .support-section h3 {
        font-size: 1.2rem;
    }
    
    .password-input {
        max-width: 100%;
    }
    
    .support-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .zugzwang-text {
        font-size: 1rem;
    }
    
    .crew-credits,
    .pdf-section,
    .support-section {
        margin: 1rem 0.5rem;
        padding: 1rem;
    }
    
    .crew-credits h3,
    .pdf-section h3,
    .support-section h3 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    
    .crew-credits li {
        font-size: 0.9rem;
    }
    
    .pdf-link {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .support-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
} 

/* Mobile hero image adjustments - ensure consistent cropping and height */
@media (max-width: 768px) {
    .hero-container {
        height: 50vh; /* ensure consistent banner height on tablets/phones */
        margin-top: calc(120px);
    }
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center; /* prioritize top of image on mobile */
    }
}

@media (max-width: 480px) {
    .hero-container {
        height: 40vh; /* smaller banner on small phones */
        margin-top: calc(120px);
    }
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
}