body {
    background-color: black;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: white;
    -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: black;
    transition: padding 0.3s ease;
    border-bottom: none;
}

.logo {
    max-height: 104px;
    width: auto;
    height: auto;
    max-width: 80%;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tagline {
    font-size: 1rem;
    font-weight: 200;
    margin: 0.5rem 0 0 0;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Navigation Styles */
.main-nav {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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: white;
    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: #FFD700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #FFD700;
    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: #FFD700;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background-color: rgba(255, 215, 0, 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: black;
    margin-top: calc(180px); /* Adjust based on header height */
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.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: 91px;
        max-width: 70%;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .logo-text {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-container {
        height: calc(100vh - 200px);
        margin-top: 160px;
    }
    
    .hero-video {
        width: 100vw;
        height: 100vh;
    }

    .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: 0.8rem;
    }
    
    .logo {
        max-height: 78px;
        max-width: 60%;
    }
    
    .tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .main-nav {
        padding: 0.6rem 0;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: slideIn 0.5s ease 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 {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        text-align: center;
    }

    .nav-menu a:hover {
        background-color: rgba(255, 215, 0, 0.1);
        border-radius: 8px;
    }

    .hero-container {
        height: calc(100vh - 180px);
        margin-top: 140px;
    }
    
    .hero-video {
        width: 100vw;
        height: 100vh;
    }

    .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 {
    background-color: #1a1a1a;
    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: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 200;
}

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

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

.product-col {
    padding: 20px;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem 1rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 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: #FFD700;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.product-description {
    color: #e0e0e0;
    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: #cccccc;
    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: #FFD700;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* 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: rgba(255, 215, 0, 0.9);
    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;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.back-to-top:hover {
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

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

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

/* Services Section */
.services-section {
    background-color: #141414;
    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: #e0e0e0;
    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: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 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;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, rgba(255, 215, 0, 0.3));
    border-radius: 8px 8px 0 0;
}

.service-card.expertise-focused::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.3), #FFD700);
    border-radius: 8px 8px 0 0;
}

.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(255, 215, 0, 0.05);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.03);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: #FFD700;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #FFD700;
    letter-spacing: 1px;
}

.service-card p {
    color: #e0e0e0;
    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: #cccccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.service-features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 0.5rem;
}

@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 {
    background-color: #0d0d0d;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.use-cases-tagline {
    color: #e0e0e0;
    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: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 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(255, 215, 0, 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: 24px;
    height: 24px;
    stroke: #FFD700;
}

.use-case-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #FFD700;
    letter-spacing: 0.5px;
}

.use-case-card p {
    color: #e0e0e0;
    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-image: url('../img/M2-Both-Us-scaled.jpg');
    background-size: cover;
    background-position: center 100px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-intro {
    color: white;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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

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

.pillar:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 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: 32px;
    height: 32px;
    stroke: #FFD700;
}

.pillar h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #FFD700;
    letter-spacing: 1px;
}

.pillar p {
    color: #e0e0e0;
    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: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.about-mission p {
    color: #e0e0e0;
    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: #080808;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

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

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #FFD700;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    color: #FFD700;
    text-decoration: none;
}

.contact-link i {
    font-size: 1.5rem;
}

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

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

    .contact-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

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

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

    .contact-link {
        padding: 0.7rem 1.2rem;
    }

    .contact-link i {
        font-size: 1.3rem;
    }
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    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(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #FFD700;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    color: #FFD700;
    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(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    position: relative;
}

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

.flow-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(255, 215, 0, 0.2);
    left: 0;
}

.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 {
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    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: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: slideForDecision 3s ease-in-out 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: 40px;
    background: rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 0 2rem;
}

.scan-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 215, 0, 0.2);
    position: absolute;
    top: 0;
    animation: scanContent 2s ease-in-out infinite;
}

@keyframes scanContent {
    0% {
        top: 0;
        background: rgba(255, 215, 0, 0.2);
    }
    50% {
        top: 50%;
        background: rgba(255, 215, 0, 0.5);
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }
    100% {
        top: 100%;
        background: rgba(255, 215, 0, 0.2);
    }
}

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

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

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

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

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

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

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