body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000;
    color: #e5e7eb;
    min-height: 100vh;
}
body::-webkit-scrollbar {
display: none;
background: transparent;
}
body::-webkit-scrollbar-track {
    display: none;
    background: transparent;
}
body::-webkit-scrollbar-thumb {
    display: none;
    background: transparent;
}
body::-webkit-scrollbar-button {
    display: none;
    background: transparent;
}
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #000;
}

main {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6.5rem 1rem 4rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width: 640px) {
    main {
    padding: 6.5rem 1.5rem 4rem;
    }
}
@media (min-width: 1024px) {
    main {
    padding: 6.5rem 2rem 4rem;
    }
}
.heading {
    font-size: 1.875rem;
    font-weight: bold;
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 3rem;
    z-index: 0;
}
.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    max-width: 70%;
    margin: 0 auto;
}
.item-card {
    background: transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    margin: 0 auto;
    border: 2px solid snow;
    z-index: 0;
}
.item-card img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
    border-bottom: 1px solid snow;
}
.item-card img:hover {
    filter: brightness(1);
}
.item-card-content {
    background: transparent;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.item-card-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.item-card-content p {
    flex-grow: 1;
    color: #d1d5db;
    margin-bottom: 1rem;
}
.item-card-content a {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.3s ease;
}
.item-card-content a:hover {
    color: #3b82f6;
    text-decoration: underline;
}
.item-text-content {
    font-family: inter;
    display: flex;
    width: 80%;
    height: auto;
    padding-left: 20px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 2px solid snow;
    background: transparent;
    backdrop-filter: blur(12px);
    border-radius: 10px;
    margin-top: 15px;
    justify-content: center;
}
.item-text-content a {
    color: #60a5fa;
}