        :root {
            --pixel-green: #5c9d47;
            --retro-orange: #ff8c42;
            --dark-bit: #2a2d34;
            --chef-white: #f8f4e3;
            --screen-blue: #88c9f2;
            --error-red: #ff6b6b;
        }
        
/*        body {
            font-family: 'Courier New', monospace;
            background-color: var(--dark-bit);
            color: var(--chef-white);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background-image: 
                linear-gradient(rgba(42, 45, 52, 0.9), rgba(42, 45, 52, 0.9)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="10" height="10" x="0" y="0" fill="%232a2d34"/><rect width="10" height="10" x="20" y="0" fill="%232a2d34"/><rect width="10" height="10" x="40" y="0" fill="%232a2d34"/><rect width="10" height="10" x="60" y="0" fill="%232a2d34"/><rect width="10" height="10" x="80" y="0" fill="%232a2d34"/><rect width="10" height="10" x="0" y="20" fill="%232a2d34"/><rect width="10" height="10" x="20" y="20" fill="%232a2d34"/><rect width="10" height="10" x="40" y="20" fill="%232a2d34"/><rect width="10" height="10" x="60" y="20" fill="%232a2d34"/><rect width="10" height="10" x="80" y="20" fill="%232a2d34"/><rect width="10" height="10" x="0" y="40" fill="%232a2d34"/><rect width="10" height="10" x="20" y="40" fill="%232a2d34"/><rect width="10" height="10" x="40" y="40" fill="%232a2d34"/><rect width="10" height="10" x="60" y="40" fill="%232a2d34"/><rect width="10" height="10" x="80" y="40" fill="%232a2d34"/><rect width="10" height="10" x="0" y="60" fill="%232a2d34"/><rect width="10" height="10" x="20" y="60" fill="%232a2d34"/><rect width="10" height="10" x="40" y="60" fill="%232a2d34"/><rect width="10" height="10" x="60" y="60" fill="%232a2d34"/><rect width="10" height="10" x="80" y="60" fill="%232a2d34"/><rect width="10" height="10" x="0" y="80" fill="%232a2d34"/><rect width="10" height="10" x="20" y="80" fill="%232a2d34"/><rect width="10" height="10" x="40" y="80" fill="%232a2d34"/><rect width="10" height="10" x="60" y="80" fill="%232a2d34"/><rect width="10" height="10" x="80" y="80" fill="%232a2d34"/></svg>');
        }*/
                body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark);
            color: var(--chef-white);
            margin: 0;
            padding: 0;
            background-image: linear-gradient(rgba(42, 45, 52, 0.9), rgba(42, 45, 52, 0.9)), 
                url('/background.jpeg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            line-height: 1.6;
        }
        /* Header Styling */
        .brand-header {
            background: linear-gradient(135deg, var(--dark-bit), #4a3b2a);
            padding: 2rem 0;
            text-align: center;
            position: relative;
            border-bottom: 8px dotted var(--retro-orange);
        }
        
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }
        
        .pixel-icon {
            width: 50px;
            height: 50px;
            background: var(--pixel-green);
            position: relative;
            image-rendering: pixelated;
        }
        
        .pixel-icon::before {
            content: "";
            position: absolute;
            width: 30px;
            height: 20px;
            background: #7dce6f;
            top: 15px;
            left: 10px;
            transform: rotate(-20deg);
            border-radius: 50% 50% 0 0;
        }
        
        .title-container h1 {
            font-family: 'Press Start 2P', cursive;
            color: var(--chef-white);
            margin: 0;
            font-size: 2.2rem;
            text-shadow: 4px 4px 0 var(--retro-orange);
            letter-spacing: -1px;
        }
        
        .subtitle {
            font-family: 'Courier New', monospace;
            color: var(--retro-orange);
            margin-top: 0.5rem;
            font-size: 1.1rem;
        }
        
        .header-corner {
            position: absolute;
            width: 30px;
            height: 30px;
            background: var(--retro-orange);
        }
        
        .top-left {
            top: 0;
            left: 0;
            clip-path: polygon(0 0, 0% 100%, 100% 0);
        }
        
        .bottom-right {
            bottom: 0;
            right: 0;
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }
        
        .category-title {
            font-family: 'Press Start 2P', cursive;
            color: var(--screen-blue);
            border-bottom: 3px solid var(--retro-orange);
            padding-bottom: 0.5rem;
            margin-top: 3rem;
            font-size: 1.5rem;
        }
        
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .app-card {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--retro-orange);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .app-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 20px rgba(255, 140, 66, 0.3);
        }
        
        .app-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--pixel-green), var(--retro-orange));
        }
        
        .app-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 2px dashed var(--retro-orange);
            image-rendering: pixelated;
        }
        
        .app-content {
            padding: 1.2rem;
        }
        
        .app-title {
            font-family: 'Press Start 2P', cursive;
            color: var(--screen-blue);
            margin: 0 0 0.8rem 0;
            font-size: 1.1rem;
        }
        
        .app-description {
            margin-bottom: 1.5rem;
            color: var(--chef-white);
            font-size: 0.95rem;
        }
        
        .app-link {
            display: inline-block;
            background: var(--retro-orange);
            color: var(--dark-bit);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .app-link:hover {
            background: transparent;
            color: var(--retro-orange);
            border-color: var(--retro-orange);
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 2rem 0;
            background: var(--dark-bit);
            border-top: 8px dotted var(--retro-orange);
            margin-top: 3rem;
            font-family: 'Courier New', monospace;
        }
        
        .footer-text {
            color: var(--chef-white);
            margin: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .title-container h1 {
                font-size: 2.1rem;
                text-align: left; 
            }
            
            .subtitle {
                font-size: 0.9rem;
            }
            
            .apps-grid {
                grid-template-columns: 1fr;
            }
            .pixel-icon {
/*                width: 50px;
                height: 50px;
                background: var(--pixel-green);
                position: relative;
                image-rendering: pixelated;*/
            }
        
             .pixel-icon::before {
                width: 22px;
                height: 20px;
                top: 15px;
                left: 6px;
            }
        }
        
        .language-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            margin-left: 5px;
            transition: background 0.3s;
        }
        
        .language-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .language-btn.active {
            background: rgba(255, 255, 255, 0.4);
            font-weight: bold;
        }
    .language-switcher {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 100;
    }

    .current-language {
        cursor: pointer;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        display: inline-block;
    }

    .language-dropdown {
        display: none;
        position: absolute;
        right: 0;
        background: white;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        min-width: 120px;
    }

    .language-dropdown a {
        display: block;
        padding: 8px 15px;
        color: #333;
        text-decoration: none;
    }

    .language-dropdown a:hover {
        background: #f0f0f0;
    }

    .language-dropdown a.active {
        background: #e0e0e0;
        font-weight: bold;
    }

    .language-switcher:hover .language-dropdown {
        display: block;
    }          
    
            .comment-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 2rem;
            border-radius: 8px;
            border: 2px dashed var(--retro-orange);
            margin-top: 3rem;
        }
        
        .comment-form {
            display: grid;
            gap: 1.5rem;
        }
        
        .form-group {
            display: grid;
            gap: 0.5rem;
        }
        
        .form-label {
            font-family: 'Press Start 2P', cursive;
            color: var(--screen-blue);
            font-size: 0.8rem;
        }
        
        .form-input {
            background: var(--dark-bit);
            border: 2px solid var(--retro-orange);
            padding: 0.8rem;
            color: var(--chef-white);
            font-family: 'Courier New', monospace;
            width: 100%;
        }
        
        .form-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--screen-blue);
        }
        
        .submit-btn {
            background: var(--retro-orange);
            color: var(--dark-bit);
            border: none;
            padding: 1rem;
            font-family: 'Press Start 2P', cursive;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
            justify-self: start;
        }
        
        .submit-btn:hover {
            background: var(--pixel-green);
            transform: translateX(5px);
        }
        
        .comments-container {
            margin-top: 3rem;
            border-top: 2px dotted var(--pixel-green);
            padding-top: 2rem;
        }
        
        .comment {
            background: rgba(255, 140, 66, 0.1);
            padding: 1rem;
            margin: 1rem 0;
            border-left: 3px solid var(--retro-orange);
        }
        
        .comment-author {
            margin: 0 0 0.5rem 0;
            color: var(--pixel-green);
            font-family: 'Courier New', monospace;
            font-weight: bold;
        }
        
        .comment-date {
            margin: 0.5rem 0 0 0;
            font-size: 0.8rem;
            color: var(--screen-blue);
        }
        
        .success {
            color: var(--pixel-green);
            font-family: 'Press Start 2P';
            font-size: 1.2rem;
        }
        
        .error {
            color: var(--error-red);
            font-family: 'Press Start 2P';
            font-size: 0.8rem;
        }
        
 /*   stile  per donazioni*/
.donation-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.language-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8em;
}

.language-selector a {
    margin: 0 3px;
    text-decoration: none;
    color: #666;
}

.language-selector a.active {
    font-weight: bold;
    color: #0070ba;
}

.donation-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.donation-btn {
    padding: 12px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.donation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.donation-btn i {
    margin-right: 8px;
    font-size: 1.2em;
}

.paypal {
    background: #0070ba;
}

.kofi {
    background: #29abe0;
}

.crypto {
    background: #6f42c1;
    border: none;
    cursor: pointer;
    width: 100%;
}
