@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 2px #00b3ad, 0 0 5px #00b3ad, 0 0 10px #00b3ad;
    }

    50% {
        box-shadow: 0 0 10px #00b3ad, 0 0 15px #00b3ad, 0 0 20px #00b3ad;
    }

    100% {
        box-shadow: 0 0 2px #00b3ad, 0 0 5px #00b3ad, 0 0 10px #00b3ad;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 179, 173, 0.3), 0 0 10px rgba(0, 179, 173, 0.3);
    }

    100% {
        box-shadow: 0 0 15px rgba(0, 179, 173, 0.7), 0 0 30px rgba(0, 179, 173, 0.7);
    }
}

* {
    margin: 0;
    padding: 0;
    font-family: "Gruppo", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.gruppo-regular {
    font-family: "Gruppo", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: #2e2e2e;
    /* dark grey - you can adjust this */
    color: white;
    /* optional: makes text readable on dark bg */
    font-family: 'Gruppo', sans-serif;
    margin: 0;
    padding: 0;
}


.header {
    /* min-height: 20vh; */
    min-height: 100vh;
    width: 100%;
    background: url(images/smoketex.jpg) no-repeat center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    /* adjust 0.3 - 0.5 depending how visible you want it */
    filter: blur(1px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 30, 0.7), rgba(0, 179, 173, 0.2));
    backdrop-filter: blur(2px);
    z-index: 1;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-top: 20px;
    z-index: 2;
}

nav img {
    width: 140px;
}

.text-box {
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-top: 50px;
}

.text-box h1 {
    font-size: 70px;
    color: #00f0e0;
    text-shadow: 0 0 10px #00f0e0, 0 0 20px #00f0e0;
    animation: fadeSlideDown 1s ease forwards;
    opacity: 0;
    transform: translateY(-30px);
}

.text-box p {
    margin-top: 20px;
    font-size: 20px;
    color: #f4b836;
    animation: fadeSlideUp 1.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 700px) {
    .header {
        min-height: 100vh;
    }
}


.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    position: sticky;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #00b3ad;
    display: block;
    margin: auto;
    transition: width 0.5s ease;
    box-shadow: 0 0 5px #00f0e0, 0 0 10px #00f0e0;
}

.nav-links ul li a:hover {
    color: #00f0e0;
    text-shadow: 0 0 5px #00f0e0, 0 0 10px #00f0e0;
}

.nav-links ul li:hover::after {
    width: 100%;
}


nav .fa-solid {
    display: none;
}

@media(max-width: 700px) {
    .header {
        min-height: 100vh;
    }

    .nav-links {
        position: absolute;
        background: #f4b836;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: right 0.5s ease;
        padding-top: 60px;
        /* Push links down a little */
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        /* <-- Stack them vertically */
        padding: 0;
        margin: 20px;
    }

    .nav-links ul li {
        margin: 20px 0;
    }

    .nav-links ul li a {
        color: #111;
        font-weight: bold;
        text-decoration: none;
        font-size: 18px;
    }

    nav .fa-solid {
        display: block;
        color: #fff;
        margin: 20px;
        font-size: 28px;
        cursor: pointer;
        z-index: 3;
    }

    .text-box h1 {
        font-size: 32px;
    }

    .text-box p {
        font-size: 16px;
    }

}


.section-title.visible {
    opacity: 1;
    transform: translateY(0px);
}

/*---projects---*/

.projects {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: #f4b836;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.projects-col {
    flex-basis: 31%;
    background: #333;
    border-radius: 15px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.projects-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.5);
}

.projects-col h3 a {
    color: #36f4e4;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
}


/*---dividers---*/


.divider {
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgb(160, 115, 1), transparent);
    margin: 60px auto;
    opacity: 0.6;
    border-radius: 5px;
}

/*---games---*/

.games-wrapper {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 179, 173, 0.15));
    padding: 50px 0;
    margin-top: 50px;
    border-radius: 20px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px rgba(0, 179, 173, 0.2);
}

.section-title h1 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 14px;
    color: rgb(160, 115, 1);
    text-align: center;
    margin-bottom: 40px;
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.game-card-link {
    text-decoration: none;
    /* Remove blue underline */
}

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgb(160, 115, 1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 300px;
    height: 400px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 179, 173, 0.2);
    backdrop-filter: blur(2px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    border-radius: 13px;
}

.game-overlay span {
    color: rgb(202, 146, 2);
    text-shadow: 0 0 5px #222, 0 0 10px #222;
    font-size: 28px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(0, 179, 173, 0.8);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card:hover .game-overlay span {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 700px) {
    .games-wrapper {
        width: 90%;
    }

}



/*---popular---*/

.popular-projects {
    width: 90%;
    margin: 80px auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    color: #00b3ad;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00b3ad;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
    animation: fadeInUp 1s ease forwards;
}

.popular-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.project-card {
    background: linear-gradient(160deg, #111, #000);
    border-radius: 20px;
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.project-icon {
    width: 24px;
    height: 24px;
}

.project-title {
    font-size: 20px;
    color: rgb(160, 115, 1);
    text-shadow: 0 0 8px rgb(160, 115, 1);
}

.project-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.project-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: auto;
    text-align: center;
}

.download-btn {
    margin-top: 20px;
    background: #000;
    color: #00b3ad;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.4s;
    font-weight: bold;
}

.download-btn:hover {
    background: #00b3ad;
    color: #000;
    box-shadow: 0 0 10px #00b3ad, 0 0 20px #00b3ad;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px #00b3ad;
}

.project-card.lower {
    margin-top: 50px;
}

.project-card.higher {
    margin-top: 0px;
}



/*---reviews---*/

.reviews {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.row-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.reviews-col {
    background: rgba(160, 115, 1, 0.85);
    /* gold brown */
    border: 2px solid rgba(0, 179, 173, 0.4);
    /* light turquoise outline */
    border-radius: 15px;
    padding: 20px;
    width: 60%;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 10px rgba(0, 179, 173, 0.3);
    transition: 0.4s ease;
}

.reviews-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 179, 173, 0.7);
}

.reviews-col img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #00b3ad;
    object-fit: cover;
}

.reviews-col p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.reviews-col h3 {
    margin: 5px 0 0;
    color: #00f0e0;
    font-size: 18px;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    /* adds clean spacing between cards */
}

.about {
    width: 80%;
    margin: 100px auto;
    text-align: center;
    padding: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 179, 173, 0.3);
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
    /* start hidden */
}

.about h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #00f0e0;
    text-shadow: 0 0 5px #00f0e0, 0 0 10px #00f0e0;
}

.about-content p {
    font-size: 18px;
    color: #f4b836;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}

.features {
    width: 80%;
    margin: 100px auto;
    text-align: center;
}

.features h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #00f0e0;
    text-shadow: 0 0 5px #00f0e0, 0 0 10px #00f0e0;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px 20px;
    width: 250px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(0, 179, 173, 0.3);
}

.feature-card i {
    font-size: 40px;
    color: #f4b836;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 14px;
    color: #ccc;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 179, 173, 0.7);
    background: rgba(0, 0, 0, 0.8);
}

@media(max-width: 700px) {
    .about {
        width: 65%;
    }

    .about h1 {
        font-size: 38px;
    }

}




.footer {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    padding: 30px 0;
    text-align: center;
    margin-top: 100px;
    border-top: 2px solid #00b3ad;
    box-shadow: 0 -5px 20px rgba(0, 179, 173, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer p {
    color: #f4b836;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-icons a {
    color: #00b3ad;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icons a:hover {
    color: #f4b836;
    transform: translateY(-5px) scale(1.2);
}












.welcome {
    width: 50%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
}

.wrapper p {
    font-size: 20px;
}

/*---purple link fix---*/
/* .nav-links ul li a, */
.project-detail a {
    color: #00b3ad;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

/* .nav-links ul li a:visited, */
.project-detail a:visited {
    color: #36f4e4;
}

/*---project card---*/

.project-detail {
    padding: 50px 10%;
    background: rgba(0, 0, 0, 0.3);
    /* Light transparent background */
    margin-top: 50px;
}

.project-detail h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-card {
    position: relative;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s;
    overflow: hidden;
}

.project-card:hover {
    transform: scale(1.05);
    background: #333;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.project-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;

}

.project-card h3 {
    color: #f4b836;
    margin-bottom: 10px;
    font-size: 18px;
}


.project-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #111;
    /* turquoise */
    color: #00b3ad;
    /* black text */
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    font-weight: bold;
    box-shadow: none;
}

.project-btn:hover {
    background: #00b3ad;
    /* slightly darker turquoise */
    color: #000;
    /* on hover, text turns to orange */
    animation: pulseGlow 1.5s infinite alternate;
}

.info-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: #00b3ad;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s ease;
    pointer-events: none;
}

.project-card:hover .info-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    /* now clickable when shown */
}

.info-btn:hover {
    color: #f4b836;
    transform: scale(1.2);
}



/*---donations---*/

.donate-hero {
    text-align: center;
    padding: 150px 20px;
    background: radial-gradient(ellipse at center, rgba(0, 179, 173, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    background-size: cover;
    color: #f4b836;
    text-shadow: 0 0 15px #00b3ad;
    animation: fadeIn 2s ease forwards;
}

.donate-hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.donate-hero p {
    font-size: 22px;
    color: #ddd;
    max-width: 700px;
    margin: auto;
    text-shadow: 0 0 10px #f4b836;
}

.why-support,
.final-thanks {
    text-align: center;
    padding: 80px 20px;
}

.why-support h2,
.final-thanks h2 {
    color: #00b3ad;
    margin-bottom: 20px;
}

.why-support h2 {
    font-size: 40px;
    color: #00b3ad;
    margin-bottom: 20px;
    position: relative;
}

.why-support h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #f4b836;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.why-support p {
    max-width: 800px;
    margin: auto;
    color: #ccc;
    font-size: 18px;
}

.donation-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 60px auto;
}

.donate-link-b {
    text-align: center;
    padding: 20px 40px;
    border: 2px solid #f4b836;
    bottom: 20px;
    display: inline-block;
    background: linear-gradient(145deg, #00b3ad, #00f0e0);
    color: #111;
    padding: 10px 0;
    margin: 8px 0;
    width: 300px;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #00f0e0, 0 0 20px #00b3ad inset;
  }
  
  .donate-link-b:hover {
    background: linear-gradient(145deg, #f4b836, #ffc400);
    color: black;
    box-shadow: 0 0 15px #f4b836, 0 0 25px #f4b836 inset;
    transform: scale(1.05);
  }

  .donate-link-b:active {
    transform: scale(0.95);
  }

.final-thanks {
    padding: 150px 20px;
    background-size: cover;
    color: #f4b836;
    font-size: 22px;
    text-shadow: 0 0 10px #00b3ad;
}


/*---donations---*/

.contact-hero {
    text-align: center;
    padding: 100px 20px 50px 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}

.contact-hero h1 {
    color: #00b3ad;
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00b3ad;
    animation: fadeInDown 1.5s ease forwards;
}

.contact-hero p {
    color: #f4b836;
    font-size: 20px;
    animation: fadeInUp 1.5s ease forwards;
}

.contact-form-section {
    padding: 100px 20px;
    text-align: center;
    background: #1c1c1c;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 40px auto;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 0 30px rgba(0, 179, 173, 0.5);
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #00b3ad;
    border-radius: 15px;
    color: #fff;
    resize: none;
    font-size: 16px;
    font-family: 'Gruppo', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form .btn-send {
    padding: 15px;
    background: #f4b836;
    border: none;
    color: #222;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.2s ease;
}


.contact-form .btn-send:hover {
    background: #00b3ad;
    color: #fff;
    transform: scale(1.05);
}

.nos-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 179, 173, 0.6);
    backdrop-filter: blur(6px);
}

.nos-auth-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.auth-box {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 179, 173, 0.2);
    text-align: center;
}

.auth-box input,
.auth-box button {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Gruppo', sans-serif;
    border-radius: 8px;
    border: none;
    border: 2px solid #00b3ad;
}

.auth-box button {
    background: #00b3ad;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-box button:hover {
    background: #f4b836;
}

.nos-chat-section {
    margin-top: 50px;
}

.section-title-glow {
    font-size: 32px;
    color: rgb(160, 115, 1);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00f0e0;
}

.chat-messages {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    height: 400px;
    overflow-y: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(0, 179, 173, 0.3);
}

.message {
    margin-bottom: 10px;
    background: rgba(0, 179, 173, 0.1);
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.message strong {
    color: #00b3ad;
}

textarea#chatInput {
    width: 98%;
    height: 80px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    resize: none;
    font-family: 'Gruppo', sans-serif;
    background: #1c1c1c;
    color: #fff;
}

.nos-chat-section button {
    background: #00b3ad;
    border: none;
    padding: 10px 30px;
    font-family: 'Gruppo', sans-serif;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

.nos-chat-section button:hover {
    background: #f4b836;
}

.chat-message {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    transition: background 0.3s;
}

.chat-message:hover {
    background: rgba(255, 255, 255, 0.08);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-content {
    flex: 1;
}

.chat-username {
    font-weight: bold;
    color: #00f0e0;
}

.chat-text {
    color: #eee;
}

.chat-timestamp {
    font-size: 10px;
    color: #aaa;
}

.delete-btn {
    background: none;
    border: none;
    color: red;
    font-size: 16px;
    cursor: pointer;
    display: none;
    /* hidden by default */
}

.chat-message.admin .delete-btn {
    display: inline-block;
}



/*--POPUP donation button--*/
.nos-donation-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00b3ad;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 15px #00f0e0;
    z-index: 9999;
    transition: background 0.3s, transform 0.3s;
}

.nos-donation-button:hover {
    background: #f4b836;
    transform: scale(1.1);
}

.nos-donation-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00b3ad;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px #00f0e0;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 9999;
}

.nos-donation-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.popup-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.popup-header .close-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: #f4b836;
    font-size: 20px;
    cursor: pointer;
}

.popup-body {
    text-align: center;
}

.popup-body p{
    height: 60px;
    font-size: 20px;
}

.popup-updates {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .popup-updates h4 {
    color: #f4b836;
    margin-bottom: 8px;
    font-size: 22px;
  }
  
  .popup-updates ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #bbbbbb;
  }
  
  .popup-updates li {
    margin: 5px 0;
  }

  .donate-link {
    bottom: 20px;
    display: inline-block;
    width: 85%;
    background: linear-gradient(145deg, #00b3ad, #00f0e0);
    color: #111;
    padding: 10px 0;
    margin: 8px 0;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #00f0e0, 0 0 20px #00b3ad inset;
  }
  
  .donate-link:hover {
    background: linear-gradient(145deg, #f4b836, #ffc400);
    color: black;
    box-shadow: 0 0 15px #f4b836, 0 0 25px #f4b836 inset;
    transform: scale(1.05);
  }

  .donate-link:active {
    transform: scale(0.95);
  }