:root {
  /* WebifyAI Brand Colors  */
 --bg-main: #0B0E14;
  --neon-green: #00FFA3;
  --purple: #7B61FF;
  --cyan: #00E5FF;

  --text-light: #E6E8EE;
  --text-muted: #9AA4BF;
    --gradient-primary: linear-gradient(
        135deg,
        var(--purple) 30%,
        var(--cyan) 50%,
        var(--neon-green) 10%
    );
 
}

/* Base */
body {
  background-color: var(--bg-main);
  color: var(--text-light);
}

.base-color {

  background: var(--gradient-primary);
    color: #0B0E14;
    border: none;
    font-weight: 600;
}

/* Copy Button */
.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 .3s;
  color: var(--cyan);
}

.copyInput:hover {
  color: var(--neon-green);
  text-shadow: 0 0 8px rgba(0, 255, 163, 0.8);
}

/* Cookies Card */
.cookies-card {
  width: 520px;
  padding: 30px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  border-radius: 10px;

  background: linear-gradient(
    135deg,
    rgba(123, 97, 255, 0.15),
    rgba(0, 229, 255, 0.12)
  );
  color: var(--text-light);
  border: 1px solid rgba(0, 229, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.12);
}

.cookies-card.hide {
  bottom: -500px !important;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;

  background: linear-gradient(
    135deg,
    var(--neon-green),
    var(--cyan), var(--purple)
  );
  box-shadow: 0 0 15px rgba(0, 255, 163, 0.8);
  color: var(--bg-main);
}

/* Buttons */
.cookies-btn {
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    var(--purple),
    var(--cyan),
    var(--neon-green)
  );
  color: #fff;
  transition: all 0.3s ease;
}

.cookies-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.6);
}

/* Tooltip */
.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  padding: 20px;
  transform: translateX(-50%);
  border-radius: 5px;

  background-color: #111521;
  color: #fff;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.15);
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #111521 transparent;
  transform: rotate(180deg);
}

.input-popup p.success::before {
  color: var(--neon-green);
}

.input-popup p.error::before {
  color: #FF4D4F;
}

/* Neon Utility */
.neon-glow {
  box-shadow:
    0 0 10px rgba(0, 255, 163, 0.6),
    0 0 25px rgba(123, 97, 255, 0.4);
}

/* Responsive */
@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

/* ================= ON-CHAIN ACTIONS (PROMINENT) ================= */

.onchain-actions {
    padding: 28px 0;
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--base-color) 18%, transparent),
            color-mix(in srgb, var(--base-color) 8%, transparent)
        ),
        #0B0E14;
    border-bottom: 1px solid color-mix(in srgb, var(--base-color) 45%, transparent);
    position: relative;
}

.contract-copy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 999px;

    background: rgba(255,255,255,0.03);
    border: 1px solid color-mix(in srgb, var(--base-color) 40%, transparent);
    box-shadow: 0 0 25px color-mix(in srgb, var(--base-color) 30%, transparent);

    user-select: text;
}

.contract-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:white;
}

.contract-address {
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;

    /* Fallback */
    color: var(--base-color);

    /* Gradient text */
    background: linear-gradient(
        90deg,
        var(--base-color),
        color-mix(in srgb, var(--base-color) 65%, white)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    user-select: all;
}

.copy-btn {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--base-color);
    background: var(--gradient-primary);
    color: var(--base-color);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.copy-btn:hover {
    background: var(--gradient-primary);
    color: #0B0E14;
    box-shadow: 0 0 18px color-mix(in srgb, var(--base-color) 60%, transparent);
}

.copy-btn.copied {
    background: var(--gradient-primary);
    color: #0B0E14;
}

/* Action buttons */

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: #0B0E14;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px color-mix(in srgb, var(--base-color) 70%, transparent);
}

/* Mobile */
@media (max-width: 767px) {
    .contract-copy {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.base-color,
.action-btn {
    background-size: 200% 200%;
    animation: gradientShift 6s linear infinite;
}
/* ================= TOKENOMICS (SAAS STYLE) ================= */

/* ================= TOKENOMICS ================= */

.tokenomics {
  padding: 120px 20px;
  background: var(--bg-main);
  text-align: center;
}

/* Section Title */

.features-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 70px;

  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */

.feature-card {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 18px;
  padding: 35px 25px;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

/* Glow effect */

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(0, 229, 255, 0.18),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.25);
}

/* Icon */

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  background: var(--gradient-primary);
  color: #0B0E14;
  box-shadow: 0 0 18px rgba(0, 255, 163, 0.7);
}

/* Title */

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

/* Description */

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 768px) {
  .tokenomics {
    padding: 80px 15px;
  }

  .features-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}