/* Product Page Styles */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #222230;
    --accent-cyan: #00d4d4;
    --accent-purple: #00b8b8;
    --accent-gradient: linear-gradient(135deg, #00e5e5 0%, #00c8c8 50%, #00a0a0 100%);
    --accent-glow: rgba(0, 212, 212, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #8a8a9a;
    --border-color: #2a2a3a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 180, 180, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links a.download-btn {
    background: linear-gradient(135deg, #ff5555 0%, #cc4444 100%);
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 85, 0.35);
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,15,0.7) 0%, rgba(10,10,15,0.9) 100%);
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.product-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 212, 0.15);
    border: 1px solid rgba(0, 212, 212, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-badge.free {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.badge-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

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

/* Screenshots Section */
.screenshots-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title svg {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 212, 212, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-item.main {
    grid-column: span 2;
}

.screenshot-item.placeholder {
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.screenshot-item.placeholder:hover {
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.placeholder-content {
    text-align: center;
    color: var(--text-secondary);
}

.placeholder-content svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Purchase Card */
.purchase-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.price-display {
    text-align: center;
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin-right: 10px;
    opacity: 0.6;
    -webkit-text-fill-color: var(--text-secondary);
}

/* Countdown Timer */
.countdown-wrapper {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(255, 20, 147, 0.1) 100%);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.countdown-label {
    font-size: 0.8rem;
    color: #ff69b4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff69b4;
    min-width: 50px;
}

.countdown-unit {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.countdown-separator {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff69b4;
    line-height: 1.2;
}

/* Purchase Buttons - Enhanced */
.purchase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #00e5e5 0%, #00c8c8 50%, #00a0a0 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 212, 0.25);
}

.purchase-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.purchase-btn:hover::before {
    left: 100%;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 212, 0.4);
}

.purchase-btn:active {
    transform: translateY(0);
}

.purchase-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.purchase-btn:hover svg {
    transform: scale(1.05);
}

/* Free Button */
.purchase-btn.free-btn {
    background: transparent;
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
    box-shadow: none;
}

.purchase-btn.free-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #4ade80;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

/* Secondary Button - Outline */
.purchase-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

.purchase-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: none;
}

.features-list {
    list-style: none;
    margin-top: 25px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.features-list li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

/* Video Section */
.video-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
}

.video-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Description Section */
.description-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.description-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.description-content h3 {
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    margin: 25px 0 15px;
    font-size: 1.1rem;
}

.description-content h3:first-child {
    margin-top: 0;
}

.description-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.description-content li {
    margin-bottom: 8px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.status-badge.dev {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Payment Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal.active {
    display: flex;
}

.payment-modal-content {
    background: linear-gradient(180deg, #1a1a24 0%, #14141c 100%);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.payment-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.payment-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.payment-modal-icon svg {
    color: #fff;
}

.payment-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
}

.payment-option:last-child {
    margin-bottom: 0;
}

.payment-option-header {
    margin-bottom: 15px;
}

.payment-option-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.payment-option-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.payment-btn.card-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.payment-btn.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.payment-btn.crypto-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
}

.payment-btn.crypto-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.payment-option-tag {
    display: inline-block; padding: 3px 10px; border-radius: 8px; font-size: 0.65rem;
    font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80; margin-left: 8px; vertical-align: middle;
}

.payment-btn.support-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
}

.payment-btn.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* Tier Selection Modal */
.tier-modal-content {
    background: linear-gradient(180deg, #1a1a24 0%, #14141c 100%);
    border-radius: 24px;
    padding: 40px;
    max-width: 820px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tier-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 212, 0.15);
}

.tier-card-featured {
    border-color: rgba(0, 212, 212, 0.4);
    background: rgba(0, 212, 212, 0.05);
}

.tier-card-featured:hover {
    box-shadow: 0 12px 40px rgba(0, 212, 212, 0.25);
}

.tier-card-upgrade {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.05);
}

.tier-card-upgrade:hover {
    border-color: #a855f7;
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.tier-card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.tier-card-badge.featured {
    background: linear-gradient(135deg, rgba(0, 212, 212, 0.2), rgba(0, 180, 180, 0.2));
    border-color: rgba(0, 212, 212, 0.4);
    color: var(--accent-cyan);
}

.tier-card-badge.upgrade {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(168, 85, 247, 0.4);
    color: #a855f7;
}

.tier-card-upgrade-note {
    font-size: 0.75rem;
    color: #a855f7;
    margin-top: 8px;
    margin-bottom: 4px;
    font-weight: 500;
}

.tier-card-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 14px 0 12px;
}

.tier-card-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.tier-price-old {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.5;
}

.tier-price-current {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tier-card-upgrade .tier-price-current {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tier-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    width: 100%;
    flex-grow: 1;
}

.tier-card-features li {
    padding: 6px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tier-card-features li:last-child {
    border-bottom: none;
}

.tier-card-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #00e5e5 0%, #00c8c8 50%, #00a0a0 100%);
    border-radius: 10px;
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tier-card:hover .tier-card-btn {
    box-shadow: 0 4px 15px rgba(0, 212, 212, 0.3);
}

.tier-card-upgrade .tier-card-btn {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
}

.tier-card-upgrade:hover .tier-card-btn {
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

@media (max-width: 480px) {
    .payment-modal-content {
        padding: 25px 20px;
    }

    .payment-modal-title {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

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

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}
.hamburger-btn span {
    width: 24px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .purchase-card {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 12px 16px;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 24px 20px;
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        border-radius: 10px;
    }

    .nav-links a:hover {
        background: rgba(0, 212, 212, 0.1);
    }

    /* Hero */
    .hero {
        min-height: 45vh;
        padding: 90px 16px 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .badge-group {
        gap: 6px;
        margin-bottom: 14px;
    }

    .product-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    /* Main Content */
    .main-content {
        padding: 0 14px 60px;
    }

    .content-grid {
        gap: 24px;
    }

    /* Screenshots */
    .screenshots-section {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .screenshot-item.main {
        grid-column: span 1;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    /* Purchase Card */
    .purchase-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-old {
        font-size: 1.2rem;
    }

    .countdown-value {
        font-size: 1.4rem;
        min-width: 40px;
    }

    .countdown-separator {
        font-size: 1.4rem;
    }

    /* Buttons - Larger touch targets */
    .purchase-btn {
        padding: 16px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
        min-height: 50px;
    }

    .features-list li {
        padding: 12px 0;
        font-size: 0.9rem;
    }

    /* Video */
    .video-section {
        padding: 20px 16px;
        border-radius: 16px;
        margin-top: 24px;
    }

    /* Description */
    .description-section {
        padding: 20px 16px;
        border-radius: 16px;
        margin-top: 24px;
    }

    .description-content h3 {
        font-size: 1rem;
        margin: 20px 0 12px;
    }

    .description-content p,
    .description-content li {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Payment Modal */
    .payment-modal {
        padding: 12px;
    }

    .payment-modal-content {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .payment-modal-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .payment-modal-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .payment-modal-icon svg {
        width: 26px;
        height: 26px;
    }

    .payment-option {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .payment-btn {
        padding: 14px 20px;
        min-height: 48px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    /* Tier Modal */
    .tier-modal-content {
        padding: 24px 14px;
        border-radius: 18px;
    }

    .tier-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tier-card {
        padding: 22px 18px;
    }

    .tier-card-btn {
        padding: 14px;
        min-height: 48px;
        font-size: 0.9rem;
    }

    .tier-price-current {
        font-size: 1.8rem;
    }

    /* Lightbox */
    .lightbox {
        padding: 16px;
    }

    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 1.6rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    /* Footer */
    .footer {
        padding: 30px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .price {
        font-size: 2rem;
    }

    .countdown-value {
        font-size: 1.2rem;
        min-width: 34px;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }

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

    .tier-price-current {
        font-size: 1.5rem;
    }

    .payment-modal-title {
        font-size: 1.05rem;
    }
}
