body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    /* background: linear-gradient(135deg, #1c1c1c, #2a2a2a); */
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

main {
    overflow-y: auto;
    overflow: -moz-scrollbars-none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    /* overflow: hidden !important; */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 24px;
    font-weight: 600;
}

.menu button {
    padding: 8px 16px;
    margin: 0 5px;
    border: none;
    background: transparent;
    color: #00ff00;
    cursor: pointer;
    font-size: 14px;
}

.menu button.active {
    color: #ffff00;
    font-weight: 600;
    text-decoration: underline;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

.project-card {
    background-color: rgba(44, 44, 44, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.2);
}

.skeleton-card {
    background-color: rgba(44, 44, 44, 0.8);
    border-radius: 12px;
    padding: 15px;
    height: 150px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.repo-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.repo-name {
    font-size: 18px;
    font-weight: 600;
    color: #00ff00;
    text-decoration: none;
}

.description {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stats {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.stats span {
    margin-right: 15px;
}

.built-by {
    margin-top: 10px;
}

.dev-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 5px;
}

footer {
    text-align: center;
    padding: 2px;
    background: transparent;
    border-top: 1px solid #333;
    color: #999;
}