/* Product Page Styles */
.product-page {
    padding-bottom: 100px;
}

/* Product Hero Section */
.product-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 150px 20px 50px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-hero {
        flex-direction: row;
        justify-content: space-between;
        padding: 150px 50px 50px;
    }
}

.product-hero-content {
    text-align: center;
    z-index: 1;
    max-width: 600px;
}

@media (min-width: 768px) {
    .product-hero-content {
        text-align: left;
        flex: 1;
    }
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.product-hero h1 span {
    color: var(--primary);
    position: relative;
}

.product-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: var(--glow);
}

.product-hero h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
    animation: title-scan 3s linear infinite;
    z-index: 1;
}

@keyframes title-scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.product-tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-secondary);
}

.product-hero-image {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .product-hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
}

/* Device Mockup Base Styles */
.device-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    border-radius: 36px;
    background: linear-gradient(135deg, #020208, #050515);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                inset 0 0 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.5s ease;
    margin: 20px auto;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(800px) rotateY(-5deg);
}

.device-mockup:hover {
    transform: perspective(800px) rotateY(0) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* PC Mockup Base Styles */
.pc-mockup {
    position: relative;
    width: 480px;
    height: 320px;
    background: rgba(2, 2, 8, 0.85);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 
                inset 0 0 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    margin: 20px auto;
    z-index: 2;
}

/* Responsive Mockups */
@media (max-width: 520px) {
    .pc-mockup {
        width: 300px;
        height: 210px;
        transform: perspective(800px) rotateY(-5deg);
    }
    
    .pc-mockup:hover {
        transform: perspective(800px) rotateY(-2deg) translateY(-5px);
    }
    
    .device-mockup {
        width: 220px;
        height: 440px;
        border-radius: 30px;
    }
    
    .device-notch {
        width: 90px;
        height: 20px;
    }
    
    .app-body {
        padding: 10px;
        gap: 10px;
    }
    
    .app-sidebar {
        width: 60px;
        padding: 8px;
    }
    
    .sidebar-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 380px) {
    .pc-mockup {
        width: 260px;
        height: 180px;
        padding: 10px;
    }
    
    .device-mockup {
        width: 200px;
        height: 400px;
        border-radius: 25px;
    }
    
    .app-header {
        padding: 8px 10px;
    }
    
    .app-control {
        width: 8px;
        height: 8px;
    }
    
    .app-title {
        font-size: 0.7rem;
    }
}

.pc-mockup::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 5px 5px;
    z-index: 5;
}

.pc-mockup::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    z-index: 4;
}

.pc-mockup .pc-stand {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    z-index: 3;
}

.pc-mockup .pc-base {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 10px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    z-index: 2;
}

/* Enhanced Screens */
.device-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #000, #050510);
}

.pc-mockup .device-screen {
    border-radius: 5px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.pc-mockup .device-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(to right, rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    opacity: 0.2;
}

/* App UI Components */
.app-ui {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
}

.app-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-controls {
    display: flex;
    gap: 10px;
}

.app-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-control.close {
    background: rgba(255, 0, 0, 0.7);
}

.app-control.minimize {
    background: rgba(255, 255, 0, 0.7);
}

.app-control.maximize {
    background: rgba(0, 255, 0, 0.7);
}

.app-body {
    flex: 1;
    padding: 15px;
    display: flex;
    gap: 15px;
}

.app-sidebar {
    width: 80px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.app-main {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Device Frame and Mobile UI */
.device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 36px;
    padding: 4px;
    box-sizing: border-box;
    overflow: hidden;
}

.device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 16px 16px;
    z-index: 10;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.device-buttons {
    position: absolute;
    right: -3px;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.device-button {
    width: 3px;
    background: rgba(40, 40, 50, 0.95);
    border-radius: 2px 0 0 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.device-button.power {
    height: 50px;
}

.device-button.volume-up, 
.device-button.volume-down {
    height: 40px;
}

/* Mobile Status Bar */
.mobile-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 15px;
    position: relative;
    z-index: 5;
}

.mobile-time {
    font-size: 0.75rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.mobile-icons {
    display: flex;
    gap: 8px;
}

.mobile-icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.mobile-icon.wifi::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(45deg);
}

.mobile-icon.signal::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    left: 2px;
}

.mobile-icon.signal::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    left: 6px;
}

.mobile-icon.battery {
    width: 12px;
    height: 7px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.mobile-icon.battery::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 5px;
    background: var(--primary);
    top: 1px;
    left: 1px;
    border-radius: 1px;
}

.mobile-icon.battery::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    top: 2px;
    right: -3px;
    border-radius: 0 1px 1px 0;
}

/* Mobile App Content */
.mobile-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    flex: 1;
}

.mobile-app-header {
    width: 90%;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.app-header-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* App Icons */
.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 15px;
    position: relative;
    background-size: cover !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.app-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* URL Bar and Status */
.app-url, 
.root-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 20px;
    max-width: 90%;
}

.app-url {
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.url-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    position: relative;
}

.url-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.url-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.root-status {
    background: rgba(0, 200, 0, 0.15);
    border: 1px solid rgba(0, 200, 0, 0.3);
}

.status-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 200, 0, 0.8);
    position: relative;
}

.status-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    border-left: 2px solid rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    transform: rotate(-45deg);
    top: 40%;
    left: 30%;
}

.status-text {
    font-size: 0.75rem;
    color: rgba(0, 220, 0, 1);
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 220, 0, 0.3);
}

/* Mobile Navigation */
.mobile-nav-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 25px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.nav-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

/* Specific Device Styling */
.ios-pc {
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4), 
                inset 0 0 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.4);
}

.ios-pc .app-icon {
    background: url('hyper.png') center center no-repeat !important;
    background-size: cover !important;
    margin: 0 auto 15px;
}

.xiaomi-pc {
    box-shadow: 0 10px 30px rgba(255, 0, 230, 0.4), 
                inset 0 0 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 230, 0.4);
}

.xiaomi-pc .device-screen {
    background: linear-gradient(135deg, #050510, #150015);
    border: 1px solid rgba(255, 0, 230, 0.2);
}

.xiaomi-pc .device-screen::before {
    background-image: 
        linear-gradient(to right, rgba(255, 0, 230, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 0, 230, 0.05) 1px, transparent 1px);
}

.xiaomi-pc .app-header {
    border-bottom: 1px solid rgba(255, 0, 230, 0.3);
}

.xiaomi-pc .app-title {
    color: var(--secondary);
}

.xiaomi-pc .sidebar-icon {
    background: rgba(255, 0, 230, 0.1);
    border: 1px solid rgba(255, 0, 230, 0.3);
}

.xiaomi-pc .app-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 230, 0.1) 0%, transparent 70%);
}

.xiaomi-pc .app-icon {
    background: url('venomauth.png') center center no-repeat !important;
    background-size: cover !important;
    box-shadow: 0 0 20px rgba(255, 0, 230, 0.3);
    margin: 0 auto 15px;
}

.tor-device .app-url {
    border-color: rgba(255, 0, 230, 0.2);
}

.tor-device .url-icon {
    background: var(--secondary);
}

.tor-device .app-header-text {
    color: var(--secondary);
}

.root-device .app-icon {
    background: url('venomroot.png') center center no-repeat !important;
    background-size: cover !important;
}

.tor-device .app-icon {
    background: url('venomtor.png') center center no-repeat !important;
    background-size: cover !important;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.features h2 {
    margin-bottom: 40px;
}

.features h2 span,
.tech-specs h2 span,
.download h2 span {
    color: var(--primary) !important;
}

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

.header-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(5, 5, 15, 0.7);
    border-radius: 5px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.feature-card:nth-child(2) .feature-icon::after {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"></path></svg>');
}

.feature-card:nth-child(3) .feature-icon::after {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"></path></svg>');
}

.feature-card:nth-child(4) .feature-icon::after {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="9" x2="15" y2="15"></line><line x1="15" y1="9" x2="9" y2="15"></line></svg>');
}

.feature-card:nth-child(5) .feature-icon::after {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 16 12 14 15 10 15 8 12 2 12"></polyline><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path></svg>');
}

.feature-card:nth-child(6) .feature-icon::after {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>');
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    letter-spacing: 1px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: var(--font-secondary);
}

/* Tech Specs Section */
.tech-specs {
    padding: 100px 0;
    position: relative;
}

.tech-specs h2 {
    margin-bottom: 40px;
}

.specs-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .specs-container {
        flex-direction: row;
    }
}

.spec-group {
    flex: 1;
    background: rgba(5, 5, 15, 0.7);
    border-radius: 5px;
    padding: 30px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
}

.spec-group h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.spec-group h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
}

.spec-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.spec-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-secondary);
}

.spec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--primary);
}

.spec-list li span {
    color: var(--primary);
    font-weight: 500;
    margin-right: 5px;
    letter-spacing: 1px;
}

/* Download Section */
.download {
    padding: 100px 0;
    position: relative;
}

.download h2 {
    margin-bottom: 40px;
}

.download-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .download-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.download-card {
    flex: 1;
    background: rgba(5, 5, 15, 0.7);
    border-radius: 5px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

.download-card.premium {
    background: linear-gradient(135deg, rgba(5, 5, 15, 0.8), rgba(20, 5, 30, 0.8));
    border: 1px solid rgba(125, 0, 255, 0.3);
}

.download-card.premium:hover {
    box-shadow: 0 10px 30px rgba(125, 0, 255, 0.3);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(125, 0, 255, 0.5);
}

.download-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    letter-spacing: 1px;
}

.download-card.premium h3 {
    color: var(--accent);
}

.download-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.download-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 40px;
}

.download-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-secondary);
}

.download-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
}

.download-card.premium .download-features li::before {
    color: var(--accent);
}

.download-btn {
    width: 100%;
    margin-top: 20px;
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(to right, var(--primary), rgba(0, 240, 255, 0.7));
    color: var(--darker);
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.5);
}

.premium-btn {
    background: linear-gradient(to right, var(--accent), rgba(125, 0, 255, 0.7));
    box-shadow: 0 5px 15px rgba(125, 0, 255, 0.3);
}

.premium-btn:hover {
    box-shadow: 0 8px 25px rgba(125, 0, 255, 0.5);
}

/* Add dynamic screen effects */
.device-screen .dynamic-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 30%, 
        rgba(0, 240, 255, 0.15) 0%, 
        transparent 70%
    );
    opacity: 0;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

.xiaomi-device .dynamic-glow {
    background: radial-gradient(
        circle at 50% 30%, 
        rgba(255, 0, 230, 0.15) 0%, 
        transparent 70%
    );
}

.root-device .dynamic-glow {
    background: radial-gradient(
        circle at 50% 30%, 
        rgba(125, 0, 255, 0.15) 0%, 
        transparent 70%
    );
}

.tor-device .dynamic-glow {
    background: radial-gradient(
        circle at 50% 30%, 
        rgba(0, 150, 255, 0.15) 0%, 
        transparent 70%
    );
}

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

/* Add screen lines animation */
.device-screen .screen-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
    z-index: 2;
}

.screen-lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.5) 2px,
        rgba(0, 240, 255, 0.5) 4px
    );
    animation: screen-lines-animation 10s linear infinite;
}

.xiaomi-device .screen-lines::after {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 230, 0.5) 2px,
        rgba(255, 0, 230, 0.5) 4px
    );
}

.root-device .screen-lines::after {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(125, 0, 255, 0.5) 2px,
        rgba(125, 0, 255, 0.5) 4px
    );
}

.tor-device .screen-lines::after {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 150, 255, 0.5) 2px,
        rgba(0, 150, 255, 0.5) 4px
    );
}

@keyframes screen-lines-animation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Add floating data elements */
.device-screen .data-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    opacity: 0.2;
}

.data-elements::before {
    content: '010101';
    position: absolute;
    top: -100%;
    left: 10%;
    color: var(--primary);
    font-family: monospace;
    font-size: 14px;
    white-space: nowrap;
    animation: data-fall 10s linear infinite;
    animation-delay: 0s;
}

.data-elements::after {
    content: '101010';
    position: absolute;
    top: -100%;
    left: 70%;
    color: var(--primary);
    font-family: monospace;
    font-size: 14px;
    white-space: nowrap;
    animation: data-fall 7s linear infinite;
    animation-delay: 3s;
}

@keyframes data-fall {
    0% {
        top: -100%;
    }
    100% {
        top: 300%;
    }
}

.xiaomi-device .data-elements::before {
    content: '10101010';
    color: var(--secondary);
    animation: data-fall 8s linear infinite;
}

.xiaomi-device .data-elements::after {
    content: '01010101';
    color: var(--secondary);
    animation: data-fall 6s linear infinite;
}

.root-device .data-elements::before {
    content: 'R00T';
    color: var(--accent);
    animation: data-fall 12s linear infinite;
}

.root-device .data-elements::after {
    content: 'ACCESS';
    color: var(--accent);
    animation: data-fall 9s linear infinite;
}

.tor-device .data-elements::before {
    content: 'SECURE';
    color: #0096ff;
    animation: data-fall 15s linear infinite;
}

.tor-device .data-elements::after {
    content: 'PRIVATE';
    color: #0096ff;
    animation: data-fall 11s linear infinite;
}

/* Fix mobile scrolling issues */
@media (max-width: 768px) {
    /* Ensure proper content padding for fixed header */
    .product-hero {
        margin-top: 70px;
        min-height: auto;
        padding: 20px 15px 40px;
    }
    
    /* Fix content positioning */
    .product-hero-content {
        width: 100%;
    }
    
    /* Fix text overflow */
    .product-hero h1 {
        font-size: 2rem;
        word-break: break-word;
        line-height: 1.2;
    }
    
    .product-tagline {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    /* Ensure mockups fit properly */
    .device-mockup, .pc-mockup {
        margin: 30px auto;
        transform: none !important;
    }
    
    .device-mockup:hover, .pc-mockup:hover {
        transform: translateY(-5px) !important;
    }
    
    /* Fix feature section spacing */
    .features {
        padding: 50px 15px;
    }
    
    /* Fix tech specs section */
    .tech-specs {
        padding: 50px 15px;
    }
    
    .spec-group {
        margin-bottom: 30px;
    }
    
    /* Ensure all text is contained */
    .feature-card h3, 
    .spec-group h3, 
    .download-card h3 {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix download section */
    .download {
        padding: 50px 15px;
    }
    
    .download-card {
        padding: 25px 15px;
        width: 100%;
    }
    
    /* Fix dynamic elements that might cause issues */
    .dynamic-glow, 
    .screen-lines, 
    .data-elements {
        pointer-events: none;
        will-change: transform;
    }
}

@media (max-width: 480px) {
    /* Additional fixes for very small screens */
    .product-hero h1 {
        font-size: 1.7rem;
    }
    
    .app-ui {
        overflow: hidden;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .spec-list li {
        font-size: 0.85rem;
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    /* Fix button sizing */
    .download-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Fix for position:fixed and absolute elements that may cause mobile scroll issues */
@media (max-width: 767px) {
    /* Fix for animations that might interfere with scrolling */
    .dynamic-glow,
    .screen-lines,
    .data-elements,
    .device-screen::after,
    .device-screen::before {
        position: absolute;
        backface-visibility: hidden; /* Helps with rendering performance */
    }
    
    /* Fix for the app UI elements that might be disappearing */
    .app-ui {
        height: 100%;
        max-height: 100%;
        overflow: visible;
    }
    
    /* Fix for device mockups */
    .device-mockup, 
    .pc-mockup {
        height: auto;
        min-height: 400px;
        perspective: none;
        transform: none !important;
        transition: transform 0.3s ease;
    }
    
    /* Prevent content overflows */
    .features-grid, 
    .device-screen,
    .app-body,
    .app-main {
        overflow: visible;
    }
    
    /* Fix for animations that might cause performance issues */
    @keyframes data-fall {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(100%);
        }
    }
    
    /* Fix for PC mockup elements that might cause issues */
    .pc-mockup .pc-stand,
    .pc-mockup .pc-base,
    .pc-mockup::before,
    .pc-mockup::after {
        display: none; /* Hide elements that may cause scroll issues */
    }
}

/* Touch optimization */
@media (max-width: 480px) {
    body {
        touch-action: pan-y; /* Only allow vertical scrolling */
    }
    
    .product-hero-image,
    .pc-mockup,
    .device-mockup {
        touch-action: none; /* Prevent any touch interactions with mockups */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    /* Additional fixes for Safari */
    .device-screen,
    .app-ui,
    .app-body {
        -webkit-transform: translateZ(0); /* Force hardware acceleration */
    }
}

/* Enhanced Mobile Responsiveness for Product Pages */

/* Base mobile improvements */
@media (max-width: 768px) {
    .product-hero {
        min-height: 70vh;
        padding: 100px 15px 40px;
        text-align: center;
    }

    .product-hero-content {
        max-width: 100%;
        padding: 0;
    }

    .product-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .product-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .cta-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 25px;
    }

    .neo-button {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Device mockups mobile optimization */
    .device-mockup, 
    .pc-mockup {
        transform: none;
        margin: 30px auto 20px;
        box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    }

    .device-mockup:hover, 
    .pc-mockup:hover {
        transform: translateY(-5px);
    }

    .pc-mockup {
        width: 320px;
        height: 220px;
        padding: 12px;
    }

    .device-mockup {
        width: 240px;
        height: 480px;
        border-radius: 32px;
    }

    /* Features section mobile */
    .features {
        padding: 40px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .feature-card {
        padding: 20px;
        text-align: center;
        margin-bottom: 0;
    }

    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }

    /* Tech specs mobile */
    .tech-specs {
        padding: 40px 15px;
    }

    .specs-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .spec-group {
        padding: 20px;
        margin-bottom: 0;
    }

    .spec-group h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .spec-list li {
        font-size: 13px;
        padding: 8px 0;
        margin-bottom: 5px;
    }

    /* Download section mobile */
    .download {
        padding: 40px 15px;
    }

    .download-options {
        flex-direction: column;
        gap: 20px;
    }

    .download-card {
        padding: 25px 20px;
        margin-bottom: 0;
        text-align: center;
    }

    .download-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .download-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .download-features {
        font-size: 13px;
        margin: 15px 0;
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .download-features li {
        padding: 5px 0;
    }

    .download-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 13px;
        margin-top: 15px;
    }

    .premium-badge {
        font-size: 11px;
        padding: 4px 8px;
        top: 15px;
        right: 15px;
    }

    /* Reduce animations for better performance */
    .dynamic-glow, 
    .screen-lines,
    .data-elements {
        animation-duration: 4s;
    }

    /* App UI mobile adjustments */
    .app-ui {
        transform: scale(0.9);
    }

    .app-header {
        padding: 8px 12px;
        min-height: 35px;
    }

    .app-title {
        font-size: 11px;
    }

    .app-control {
        width: 10px;
        height: 10px;
    }

    .app-body {
        padding: 12px;
        gap: 12px;
    }

    .app-sidebar {
        width: 70px;
        padding: 10px;
    }

    .sidebar-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .app-main {
        padding: 15px;
    }

    .app-icon {
        width: 60px;
        height: 60px;
    }

    /* Mobile status bar adjustments */
    .mobile-status-bar {
        padding: 8px 15px;
        font-size: 12px;
    }

    .mobile-time {
        font-size: 12px;
    }

    .mobile-icon {
        width: 16px;
        height: 12px;
    }

    .mobile-app {
        padding: 20px 15px;
    }

    .mobile-app-header {
        margin-bottom: 15px;
    }

    .app-header-text {
        font-size: 14px;
    }

    .app-name {
        font-size: 16px;
        margin: 10px 0;
    }

    .mobile-nav-bar {
        padding: 12px 0;
    }

    .nav-dot {
        width: 6px;
        height: 6px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .product-hero {
        padding: 90px 10px 30px;
        min-height: 60vh;
    }

    .product-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .product-tagline {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .pc-mockup {
        width: 280px;
        height: 190px;
        padding: 10px;
    }

    .device-mockup {
        width: 200px;
        height: 400px;
        border-radius: 28px;
    }

    .app-ui {
        transform: scale(0.8);
    }

    .app-header {
        padding: 6px 10px;
        min-height: 30px;
    }

    .app-title {
        font-size: 10px;
    }

    .app-control {
        width: 8px;
        height: 8px;
    }

    .app-body {
        padding: 10px;
        gap: 10px;
    }

    .app-sidebar {
        width: 60px;
        padding: 8px;
    }

    .sidebar-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }

    .app-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card {
        padding: 18px 15px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .spec-group {
        padding: 18px 15px;
    }

    .spec-group h3 {
        font-size: 15px;
    }

    .spec-list li {
        font-size: 12px;
        padding: 6px 0;
    }

    .download-card {
        padding: 20px 15px;
    }

    .download-card h3 {
        font-size: 16px;
    }

    .download-features {
        font-size: 12px;
        max-width: 250px;
    }

    .download-btn {
        max-width: 180px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .premium-badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    .mobile-status-bar {
        padding: 6px 12px;
        font-size: 11px;
    }

    .mobile-app {
        padding: 15px 12px;
    }

    .app-header-text {
        font-size: 13px;
    }

    .app-name {
        font-size: 15px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .product-hero h1 {
        font-size: 1.6rem;
    }

    .pc-mockup {
        width: 260px;
        height: 170px;
    }

    .device-mockup {
        width: 180px;
        height: 360px;
        border-radius: 25px;
    }

    .feature-card,
    .spec-group,
    .download-card {
        padding: 15px 12px;
    }

    .neo-button {
        max-width: 250px;
        padding: 12px 20px;
    }

    .download-btn {
        max-width: 160px;
    }
}

/* Touch-friendly improvements for product pages */
@media (hover: none) and (pointer: coarse) {
    .download-btn,
    .premium-btn {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .download-btn:active,
    .premium-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .feature-card:hover,
    .download-card:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
    }

    .device-mockup:hover,
    .pc-mockup:hover {
        transform: translateY(-3px);
    }
}

/* Landscape mobile optimization for product pages */
@media (max-width: 768px) and (orientation: landscape) {
    .product-hero {
        min-height: 90vh;
        padding: 80px 20px 30px;
    }

    .product-hero-content {
        max-width: 500px;
        margin: 0 auto;
    }

    .product-hero h1 {
        font-size: 2.5rem;
    }

    .cta-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .neo-button {
        width: auto;
        min-width: 160px;
    }

    .pc-mockup {
        width: 350px;
        height: 240px;
    }

    .device-mockup {
        width: 220px;
        height: 440px;
    }
}

/* Performance optimizations for mobile product pages */
@media (max-width: 768px) {
    .device-screen .dynamic-glow,
    .device-screen .screen-lines,
    .device-screen .data-elements {
        will-change: transform;
        transform: translateZ(0);
    }

    .pc-mockup::before,
    .pc-mockup::after {
        animation-duration: 6s;
    }

    .device-mockup::before {
        animation-duration: 8s;
    }
}

/* Accessibility improvements for mobile */
@media (prefers-reduced-motion: reduce) {
    .dynamic-glow,
    .screen-lines,
    .data-elements,
    .pc-mockup::before,
    .pc-mockup::after {
        animation: none;
    }

    .device-mockup:hover,
    .pc-mockup:hover {
        transform: none;
    }
}

/* iOS Safari specific fixes for product pages */
@supports (-webkit-touch-callout: none) {
    .download-btn,
    .premium-btn {
        -webkit-appearance: none;
        border-radius: 8px;
    }

    .device-mockup,
    .pc-mockup {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .app-icon,
    .sidebar-icon,
    .feature-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* CPID specific mobile improvements */
.cpid-device .mobile-app {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(125, 0, 255, 0.1));
}

.cpid-device .app-header-text {
    color: var(--primary);
    font-weight: 600;
}

.cpid-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.cpid-status .status-icon {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse-status 2s ease-in-out infinite;
}

.cpid-status .status-text {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .cpid-status {
        padding: 6px 10px;
        margin-top: 12px;
    }

    .cpid-status .status-text {
        font-size: 10px;
    }

    .cpid-status .status-icon {
        width: 6px;
        height: 6px;
    }
}

/* Distributors section mobile improvements for product pages */
@media (max-width: 768px) {
    .distributors {
        padding: 40px 15px;
    }

    .distributors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .distributor-card {
        padding: 20px;
        text-align: center;
    }

    .distributor-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }

    .distributor-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .distributor-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .distributor-details {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }

    .detail-item {
        font-size: 12px;
        justify-content: center;
    }

    .distributor-btn {
        width: 100%;
        max-width: 150px;
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* Section headers mobile optimization */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .neo-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .header-line {
        width: 80px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .neo-heading {
        font-size: 20px;
    }

    .header-line {
        width: 60px;
    }
}