/* Global Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d1117;
    color: #c9d1d9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.header {
    background-color: #161b22;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.header-content {
    max-width: 800px;
    text-align: center;
}

.header-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid #238636;
}

.header-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.header-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #238636;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.header-link:hover {
    background-color: #2ea043;
}

/* Navigation Styles */
.nav {
    background-color: #161b22;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.nav-link {
    padding: 10px 20px;
    background-color: #21262d;
    color: #c9d1d9;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #30363d;
}

/* Content Styles */
.content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offerings {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.offerings-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.offerings-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.offerings-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #238636;
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.offerings-button:hover {
    background-color: #2ea043;
}

.sellers {
    width: 100%;
    margin-bottom: 30px;
}

.sellers-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.sellers-grid {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.seller {
    background-color: #161b22;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .sellers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

.seller:hover {
    transform: scale(1.05);
}

.seller-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.seller-name {
    font-weight: bold;
}
.cursor-glitter {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 9999;
}
