@font-face {
    font-family: "Proxima Nova";
    font-display: swap;
    src: url("http://www.inprodicon.com/wp-content/uploads/et-fonts/proximanova_regular.ttf") format("truetype");
}

:root {
    /* WordPress Preset Colors */
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;

    /* Font Sizes */
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;

    /* Spacing */
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;

    /* Layout */
    --wp--style--global--content-size: 823px;
    --wp--style--global--wide-size: 1080px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #000000;
}

body {
    font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.site-header {
    background-color: #000000;
    padding: 30px 0;
    position: relative;
    z-index: 100;
}

.site-header .container {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    margin-right: auto;
}

.chanzoo-logo {
    text-align: left;
    display: inline-block;
    padding-left: 20px;
}

.chanzoo-img {
    height: 60px;
    width: auto;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #020b18;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

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

.has-dropdown {
    position: relative;
}

.arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 10px;
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    display: block;
    color: #ffffff;
    font-size: 14px;
}

/* Hero Section with Video */
.hero-section {
    background: #000000;
}

.video-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.video-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 5px;
}

.video-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content-section {
    background: #000000;
    padding: 60px 20px 80px;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle .highlight {
    color: #f39c12;
}

.hero-text {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.hero-text:last-of-type {
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background: #f39c12;
    color: #ffffff;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '▶';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e22;
    padding-right: 60px;
}

.btn-primary:hover::after {
    opacity: 1;
    right: 20px;
}

/* Secondary Button (Login) */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 12px 40px;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f39c12;
    color: #f39c12;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    width: 100%;
    max-width: 350px;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        max-width: 100%;
    }
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: #000000;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 80px;
    margin-bottom: 30px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.feature-item h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
}

/* How Section */
.how-section {
    padding: 80px 0;
    background: #000000;
}

.how-section .section-title {
    color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6900;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-item p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}

/* Trial Section */
.trial-section {
    padding: 80px 0;
    background: #020b18;
}

.pricing-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.free-month {
    font-size: 28px;
    font-weight: 600;
    color: #00d084;
}

.then {
    font-size: 18px;
    color: #abb8c3;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #ff6900;
}

.cancel-text {
    font-size: 16px;
    color: #abb8c3;
    margin-bottom: 30px;
}

/* Channels Section */
.channels-section {
    padding: 80px 0;
    background: #000000;
}

.channels-section .section-title {
    color: #ffffff;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.channel-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.channel-card:hover {
    transform: scale(1.05);
}

.channel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.channel-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.channel-card .channel-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

.more-channels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.more-channels img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 0;
    background: #020b18;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.screenshot img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: #000000;
}

.download-section .section-title {
    color: #ffffff;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.app-badge img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.app-badge:hover img {
    transform: scale(1.1);
}

/* Footer */
.site-footer {
    background: #020b18;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: #abb8c3;
    margin-bottom: 15px;
}

.footer-nav {
    font-size: 14px;
}

.footer-nav a {
    color: #abb8c3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff6900;
}

.footer-nav span {
    color: #666;
    margin: 0 10px;
}

.footer-legal {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-legal p {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-background {
        opacity: 0.1;
        right: -200px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
}