body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: sticky;
    top: 0;
    background-color: #000;
    z-index: 100;
    border: 2px solid white;
    border-radius: 25px;
    max-width: 1000px;
    margin: 10px auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 40px;
}

.logo {
    height: 40px;
    pointer-events: none;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #aaa;
}

.logo {
  height: 26px;
  width: auto;
  transform: scale(5.3);
  transform-origin: right center;
  position: relative;
  top: -7px;
  left: 70px;
}

/* footer */

.footer {
    background-color: #000;
    border-radius: 25px;
    margin: 40px 16px 0;
    padding: 24px;
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-in {
  animation: slideUp 0.6s ease-out, fadeIn 1s ease-in;
}

.footer-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    animation: fadeIn 1s ease-in;
}

.footer-content p {
    font-size: 14px;
    margin: 6px 0;
    color: #ccc;
    animation: fadeIn 1s ease-in;
}

.footer-nav,
.footer-connect {
    margin: 12px 0;
    animation: fadeIn 1s ease-in;
}

.footer-nav a,
.footer-connect a {
    margin: 0 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-connect a:hover {
    color: #aaa;
}

.footer-copy,
.footer-credit {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.footer {
  margin-top: auto;
  padding-bottom: 80px;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 40px 0 20px 0;
}

.footer-nav-columns {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.left-column {
  margin-left: 20px;
}

.right-column {
  margin-right: 200px;
  align-items: flex-end;
}

.footer-column a {
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 1rem;
  opacity: 0.9;
}

.footer-content {
  position: relative;
}

.footer-bottom-left {
  position: absolute;
  left: 20px;
  bottom: 20px;
  text-align: left;
}

.footer-bottom-left p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.4;
}

.footer-bottom-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  text-align: right;
}

.footer-bottom-right p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.4;
}

.footer-heading-block {
  position: relative;
  left: 0%;
  top: 65px;
  text-align: left;
  max-width: 400px;
}

.review-frame {
    background-color: #111;
    border: 2px solid white;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s;
}

.review-frame:hover {
    transform: scale(1.03);
}

.review-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.review-author {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}

.review-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-rating span {
    margin-right: 8px;
    font-weight: 600;
}

.star-icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.review-feedback {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
}

.review-botid {
    font-size: 13px;
    color: #aaa;
    margin-top: 12px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    header {
        margin: 10px;
        padding: 10px;
        flex-direction: column;
        align-items: center;
        border-radius: 15px;
    }

    .navbar {
        flex-direction: column;
        padding: 6px 10px;
    }

    nav a {
        margin: 10px 0;
        font-size: 16px;
    }

    .logo {
        transform: scale(3);
        left: 0;
        top: 0;
    }

    .review-frame {
        max-width: 90%;
        padding: 15px;
    }

    .review-title {
        font-size: 18px;
    }

    .review-author,
    .review-feedback,
    .review-botid {
        font-size: 14px;
    }

    .review-rating .star-icon {
        width: 16px;
        height: 16px;
    }

    .footer-nav-columns {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .left-column,
    .right-column {
        margin: 10px 0;
        align-items: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        position: static;
        text-align: center;
        margin-top: 10px;
    }

    .footer-heading-block {
        top: 20px;
        text-align: center;
        max-width: 100%;
        left: 0;
    }

    .logo {
    display: none;
    }
}
