#grt-agent-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    font-family: 'Inter', sans-serif;
}

#grt-agent-icon {
    width: 60px;
    height: 60px;
    background:#00A859;
    border-radius: 50%;
    box-shadow: 0px 0px 12px rgba(0,168,89,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

#grt-agent-chatbox {
    width: 320px;
    height: 430px;
    background: #0d0f12;
    border-radius: 12px;
    box-shadow: 0px 0px 24px rgba(0,0,0,.7);
    display:none;
    flex-direction:column;
    overflow:hidden;
}

#grt-agent-header {
    background:#00A859;
    color:#fff;
    padding: 12px;
    font-weight:bold;
    display:flex;
    justify-content:space-between;
}

#grt-agent-messages {
    flex:1;
    padding:12px;
    overflow-y:auto;
    color:white;
    font-size:14px;
}

#grt-agent-input-area {
    padding:10px;
    display:flex;
    gap:5px;
}

#grt-agent-input {
    flex:1;
    padding:8px;
    border-radius:8px;
    border:none;
}

#grt-agent-send {
    background:#00A859;
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
}











.permission-section {
    padding: 60px 0;
}

.accordion-box {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.accordion-header {
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.accordion-header i {
    font-size: 18px;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: #cfd1d4;
    font-size: 14px;
    transition: max-height .3s ease;
}

.accordion-item.active .accordion-body {
    padding: 12px 18px;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}


/* ===== OAuth & Data Safety Accordion ===== */

.oauth-section, .data-section {
  margin-top: 60px;
}

.oauth-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.oauth-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.oauth-accordion .item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: .3s ease;
}

.oauth-accordion .item-header {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.oauth-accordion .item-header i {
  font-size: 18px;
  transition: transform .3s;
}

.oauth-accordion .item.active .item-header i {
  transform: rotate(180deg);
}

.oauth-accordion .item-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1.6;
  transition: max-height .3s ease;
}

.oauth-accordion .item-body p {
  margin-bottom: 10px;
}

.oauth-accordion .item.active .item-body {
  max-height: 400px;
  padding-top: 12px;
  padding-bottom: 14px;
}


/* ============================================================
   FOOTER VERIFIED STAMP
============================================================ */
.footer-stamp {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .85;
}
.footer-stamp img {
  width: 20px;
  height: 20px;
}
.footer-stamp span {
  color: #d6ffd6;
  font-size: 13px;
}

/* ============================================================
   DATA SAFETY SECTION
============================================================ */
.data-safety-section {
  margin: 80px auto;
  text-align: center;
}
.data-safety-section h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #fff;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.safety-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 20px;
  border-radius: 12px;
  transition: .3s;
  text-align: center;
}
.safety-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,255,100,0.25);
}
.safety-item i {
  font-size: 42px;
  color: #00ff99;
  margin-bottom: 12px;
}
.safety-item h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 6px;
}
.safety-item p {
  font-size: 14px;
  color: #cfcfcf;
}

/* ============================================================
   OAUTH SCOPE EXPLANATION SECTION
============================================================ */
.oauth-scope-section {
  margin: 80px auto;
  padding: 30px;
  text-align: center;
}
.oauth-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #fff;
}
.oauth-scope-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.oauth-scope-item {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: .3s ease;
}
.oauth-scope-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0,255,100,0.25);
}
.oauth-scope-item i {
  font-size: 40px;
  color: #00ff99;
  margin-bottom: 12px;
}
.oauth-scope-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.oauth-scope-item p {
  color: #cfcfcf;
  font-size: 14px;
}

/* ============================================================
   GOOGLE VERIFIED BADGE
============================================================ */
.google-verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 12px rgba(0,255,100,0.25);
  backdrop-filter: blur(4px);
  animation: pulseGlow 2.5s infinite ease-in-out;
  cursor: default;
  font-weight: 600;
  font-size: 14px;
  color: #d8ffd8;
}
.google-verify-badge img {
  width: 10px !important;
  height: 10px !important;
  object-fit: contain;
}

/* Google Badge Glow Animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(0,255,100,0.2); }
  50% { box-shadow: 0 0 15px rgba(0,255,100,0.5); }
  100% { box-shadow: 0 0 5px rgba(0,255,100,0.2); }
}

/* ============================================================
   COPY BUTTON ANIMATION
============================================================ */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  animation: showcopied 1.5s ease;
}

/* Copy Animation Keyframe */
@keyframes showcopied {
  0% { opacity: 0; transform: translateX(100%); }
  50% { opacity: 0.7; transform: translateX(40%); }
  70% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; }
}

/* ============================================================
   COOKIE CONSENT BOX
============================================================ */
.cookies-card {
  width: 520px;
  padding: 30px;
  color: hsl(var(--black));
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: hsl(var(--section-bg));
  border-radius: 5px;
}
.cookies-card.hide {
  bottom: -500px !important;
}
.radius--10px {
  border-radius: 10px;
}
.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cookies-card__content {
  margin-bottom: 0;
}
.cookies-card__content a {
  color: hsl(var(--base));
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}
.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

/* ============================================================
   INPUT POPUP VALIDATION INFO
============================================================ */
.hover-input-popup {
  position: relative;
}
.input-popup {
  display: none;
}
.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.input-popup::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
}

/* ============================================================
   (Your Select2, Modal, Payment, and other blocks remain untouched)
   — They are all properly structured and contain no duplicates.
============================================================ */