.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: gray;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    color: #333;
}

.card p {
    color: #666;
    font-size: 16px;
}

.card:hover p {
    color: white;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: green;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: 0;
    border-radius: 15px;
}

.card:hover::before {
    transform: scaleY(1);
}

.card * {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.card:hover p,
.card:hover h3 {
    color: white;
}

footer:hover .green {
    color: greenyellow;
}

/* books/ */
.reader-container {
    max-width: 1000px;
    margin: 120px auto 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.book-title {
    margin-top: 0;
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.about-book {
    margin-top: 40px;
    padding: 20px;
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-book h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.about-book p {
    text-align: justify;
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.draft-releases {
    margin-top: 40px;
}

.draft-releases h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.draft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.draft-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.draft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-left: 4px solid green;
}

.draft-card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.draft-card p {
    color: #666;
    font-size: 16px;
}

.loaderIndexlmao {
    width: 200px;
    height: 140px;
    background: #979794;
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
    perspective: 1000px;
}

.loaderIndexlmao:before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius: 8px;
    background: #f5f5f5 no-repeat;
    background-size: 60px 10px;
    background-image: linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0);
    background-position: 15px 30px, 15px 60px, 15px 90px, 105px 30px, 105px 60px, 105px 90px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.loaderIndexlmao:after {
    content: '';
    position: absolute;
    width: calc(50% - 10px);
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius: 8px;
    background: #fff no-repeat;
    background-size: 60px 10px;
    background-image: linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0);
    background-position: 50% 30px, 50% 60px, 50% 90px;
    transform: rotateY(0deg);
    transform-origin: left center;
    animation: movIng 1s linear infinite;
}

@keyframes movIng {
    to {
        transform: rotateY(-180deg);
    }
}

.pdf-frame {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.helping-members {
    margin-top: 40px;
}

.helping-members h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.member-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-left: 4px solid green;
}

.member-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.member-card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.member-card p {
    color: #666;
    font-size: 16px;
}

/* 
more like rejects hahahhahahahhahahah
nvm me this is uhh the movie
*/

.loaderNo {
    width: 64px;
    height: 64px;
    position: relative;
    background: #FFF;
    border-radius: 4px;
    overflow: hidden;
}

.loaderNo:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    transform: rotate(45deg) translate(30%, 40%);
    background: #ff9371;
    box-shadow: 32px -34px 0 5px #ff3d00;
    animation: slide 2s infinite ease-in-out alternate;
}

.loaderNo:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff3d00;
    transform: rotate(0deg);
    transform-origin: 35px 145px;
    animation: beatMe 2s infinite ease-in-out;
}

@keyframes slide {
    0%,
    100% {
        bottom: -35px
    }

    25%,
    75% {
        bottom: -2px
    }

    20%,
    80% {
        bottom: 2px
    }
}

@keyframes beatMe {
    0% {
        transform: rotate(-15deg)
    }

    25%,
    75% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(25deg)
    }
}

/* Footer */
.ibrokemyfoot {
    text-align: center;
    padding: 30px 20px;
    background: #f5e0c3;
    color: #6b401c;
    font-size: 14px;
    margin-top: 60px;
    border-top: 1px solid #dec2a3;
}

/* Banner */
.banner {
    background: linear-gradient(to bottom, #fff, #f9f5ef);
    padding: 60px 20px 30px;
    text-align: center;
    border-bottom: 3px solid #d6b78c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.banner h1 {
    font-size: 3em;
    margin: 0 0 10px;
    color: #a86b32;
}

/* "tasks" */
.tasks-section {
    max-width: 1000px;
    margin: 40px auto;
    background: #fffdf9;
    border: 1px solid #e4d2b4;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.tasks-section h2 {
    margin-top: 0;
    color: #a86b32;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
}

.tasks-section ol {
    padding-left: 20px;
    margin: 0;
    color: #4d3827;
}

.tasks-section li {
    margin-bottom: 20px;
    line-height: 1.6;
}

.tasks-section li strong {
    color: #6b401c;
    font-size: 1.1em;
}

.tasks-section p {
    margin: 8px 0 12px;
    color: #4d3827;
}

.task-button {
    display: inline-block;
    background: #fff8ee;
    color: #a86b32;
    padding: 10px 20px;
    border: 1px solid #e4d2b4;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.task-button:hover {
    background: #f5e0c3;
    color: #6b401c;
    border-color: #c2965b;
    text-decoration: underline;
}