        @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

        :root {
            --primary-color: #4a90e2;
            --secondary-color: #f39c12;
            --background-color: #1a1a1a;
            --text-color: #ffffff;
            --accent-color: #e74c3c;
        }

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

        body {
            font-family: 'Press Start 2P', cursive;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        header {
            text-align: center;
            padding: 40px 0;
            position: relative;
        }

        .logo {
            width: 200px;
            height: auto;
            margin-bottom: 20px;
            image-rendering: pixelated;
        }

        .title {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
        }

        .subtitle {
            font-size: 1.2em;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .store-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
        }

        .store-button {
            width: 200px;
            height: 60px;
            /* background-color: var(--primary-color);
            border: 4px solid var(--text-color); */
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            cursor: pointer;
        }

        .store-button:hover {
            transform: scale(1.05);
        }

        .store-button img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .demo-section {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 60px 0;
            position: relative;
        }

        .phone-container {
            width: 320px;
            height: 640px;
            position: relative;
        }

        .phone-frame {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-image: url('phone.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            z-index: 2;
            pointer-events: none;
        }

        .demo-content {
            width: 87%;
            height: 95%;
            overflow: hidden;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 30px;
            z-index: 1;
        }

        .demo-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

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

        .feature {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 2px solid var(--primary-color);
        }

        .feature h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        footer {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 40px 0;
            margin-top: 60px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-link {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .creator {
            color: var(--secondary-color);
            margin-top: 15px;
            font-size: 0.8em;
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2em;
            }

            .subtitle {
                font-size: 1em;
            }

            .phone-container {
                width: 300px;
                height: 600px;
            }

            .store-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* QR Code Styles */
        .qr-code-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 150px;
            height: auto;
            background-color: rgba(26, 26, 26, 0.9);
            border: 4px solid var(--primary-color);
            border-radius: 15px;
            padding: 15px;
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(74, 144, 226, 0.7);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 20px rgba(74, 144, 226, 0.7);
            }
            50% {
                box-shadow: 0 0 30px rgba(74, 144, 226, 0.9);
            }
            100% {
                box-shadow: 0 0 20px rgba(74, 144, 226, 0.7);
            }
        }

        .qr-code-container:hover {
            transform: scale(1.08);
            box-shadow: 0 0 25px rgba(74, 144, 226, 0.9);
            animation: none;
        }

        .qr-code-image {
            width: 100%;
            max-width: 120px;
            height: auto;
            border-radius: 8px;
            background-color: white;
            padding: 8px;
            image-rendering: pixelated;
        }

        .qr-code-tooltip {
            font-size: 0.55em;
            color: var(--secondary-color);
            margin-bottom: 10px;
            text-align: center;
            white-space: nowrap;
            text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
            animation: neonBlink 2s infinite alternate;
            letter-spacing: 1px;
        }
        
        @keyframes neonBlink {
            0% {
                opacity: 1;
                text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
            }
            90% {
                opacity: 1;
                text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
            }
            92% {
                opacity: 0.5;
                text-shadow: none;
            }
            94% {
                opacity: 1;
                text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
            }
            100% {
                opacity: 0.8;
                text-shadow: 0 0 3px var(--secondary-color), 0 0 8px var(--secondary-color);
            }
        }
        
        /* Hide QR code on mobile devices */
        @media (max-width: 1024px) {
            .qr-code-container {
                display: none;
            }
        }