        :root {
            --brand-primary: #fcaf17;
            --brand-hover: #e69a00;
      ;  }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #111827;
			background-image: url("/assets/ha-bkg.png");
			background-image: -webkit-image-set(url("/assets/ha-bkg@1x.webp") 1x, url("/assets/ha-bkg.webp") 2x);
			background-image: image-set(url("/assets/ha-bkg@1x.webp") 1x, url("/assets/ha-bkg.webp") 2x);
            color: #f3f4f6;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            padding: 0;
        }

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

        .container {
            width: 100%;
            max-width: 38rem;
            margin: 0 auto;
            padding: 1.5rem;
            background-color: #1f2937;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        		
        .profile-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo {
            width: 7rem;
            height: 7rem;
            border-radius: 9999px;
            border: 4px solid var(--brand-primary);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transform: scale(1);
            transition-property: transform;
            transition-duration: 300ms;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .title {
            margin-top: 1rem;
            font-size: 2.25rem;
            line-height: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            color: #ffffff;
        }

        .description {
			width: 90%;
            font-size: 0.875rem;
            color: #ffffff;
            text-align: center;
			margin-top: -0.5rem;
        }

        .latest-news-banner {
            width: 100%;
            text-align: center;
			margin-top: -2.5rem;
			margin-bottom: -1rem;
        }

        .latest-news-banner p {
            font-size: 0.875rem;
            font-weight: 300;
            color: #d1d5db;
            font-style: italic;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .image-container {
            width: 100%;
            border-radius: 1rem;
            overflow: hidden;
            background-color: #374151;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .image-full {
            width: 100%;
            object-fit: cover;
			margin-bottom: -5px;
        }

        .products-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

        .product-link {
            display: block;
            border-radius: 0.5rem;
            overflow: hidden;
            transition-property: transform, box-shadow;
            transition-duration: 200ms;
            transform: scale(1);
        }

        .product-link:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .product-image {
            width: 100%;
            min-height: 210px;
            object-fit: cover;
			margin-bottom: -5px;
        }

        .beamer-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

		.brands-image {
			opacity: 0.7;
            object-fit: cover;
			margin-bottom: -5px;
        }
		.brands-grid {
            width: 75%;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 1.5rem;
        }
        .links-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .link-btn {
			color: #ffffff;
			text-decoration: none;
            display: block;
            width: 93%;
            text-align: center;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            font-weight: 600;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transform: translateY(0);
            transition-property: transform, background-color, color;
            transition-duration: 200ms;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        .link-btn:hover {
            transform: translateY(-0.25rem) scale(1.05);
        }

        .link-btn-primary {
            background-color: var(--brand-primary);
            color: #111827;
            font-weight: 800;
        }

        .link-btn-primary:hover {
            background-color: var(--brand-hover);
        }

        .link-btn-secondary {
            background-color: #374151;
        }

        .link-btn-secondary:hover {
            background-color: #4b5563;
        }

        .social-links {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            padding-top: 0.5rem;
        }

        .social-links i {
            color: #9ca3af;
            transition-property: color;
            transition-duration: 200ms;
            font-size: 1.875rem;
            line-height: 2.25rem;
        }

        .social-links i:hover {
            color: var(--brand-primary);
        }

        .flag-emoji {
            margin-top: 0.5rem;
            text-align: center;
            font-size: 3rem;
            line-height: 0;
        }
        
        .qr-code {
			margin-top: -2.5rem;
            width: 6rem;
            height: 6rem;
            border-radius: 0.5rem;
        }

        .qr-text {
            font-size: 0.875rem;
            color: #e5e7eb;
			margin-top: -1rem;
        }
		
        @media (min-width: 768px) {
            .container {
                padding: 2rem;
            }
			.products-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }
		@media screen and (max-width: 520px) {
        	.link-btn {
                width: 86%;
        }
        .social-links {
            gap: 1.2rem;
        }
		.brands-grid {
            width: 95%;
            gap: 1rem;

        }
		 .beamer-grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

		}
