    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: "Fira Sans", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        color: #ffffff;
    }

    .container {
        max-width: 800px;
        width: 100%;
        backdrop-filter: blur(10px);
        border-radius: 20px;
    }

    .logo-section {
        text-align: center;
        margin-bottom: 40px;
    }

    .name {
        font-size: 1.8rem;
        color: #00dc82;
    }

    .logo-section img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .description {
        text-align: center;
        font-size: 1.3rem;
        line-height: 1.8;
        margin-bottom: 40px;
        color: #ffffff;
    }

    .github-link {
        text-align: center;
        margin-bottom: 40px;
    }

    .github-link a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        background: #1a1a1a;
        color: white;
        text-decoration: none;
        border-radius: 10px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .github-link a:hover {
        border: 1px solid #00dc82;
    }

    .github-icon {
        width: 24px;
        height: 24px;
        fill: white;
    }

    .commands-section {
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .commands-section h2 {
        color: #ffffff;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .command {
        background: rgba(50, 50, 50, 0.5);
        padding: 15px;
        margin: 15px 0;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .command:hover {
        border: 1px solid #00dc82;
    }

    .command-name {
        font-size: 1.5rem;
        font-weight: 600;
        color: #00dc82;
        margin-bottom: 8px;
    }

    .command-desc {
        font-size: 1.3rem;
        color: #cccccc;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .command-code {
        font-size: 1.2rem;
        color: #00dc82;
        background: #1a1a1a;
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
        display: inline-block;
        position: relative;
    }

    .command-code:hover {
        background: rgba(0, 220, 130, 0.1);
    }

    .command-code:hover::after {
        content: 'Click to copy';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: #ffffff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.9rem;
        white-space: nowrap;
        z-index: 10;
    }

    .why-section,
    .contribute-section {
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .why-section h2,
    .contribute-section h2 {
        color: #ffffff;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .why-section p,
    .contribute-section p {
        font-size: 1.2rem;
        color: #cccccc;
        line-height: 1.5;
    }

    .contribute-section a {
        color: #00dc82;
        text-decoration: none;
    }

    .contribute-section a:hover {
        text-decoration: underline;
    }

    .footer {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .author {
        font-size: 1.1rem;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .footer .tagline {
        font-size: 0.95rem;
        color: #cccccc;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .container {
            padding: 30px 20px;
        }

        .description {
            font-size: 1rem;
        }

        .command-name {
            font-size: 1rem;
        }

        .command-desc {
            font-size: 0.85rem;
        }

        .command-code {
            font-size: 0.85rem;
        }

        .command-code:hover::after {
            font-size: 0.8rem;
            padding: 4px 8px;
        }

        .why-section p,
        .contribute-section p {
            font-size: 1rem;
        }
    }