:root {
  --green: #19b84f;
  --green-light: #7ee3a1;
  --green-lighter: #baf0cf;
  --text-dark: #111;
  --text-muted: #666;
}

* {
    margin: 0;
    padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #fff;
}

.verification-section {
  display: flex;
  min-height: 420px;
  width: 100%;
  margin: 50px 0;
}

/* LEFT PANEL */
.verification-left {
  background: var(--green);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 40px 20px;
}

.check-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
}

.circle-outer,
.circle-middle,
.circle-inner {
  position: absolute;
  border-radius: 50%;
}

.circle-outer {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
  top: 0;
  left: 0;
}

.circle-middle {
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.25);
  top: 25px;
  left: 25px;
}

.circle-inner {
  width: 90px;
  height: 90px;
  background: #fff;
  top: 45px;
  left: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-inner svg {
  width: 40px;
  height: 40px;
}

.verification-left h1 {
  font-size: 34px;
  font-weight: 400;
  margin: 0;
}

.verification-left h1 strong {
  font-weight: 700;
}

/* RIGHT PANEL */
.verification-right {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verification-right p {
  margin: 0 0 20px;
  color: var(--text-dark);
  font-size: 18px;
}

.verification-right .label {
  font-weight: 700;
  margin-top: 15px;
}

.verification-right .value {
  font-size: 18px;
  color: var(--text-muted);
  word-break: break-all;
}

.powered-by {
  font-size: 14px;
  color: #9a9a9a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.powered-by strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
}

.powered-by strong::first-word {
  color: red;
}

/* AMBER red + GROUP gray */
.powered-by strong {
  color: #5b5b5b; /* GROUP */
}

.powered-by span {
  color: #ed1c24; /* AMBER */
}
/* NOT GENUINE OVERRIDES */
.not-genuine .verification-left {
  background: #ff3b30;
  font-weight: 700;
}

.not-genuine .circle-outer {
  background: rgba(255, 255, 255, 0.25);
}

.not-genuine .circle-middle {
  background: rgba(255, 255, 255, 0.4);
}

.not-genuine .circle-inner {
  background: #fff;
}

.not-genuine h1 strong {
  font-weight: 700;
}

/* LINKS */
.verification-right a {
  color: #000;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .verification-section {
    flex-direction: column;
  }

  .verification-right {
    padding: 30px 20px;
  }

  .verification-left h1 {
    font-size: 28px;
    text-align: center;
  }
}


.site-header {
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
}

.site-header h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-header .brand {
  color: #ed1c24; /* Amber Red */
  font-style: italic;
  margin-right: 10px;
}

.site-header .tagline {
  color: #5b5b5b;
  font-weight: 600;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header h1 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}



.site-footer {
  background: #f5f5f5;
  padding: 70px 20px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo img {
  width: 90px;
  margin-bottom: 25px;
}

.footer-text {
  color: #9a9a9a;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-text a {
  color: #9a9a9a;
  text-decoration: none;
}

.footer-social {
  margin-top: 40px;
}

.footer-social a {
  display: inline-block;
  margin: 0 15px;
  font-size: 18px;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-text {
    font-size: 13px;
    letter-spacing: 2px;
  }
}
