
body {
    background-color: transparent; /* Allow particle canvas to show */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #272727;
}
.header {
    padding: 5px 0; /* Reduced padding for a very skinny header */
    min-height: 50px; /* Making header skinnier */
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.card {
    background-color: #2C2F33; /* Grayish background like Discord */
    color: #ffffff; /* White text for better contrast */
    margin: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 300px;
    border-radius: 10px;
    border-left: 5px solid #61dafb; /* Blue tab color */
}
.card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.card .content {
    padding: 2px 16px;
}
.card .title {
    font-size: 18px;
    font-weight: bold;
}
.card .status {
    font-style: italic;
    color: #777;
}
.footer {
    animation: gradient 15s ease infinite;

    text-align: center;
    padding: 20px;
    background-color: #0a183d; /* Dark blue */
    color: #FFD700; /* Yellow/Gold accent */
}

.card img {
    width: 80%; /* Smaller avatar images */
    border-radius: 10px 10px 0 0;
    display: block;
    margin: 0 auto; /* Centering the image */
}

.features-box {
    background-color: #61dafb; /* Dark blue background for the feature box */
    color: #282c34; /* Yellow/Gold text */
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
}

/* Animated gradient background */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header {
    padding: 5px 0; /* Reduced padding for a very skinny header */

    min-height: 50px; /* Making header skinnier */

    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Applying the same gradient animation to the footer as the header */
.footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: white;
    /* Removing duplicate background-color property */
}

/* Stylish and modern font for the header */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
.header {
    padding: 5px 0; /* Reduced padding for a very skinny header */

    min-height: 50px; /* Making header skinnier */

    font-family: 'Roboto', sans-serif;
}

/* Interactive navigation links */
.navbar a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.navbar a:hover {
    color: #a8ecec;
    transform: translateY(-5px); /* Slight lift effect */
}

/* Responsive design for mobile devices */
@media screen and (max-width: 600px) {
    .navbar {
        flex-direction: column;
    }
}

.card:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    border-radius: 10px 0 0 10px; /* Adjust radius to match card */
}
.card {
    position: relative; /* Needed for the absolute positioning of the pseudo-element */
    overflow: hidden; /* Ensures the pseudo-element is contained within the card's border-radius */
    /* Rest of the styles remain unchanged */
}
