/* Reset and Base Styles */

:root {
    --primary-color: #008cff;
    --secondary-color: #2f26d9;
    --background-color: #0c0c0c;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Glass Effect Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Version Banner */
.version-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 10px 0;
    transform: translateY(-100%);
    animation: slideDownBanner 0.6s ease-out forwards;
    animation-delay: 0.8s;
    box-shadow: 0 4px 20px rgba(0, 140, 255, 0.3);
}

.version-banner.hidden {
    transform: translateY(-100%);
    animation: slideUpBanner 0.5s ease-in forwards;
}

.version-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.version-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.version-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.version-cta {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.version-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.version-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.version-close:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slideDownBanner {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideUpBanner {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0; /* Start at top, will be adjusted when banner appears */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: top 0.4s ease;
    transition-delay: 0.6s; /* Wait for banner animation to complete */
}

.navbar.banner-visible {
    top: 48px; /* Move down when banner is visible - 12px top + 12px bottom + ~24px content */
}

.navbar.banner-hidden {
    top: 0;
    transition-delay: 0s; /* No delay when hiding */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    -moz-text-decoration-style: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.cta-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
}

.cta-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

#hero-scene {
    width: 200%;
    height: 200%;
    opacity: 1;
    position: relative;
    top: -50%;
    left: -50%;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 6px;
}

.hero-card {
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-buy{
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    align-items: center;
    text-align: center;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-icon img {
    filter: brightness(0) invert(1);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 46, 0.3) 100%);
}

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

.feature-card {
    padding: 40px 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
}

.gallery-canvas {
    width: 100%;
    height: 250px;
    display: block;
    border-radius: 20px 20px 0 0;
}

.gallery-info {
    padding: 25px;
}

.gallery-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 46, 0.3) 100%);
}

.pricing-single {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    width: 100%;
}

.pricing-card.featured {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.trial-info {
    font-size: 1.1rem;
    color: #8ba0ff;
    margin-bottom: 30px;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 30px;
}

.coming-soon {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 30px;
}

.pricing-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.pricing-logo img {
    width: 100px;
    height: auto;
    border-radius: 10px;
}

/* Screenshots Section */
.screenshots {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.screenshots-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 40px 0;
}

.screenshot-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 1;
    will-change: transform, opacity;
}

.screenshot-item.slide-in-left {
    animation: slideFromLeft 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.1s;
}

.screenshot-item.slide-in-right {
    animation: slideFromRight 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.2s;
}

.screenshot-item:nth-child(3) {
    animation-delay: 0.6s;
}

.screenshot-item:nth-child(4) {
    animation-delay: 0.8s;
}

.screenshot-item.slide-in-right .app-window {
    order: 2;
}

.screenshot-item.slide-in-right .screenshot-info {
    order: 1;
}

.app-window {
    background: rgba(30, 30, 50, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    position: relative;
    will-change: transform, opacity;
}

.app-window:hover {
    transform: perspective(600px) rotateY(-1deg) scale(1.05) translateX(10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.12);
}

.window-content img,
.window-content video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0 0 8px 8px;
}

.window-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 20, 35, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.window-control.close {
    background: #ff5f57;
}

.window-control.minimize {
    background: #febc2e;
}

.window-control.maximize {
    background: #28c840;
}

.window-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 16px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

@keyframes scaleIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.7);
        opacity: 0;
    }
}

.lightbox-window {
    background: rgba(30, 30, 50, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    will-change: transform, opacity;
}

.lightbox.active .lightbox-window {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 20, 35, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-controls {
    display: flex;
    gap: 8px;
}

.lightbox-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lightbox-control:hover {
    transform: scale(1.1);
}

.lightbox-control.close {
    background: #ff5f57;
}

.lightbox-control.minimize {
    background: #febc2e;
}

.lightbox-control.maximize {
    background: #28c840;
}

.lightbox-image-container {
    position: relative;
    max-height: calc(90vh - 44px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-image,
.lightbox-video {
    max-width: 100%;
    max-height: calc(90vh - 44px);
    object-fit: contain;
}

.lightbox-video {
    display: none;
}

.lightbox.video-mode .lightbox-image {
    display: none;
}

.lightbox.video-mode .lightbox-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-nav-prev {
    left: 16px;
}

.lightbox-nav-next {
    right: 16px;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.slide-in-right .app-window:hover {
    transform: perspective(600px) rotateY(1deg) scale(1.05) translateX(-10px);
}

/* Add click indicator overlay */
.app-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 140, 255, 0.1) 0%, rgba(47, 38, 217, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.app-window:hover::before {
    opacity: 1;
}

.app-window::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.app-window:hover::after {
    opacity: 1;
}

/* Ensure window content doesn't interfere with overlay */
.window-content {
    position: relative;
    z-index: 0;
}

.window-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 40, 0.9) 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
    position: relative;
    transition: all 0.2s ease;
}

.control::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.control:hover::before {
    opacity: 1;
}

.control.close {
    background: #ff5f56;
}

.control.close::before {
    content: '×';
    color: #4a0000;
    font-size: 10px;
    font-weight: bold;
}

.control.minimize {
    background: #ffbd2e;
}

.control.minimize::before {
    content: '−';
    color: #5a4000;
    font-size: 10px;
    font-weight: bold;
}

.control.maximize {
    background: #27ca3f;
}

.control.maximize::before {
    content: '+';
    color: #003a00;
    font-size: 10px;
    font-weight: bold;
}

.window-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

.window-content {
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.window-content::before {
    content: '';
    position: absolute;
    padding: 0px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.window-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 0;
}

.screenshot-info {
    padding: 20px;
}

.screenshot-info h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshot-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

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

.download-card {
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.download-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.platform-section {
    width: 100%;
    max-width: 600px;
}

.platform-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-color);
}

.platform-downloads {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-downloads .btn {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.download-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.download-options .btn {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.btn-accent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ff5252 0%, #d63031 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.download-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0 !important;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.1);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-window {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 40, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-controls {
    display: flex;
    gap: 8px;
}

.lightbox-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.lightbox-control::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lightbox-control:hover::before {
    opacity: 1;
}

.lightbox-control.close {
    background: #ff5f56;
}

.lightbox-control.close::before {
    content: '×';
    color: #4a0000;
    font-size: 10px;
    font-weight: bold;
}

.lightbox-control.close:hover {
    background: #ff3b30;
    transform: scale(1.1);
}

.lightbox-control.minimize {
    background: #ffbd2e;
}

.lightbox-control.minimize::before {
    content: '−';
    color: #5a4000;
    font-size: 10px;
    font-weight: bold;
}

.lightbox-control.maximize {
    background: #27ca3f;
}

.lightbox-control.maximize::before {
    content: '+';
    color: #003a00;
    font-size: 10px;
    font-weight: bold;
}

.lightbox-title {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
    flex: 1;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-image.shrinking {
    transform: scale(0.8);
    opacity: 0.5;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav-prev {
    left: 20px;
}

.lightbox-nav-next {
    right: 20px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .version-banner {
        padding: 8px 0; /* Reduced padding for mobile */
    }
    
    .version-banner-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        text-align: left;
        align-items: center;
    }
    
    .version-info {
        flex: 1;
        min-width: 0;
    }
    
    .version-text {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .version-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .version-cta {
        font-size: 0.75rem;
        padding: 4px 8px;
        white-space: nowrap;
    }
    
    .version-close {
        padding: 4px;
        flex-shrink: 0;
    }
    
    .navbar.banner-visible {
        top: 40px; /* Adjusted for mobile banner height - 8px top + 8px bottom + ~24px content */
    }
    
    .navbar.banner-hidden {
        top: 0;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%; /* Position relative to navbar */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 15px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .cta-link {
        width: 90vw;
        text-align: center;
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    

    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-card {
        padding: 40px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-single {
        max-width: 100%;
    }
    
    .screenshot-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .screenshot-item.slide-in-left,
    .screenshot-item.slide-in-right {
        transform: translateY(80px);
    }
    
    .screenshot-item.visible {
        transform: translateY(0);
    }
    
    .screenshot-item.slide-in-right .app-window,
    .screenshot-item.slide-in-right .screenshot-info {
        order: unset;
    }
    
    .app-window:hover,
    .slide-in-right .app-window:hover {
        transform: scale(1.02);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-buttons {
        width: 100%;
    }
    
    .platform-downloads {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-downloads .btn,
    .download-options .btn,
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav-prev {
        left: 10px;
    }
    
    .lightbox-nav-next {
        right: 10px;
    }
    
    .lightbox-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .gallery-info,
    .pricing-card {
        padding: 25px 20px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Screenshot Animation Keyframes */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-40vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(40vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Fallback for screenshots visibility */
.screenshots .section-header {
    opacity: 1;
    transform: none;
}

.screenshot-item:not(.visible) {
    /* Ensure content is visible even before animation */
    min-height: 400px;
}

.terminal-command {
    word-wrap: normal;
    overflow-x: auto;
    white-space: pre;
    background:rgba(0,0,0,0.7); color:#fff; padding:1rem; border-radius:8px; margin:1rem 0;
}

@media (max-width: 600px) {
    .terminal-command {
        white-space: pre-wrap;
        word-break: break-all;
        overflow-x: auto;
    }
}