  * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            height: 100%;
            margin: 0;
        }

        body {
            background-color: #1c1c1c;
            color: rgb(232, 236, 241);
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
        }

        .wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        header {
            background: linear-gradient(#1c1c1c);
            color: #fff;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            transition: background 0.3s ease-out;
            z-index: 1000;
        }

        header.sticky {
            background: rgba(28, 28, 28, 0.8);
        }

        header img {
            height: 60px;
            margin-left: 20px;
        }

        nav {
            background: linear-gradient(#1c1c1c);
            padding: 0 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: max-height 0.3s ease-out;
            overflow: hidden;
        }

        nav a {
            color: #bec2c7ff;
            text-decoration: none;
            margin: 0 15px;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: rgba(106, 207, 76, 0.8);
        }

        .menu-icon {
            display: none;
            flex-direction: column;
            cursor: pointer;
            margin-right: 20px;
        }

        .menu-icon div {
            width: 25px;
            height: 3px;
            background-color: rgb(232, 236, 241);
            margin: 4px 0;
            transition: 0.4s;
        }

        .mobile-header, .mobile-nav {
            display: none;
        }

        .desktop-header, .desktop-nav {
            display: flex;
        }

        @media (max-width: 768px) {
            .desktop-header, .desktop-nav {
                display: none;
            }
            .mobile-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                position: static;
            }
            .mobile-nav {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .mobile-nav.show-menu {
                display: flex;
                max-height: 500px;
            }
            .mobile-nav a {
                margin: 10px 0;
                text-align: center;
                padding: 15px 0;
                border-top: 1px solid #444;
                display: block;
            }
            .menu-icon {
                display: flex;
            }
        }

        .container {
            text-align: center;
            width: 90%;
            max-width: 800px;
            background-color: #1c1c1c;
            border-radius: 10px;
            padding: 20px;
            margin: 0 auto; /* Center horizontally */
        }

        h1 {
            color: rgba(106, 207, 76, 0.8);
            margin-bottom: 20px;
            font-size: 3em;
        }

         .upload-area {
            border: 2px dashed #388e3c;
            padding: 50px;
            border-radius: 10px;
            margin-top: 50px;
            transition: background-color 0.3s ease;
            margin-bottom: 200px;
            font-size: 2em;
        }

        .upload-area:hover,  {
            background-color: #388e3c;
        color: #fff;  
          }

        .upload-area p, .preview-area img {
            margin: 0;
            padding: 0;
        }

        .upload-area input {
            display: none;
        }

        .preview-area img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .controls {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 20px 0;
            gap: 20px;
        }

        .control-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 45%;
        }

        .control-group label {
            margin-bottom: 10px;
            color: #bec2c7ff;
        }

        .control-group input[type="range"] {
            width: 100%;
        }

        .button-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        button {
            padding: 10px 20px;
            background-color: rgba(106, 207, 76, 0.8);
            color: #1c1c1c;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: rgba(106, 207, 76, 1);
        }

        .color-picker {
            margin-top: 20px;
        }

        .footer-container {
            background-color: #0e0d0d;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        .footer-menu {
            margin-bottom: 10px;
        }

        .footer-menu a {
            color: #fff;
            margin: 0 15px;
            text-decoration: none;
        }

        .footer-menu a:hover {
            text-decoration: underline;
        }

        .footer-social {
            margin-bottom: 10px;
        }

        .footer-social a {
            display: inline-block;
            margin: 0 10px;
            text-decoration: none;
        }

        .footer-social svg {
            vertical-align: middle;
            width: 24px;
            height: 24px;
        }

        .footer-social a:hover svg {
            filter: brightness(0.8);
        }

        .footer-copyright {
            font-size: 0.9em;
        }

        @media (max-width: 600px) {
            .footer-menu a {
                display: block;
                margin: 5px 0;
            }
            .footer-social {
                margin-top: 10px;
            }
            .footer-social a {
                margin: 0 5px;
            }
        }