:root {
            --primary-blue: #59C2D1;
            --accent-orange: #F9B233;
            --dark-text: #333;
            --light-bg: #fdfdfd;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            color: var(--dark-text);
        }

        /* Navigare */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 10%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            font-weight: bold;
        }
		.luckiest-guy-regular {
		  font-family: "Luckiest Guy", cursive;
		  font-weight: 400;
		  font-style: normal;
		}
        .logo, .logo * { 
		  font-family: "Luckiest Guy", cursive;
		  font-weight: 400;
		  font-style: normal;
		  font-size: 45px;
		  color: var(--accent-orange);
    	  text-decoration: none;
        }
        .logo span { color: var(--primary-blue); }

        /* Hero Section */
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(180deg, #fff 0%, #e0f7fa 100%);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--dark-text);
        }

        .hero p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }

        .main-image {
            max-width: 600px;
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        /* Call to Action */
        .cta-container {
            background: white;
            padding: 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .btn-download {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.2s;
        }

        .btn-download:hover {
            transform: scale(1.05);
            background-color: #48b1c0;
        }

        .qr-placeholder {
            width: 60px;
            height: 60px;
            background: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
        }
        
        footer {
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .cta-container { flex-direction: column; border-radius: 20px; }
        }