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;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* 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 */
}

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



/* Tablet Devices */
@media (max-width: 768px) {
    .logo-container {
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .nav-menu {
        gap: 1rem;
    }

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

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

    .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 */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 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);
    }

    .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 {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .hero-container {
        height: calc(100vh - 140px);
    }

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

/* Handle landscape orientation on mobile */
@media (max-height: 480px) and (orientation: landscape) {
    .logo {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 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;
}

.episodes-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);
    }
}

/* 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: white;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.about-text {
    text-align: left;
}

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

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

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

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

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

    .about-intro {
        font-size: 1rem;
        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;
    }
}

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

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

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

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

.merch-cta {
    text-align: center;
    margin-bottom: 3rem;
}

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

.merch-button:hover {
    background-color: #555;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.merch-button i {
    font-size: 1.2rem;
}

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

.merch-item {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.merch-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Responsive adjustments for Merch section */
@media (max-width: 768px) {
    .merch-section {
        padding: 60px 0;
    }
    
    .merch-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .merch-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .merch-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .merch-section {
        padding: 40px 0;
    }
    
    .merch-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .merch-item {
        padding: 1.5rem;
    }
    
    .merch-item h3 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    
    .merch-tagline {
        font-size: 1rem;
    }
    
    .merch-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

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

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

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

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

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

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

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

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

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

.paypal-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paypal-button form {
    margin: 0;
}

.paypal-button input[type="image"] {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.paypal-button input[type="image"]:hover {
    transform: scale(1.05);
}

.donate-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.donate-link img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for Donate section */
@media (max-width: 768px) {
    .donate-section {
        padding: 60px 0;
    }
    
    .donation-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .donate-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .donate-section {
        padding: 40px 0;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .donation-card {
        padding: 1.5rem;
    }
    
    .donation-card h3 {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .donate-tagline {
        font-size: 1rem;
    }
}

/* 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;
}

.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.reddit {
    background: white;
}

.social-link.facebook {
    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;
    }
}



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

.episodes-content {
    max-width: 1600px;
    margin: 0 auto;
}

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

.episodes-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

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

.video-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 100%;
    border: 1px solid #333;
}

.video-item:hover {
    transform: translateY(-5px);
}

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

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    background: #f0f0f0;
}

/* Fallback for when video doesn't load */
.video-wrapper video:not([src]) {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper video:not([src])::after {
    content: "Video Preview";
    color: #666;
    font-size: 0.9rem;
}

.video-title {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    text-align: center;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .episodes-section {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .episodes-tagline {
        font-size: 1rem;
    }
    
    .video-title {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .episodes-section {
        padding: 40px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-title {
        font-size: 1rem;
        padding: 1rem;
    }
} 