/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 453:4 Unexpected "<"
Line 657:8 Comments in CSS use "/* ... */" instead of "//"
Line 686:17 Expected ":"
Line 687:15 Unexpected "("
Line 688:19 Expected ":"
Line 690:19 Unexpected "("
Line 691:29 Expected ":"
Line 695:4 Unexpected "<"

**/
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>FrostView POV Recorder - Winter Edition</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        /* Shopify-Compatible CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f0f7ff 0%, #a0d2eb 100%);
            color: #494d5f;
            line-height: 1.6;
            min-height: 100vh;
        }

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

        header {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 50, 0.1);
            border-bottom: 2px solid #a0d2eb;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 800;
            font-size: 24px;
            color: #8458B3;
            display: flex;
            align-items: center;
        }

        .logo i {
            color: #5cd6d6;
            margin-right: 8px;
        }

        .logo span {
            color: #494d5f;
        }

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

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #494d5f;
            font-weight: 600;
            font-size: 16px;
        }

        .nav-links a:hover {
            color: #8458B3;
        }

        .cart-icon {
            position: relative;
            font-size: 20px;
            color: #8458B3;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #5cd6d6;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 11px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
        }

        .hero {
            padding: 60px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .hero h1 {
            font-size: 36px;
            font-weight: 700;
            color: #494d5f;
            margin-bottom: 15px;
        }

        .hero h1 span {
            color: #8458B3;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #8458B3 0%, #5cd6d6 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(132, 88, 179, 0.3);
            border: none;
            cursor: pointer;
        }

        .product-display {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .features {
            padding: 60px 0;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            margin: 30px 0;
        }

        .section-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 40px;
            color: #494d5f;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature-card {
            background-color: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 50, 0.1);
        }

        .feature-icon {
            font-size: 32px;
            color: #8458B3;
            margin-bottom: 15px;
        }

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

        .specs {
            padding: 60px 0;
        }

        .specs-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .specs-list {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }

        .specs-image {
            flex: 1;
            min-width: 300px;
        }

        .specs-list ul {
            list-style: none;
        }

        .specs-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .specs-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #5cd6d6;
            font-size: 20px;
            font-weight: bold;
        }

        .specs-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .purchase-section {
            padding: 60px 0;
            background-color: white;
            border-radius: 20px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 50, 0.1);
        }

        .purchase-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .purchase-image {
            flex: 1;
            min-width: 300px;
        }

        .purchase-details {
            flex: 1;
            min-width: 300px;
            padding-left: 30px;
        }

        .price {
            font-size: 36px;
            font-weight: 800;
            color: #8458B3;
            margin-bottom: 15px;
        }

        .price span {
            font-size: 20px;
            color: #494d5f;
            text-decoration: line-through;
            margin-left: 8px;
        }

        .product-options {
            margin-bottom: 20px;
        }

        .option {
            margin-bottom: 12px;
        }

        .option label {
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }

        .option select {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 2px solid #a0d2eb;
            font-size: 14px;
            color: #494d5f;
        }

        .quantity {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .quantity button {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: none;
            background-color: #a0d2eb;
            color: #494d5f;
            font-size: 18px;
            cursor: pointer;
        }

        .quantity input {
            width: 50px;
            text-align: center;
            font-size: 18px;
            border: none;
            background: transparent;
            margin: 0 10px;
            color: #494d5f;
            font-weight: bold;
        }

        footer {
            background-color: #494d5f;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #a0d2eb;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
        }

        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
        }

        .social-icons {
            display: flex;
            margin-top: 15px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 8px;
            color: white;
            font-size: 16px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 13px;
        }

        /* Shopify-Compatible Media Query */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }
            
            .nav-links {
                margin-top: 15px;
            }
            
            .nav-links li {
                margin-left: 10px;
                margin-right: 10px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero-content, .hero-image, .specs-list, .specs-image, .purchase-details, .purchase-image {
                padding: 0;
                margin-bottom: 30px;
            }
            
            .hero {
                padding: 40px 0;
            }
            
            .features, .specs, .purchase-section {
                padding: 40px 0;
            }
            
            .purchase-details {
                padding-left: 0;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <div class="container header-content">
            <div class="logo">
                <i class="fas fa-snowflake"></i> Frost<span>View</span>
            </div>
            <ul class="nav-links">
                <li><a href="#home">Home</a></li>
                <li><a href="#features">Features</a></li>
                <li><a href="#specs">Specs</a></li>
                <li><a href="#purchase">Buy Now</a></li>
                <li>
                    <a href="#">
                        <i class="fas fa-shopping-cart cart-icon">
                            <span class="cart-count">1</span>
                        </i>
                    </a>
                </li>
            </ul>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero" id="home">
        <div class="container hero-content">
            <div class="hero-text">
                <h1>Capture Your World with <span>FrostView POV</span></h1>
                <p>The ultimate ice-themed screen recorder for content creators. Record in stunning clarity with our winter-inspired design and powerful features.</p>
                <a href="#purchase" class="cta-button">Get Yours Now <i class="fas fa-arrow-right"></i></a>
            </div>
        </div>
        <div class="hero-image">
            <div class="product-display">
                <!-- Simple product representation -->
                <div style="width: 100%; max-width: 300px; margin: 0 auto; background: linear-gradient(135deg, #5cd6d6, #8458B3); border-radius: 50%; padding: 40px; position: relative;">
                    <div style="width: 100px; height: 100px; background: #222; border-radius: 50%; margin: 0 auto; position: relative;">
                        <div style="width: 50px; height: 50px; background: #555; border-radius: 50%; position: absolute; top: 25px; left: 25px;"></div>
                        <div style="width: 20px; height: 20px; background: #85e3ff; border-radius: 50%; position: absolute; top: 40px; left: 40px;"></div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="features" id="features">
        <div class="container">
            <h2 class="section-title">FrostView Features</h2>
            <div class="features-grid">
                <div class="feature-card">
                    <div class="feature-icon">
                        <i class="fas fa-snowflake"></i>
                    </div>
                    <h3>Ice-Cool Design</h3>
                    <p>Winter-themed aesthetic with frosty blue and purple colors that stand out.</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon">
                        <i class="fas fa-video"></i>
                    </div>
                    <h3>4K Recording</h3>
                    <p>Capture your screen in stunning 4K resolution with crystal clear detail.</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon">
                        <i class="fas fa-battery-full"></i>
                    </div>
                    <h3>Long Battery Life</h3>
                    <p>1.5V Li-Po battery ensures hours of continuous recording.</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon">
                        <i class="fas fa-bolt"></i>
                    </div>
                    <h3>Fast Charging</h3>
                    <p>2.0Amp USB charger for quick power-ups.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Specifications Section -->
    <section class="specs" id="specs">
        <div class="container">
            <h2 class="section-title">Technical Specifications</h2>
            <div class="specs-content">
                <div class="specs-list">
                    <ul>
                        <li>1.5V Li-Po Battery for extended recording</li>
                        <li>3.7V Lithium Polymer Battery technology</li>
                        <li>2.0Amp USB Charger included</li>
                        <li>Up to 8 hours recording time</li>
                        <li>4K resolution at 60fps</li>
                        <li>Built-in noise cancellation</li>
                        <li>Compact, lightweight (85g)</li>
                        <li>Windows, Mac, and Linux compatible</li>
                    </ul>
                </div>
                <div class="specs-image">
                    <!-- Simple placeholder image -->
                    <div style="width: 100%; height: 300px; background: linear-gradient(135deg, #a0d2eb, #8458B3); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px;">
                        POV Screen Recorder
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Purchase Section -->
    <section class="purchase-section" id="purchase">
        <div class="container">
            <h2 class="section-title">Get Your FrostView POV Recorder</h2>
            <div class="purchase-content">
                <div class="purchase-image">
                    <div class="product-display">
                        <div style="width: 100%; max-width: 250px; margin: 0 auto; background: linear-gradient(135deg, #8458B3, #5cd6d6); border-radius: 50%; padding: 30px;">
                            <div style="width: 80px; height: 80px; background: #222; border-radius: 50%; margin: 0 auto; position: relative;">
                                <div style="width: 40px; height: 40px; background: #555; border-radius: 50%; position: absolute; top: 20px; left: 20px;"></div>
                                <div style="width: 15px; height: 15px; background: #85e3ff; border-radius: 50%; position: absolute; top: 32px; left: 32px;"></div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="purchase-details">
                    <div class="price">$129.99 <span>$159.99</span></div>
                    <p style="margin-bottom: 20px;">Save $30 with our winter special offer!</p>
                    
                    <div class="product-options">
                        <div class="option">
                            <label for="color">Choose Color:</label>
                            <select id="color">
                                <option>Frost Blue</option>
                                <option>Glacier Purple</option>
                                <option>Ice White</option>
                            </select>
                        </div>
                        
                        <div class="option">
                            <label for="package">Package:</label>
                            <select id="package">
                                <option>Basic (Recorder + Charger)</option>
                                <option>Pro (Recorder + Charger + Case)</option>
                                <option>Ultimate (Recorder + Charger + Case + 64GB Card)</option>
                            </select>
                        </div>
                    </div>
                    
                    <div class="quantity">
                        <button id="decrease-qty">-</button>
                        <input type="text" id="quantity" value="1" readonly>
                        <button id="increase-qty">+</button>
                    </div>
                    
                    <button class="cta-button" id="add-to-cart">
                        <i class="fas fa-shopping-cart"></i> Add to Cart
                    </button>
                    
                    <p style="margin-top: 15px; font-size: 14px;"><i class="fas fa-shipping-fast"></i> Free shipping | 30-day guarantee</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-column">
                    <h3>FrostView</h3>
                    <p>The ultimate POV screen recorder with winter-inspired design.</p>
                    <div class="social-icons">
                        <a href="#"><i class="fab fa-facebook-f"></i></a>
                        <a href="#"><i class="fab fa-twitter"></i></a>
                        <a href="#"><i class="fab fa-instagram"></i></a>
                    </div>
                </div>
                <div class="footer-column">
                    <h3>Quick Links</h3>
                    <ul>
                        <li><a href="#home">Home</a></li>
                        <li><a href="#features">Features</a></li>
                        <li><a href="#specs">Specifications</a></li>
                        <li><a href="#purchase">Store</a></li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>Support</h3>
                    <ul>
                        <li><a href="#">Contact Us</a></li>
                        <li><a href="#">FAQ</a></li>
                        <li><a href="#">Shipping Info</a></li>
                    </ul>
                </div>
            </div>
            <div class="copyright">
                <p>&copy; 2023 FrostView POV Recorder. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        // Simple JavaScript for Shopify compatibility
        document.getElementById('increase-qty').addEventListener('click', function() {
            const quantityInput = document.getElementById('quantity');
            let currentValue = parseInt(quantityInput.value);
            quantityInput.value = currentValue + 1;
            updateCartCount();
        });
        
        document.getElementById('decrease-qty').addEventListener('click', function() {
            const quantityInput = document.getElementById('quantity');
            let currentValue = parseInt(quantityInput.value);
            if (currentValue > 1) {
                quantityInput.value = currentValue - 1;
                updateCartCount();
            }
        });
        
        document.getElementById('add-to-cart').addEventListener('click', function(e) {
            e.preventDefault();
            const quantity = document.getElementById('quantity').value;
            const color = document.getElementById('color').value;
            const package = document.getElementById('package').value;
            
            updateCartCount(parseInt(quantity));
            
            alert(`Added ${quantity} FrostView POV Recorder (${color}, ${package}) to your cart!`);
        });
        
        function updateCartCount(additional = 0) {
            const cartCount = document.querySelector('.cart-count');
            if (cartCount) {
                let currentCount = parseInt(cartCount.textContent) || 0;
                
                if (additional > 0) {
                    cartCount.textContent = currentCount + additional;
                }
            }
        }
    </script>
</body>
</html>