        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #050a0f; 
            background: radial-gradient(circle at center, #1a1a2e 0%, #050a0f 100%);
            color: #e0e0e0;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        a {
            color: #4da6ff;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .wrapper {
			max-width: 900px;
			width: 95%;
			margin: 50px auto;
			padding: 40px;
			background-color: rgba(0, 0, 0, 0.6); 
			border: 1px solid rgba(255, 255, 255, 0.1); 
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
		}

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
		

        .me-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .me-text h1 {
            margin: 0;
            font-size: 2rem;
            letter-spacing: 1px;
        }

        .me-text p {
            margin: 0;
            opacity: 0.7;
            font-size: 0.9rem;
        }
		
		.me-logo {
			width: 60px;
			height: 60px;
			object-fit: contain;
			display: block;
		}

		.me-logo:hover {
			filter: drop-shadow(0 0 8px rgba(77, 166, 255, 0.5));
			transition: filter 0.3s ease;
		}

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            padding: 0;
        }

        nav ul li a {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
            color: #fff;
        }

		.main-section {
			margin-bottom: 30px;
			padding-bottom: 20px;
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

        .grid-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
        }

        h3 {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
            margin-top: 20px;
			font-size: 1.4rem;
        }

        .item-list {
            list-style: none;
            padding: 0;
        }

        .item-list li {
            margin-bottom: 18px;
            line-height: 1.5;
            display: flex;
            gap: 12px;
        }

        .icon {
            font-size: 1.2rem;
            min-width: 25px;
        }
		
		.88x31buttons {
			margin-top: 30px;
		}

		.88x31buttons-grid {
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
			padding: 10px 0;
		}

		.88x31buttons-grid img {
			image-rendering: pixelated;
			transition: transform 0.1s ease-in-out;
			display: block;
		}

		.88x31buttons-grid a:hover img {
			transform: scale(1.05);
			outline: 1px solid #4da6ff;
		}

        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr;
            }
            header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
        }