	/*AMAZON  AFFILIATE CLICKANERD-20 */
	/*AMAZON  GOOGLE CHROME INTEGRATION */
	/*COPYRIGHT 2025 NERDSOFT LLC*/
	
	/* ================= GLOBAL ================= */
    *{box-sizing:border-box;margin:0;padding:0}
    body{
      font-family:'Roboto','Segoe UI',Tahoma,Verdana,sans-serif;
      background:url("../images/banner.jpg") no-repeat center center fixed;
      background-size:cover;
      min-height:100vh;
      line-height:1.6;
      color:#333;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      background-color:rgba(90,56,30,0.8);
      z-index:-1;
    }

    /* ================= HEADER ================= */
    #header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 18px;
      background:rgba(0,0,0,0.7);
      backdrop-filter:blur(8px);
      border-bottom:1px solid rgba(255,255,255,0.1);
      box-shadow:0 3px 15px rgba(0,0,0,0.5);
      position:sticky;
      top:0;
      z-index:1000;
    }

    #header .logo-bar img{
      height:70px;
      cursor:pointer;
      filter:drop-shadow(0 0 8px rgba(0,212,255,0.6))
             drop-shadow(0 0 25px rgba(0,212,255,0.4));
      animation:neonPulse 4s infinite alternate;
      transition:transform .4s, filter .4s;
    }
    #header .logo-bar img:hover{
      transform:scale(1.08);
      filter:drop-shadow(0 0 20px rgba(0,255,255,0.9))
             drop-shadow(0 0 40px rgba(0,255,255,0.7));
    }

    @keyframes neonPulse{
      0%{filter:drop-shadow(0 0 8px rgba(0,255,255,.5))
                drop-shadow(0 0 20px rgba(0,255,255,.3))}
      50%{filter:drop-shadow(0 0 18px rgba(0,255,255,.8))
                drop-shadow(0 0 40px rgba(0,255,255,.6))}
      100%{filter:drop-shadow(0 0 12px rgba(0,255,255,.6))
                 drop-shadow(0 0 25px rgba(0,255,255,.4))}
    }

    /* ================= MENU TOGGLE ================= */
    .menuToggle{
      cursor:pointer;
      color:#fff;
      font-weight:bold;
      letter-spacing:1px;
      display:flex;
      align-items:center;
      gap:6px;
      user-select:none;
    }
    .menuToggle .icon{font-size:22px;line-height:1}
    .menuToggle .label{font-size:12px;opacity:.85}

    /* ================= SLIDE MENU ================= */
    #menu{
      position:fixed;
      top:0;
      right:-320px;
      width:300px;
      height:100vh;
      background:#111;
      border-left:1px solid #333;
      box-shadow:-10px 0 30px rgba(0,0,0,0.9);
      padding:90px 18px 20px;
      transition:right .35s ease;
      z-index:2000;
    }
    #menu.active{right:0}
    #menu ul{list-style:none}
    #menu a{
      display:block;
      padding:10px 6px;
      color:#4db8ff;
      text-decoration:none;
      font-size:15px;
      border-bottom:1px solid rgba(255,255,255,0.08);
    }
    #menu a:hover{background:rgba(77,184,255,0.1)}
    .menu-label{
      font-size:11px;
      letter-spacing:1px;
      color:#888;
      text-transform:uppercase;
    }
    .menu-divider{
      height:1px;
      background:#333;
      margin:12px 0;
    }

    /* Overlay */
    body.menu-open::after{
      content:"";
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.55);
      z-index:1500;
    }

    /* ================= PAGE ================= */
    .page-offset{padding-top:100px}

    .search-box{
      background:#fff;
      padding:30px 50px 40px;
      border-radius:20px;
      box-shadow:0 10px 35px rgba(0,0,0,0.35);
      text-align:center;
      max-width:900px;
      margin:50px auto;
    }

    .partner-graphic img{max-width:280px}

    .search-bar{display:flex;justify-content:center;margin-bottom:20px}
    .search-box input[type="text"]{
      flex:1;height:50px;padding:0 16px;
      border-radius:8px 0 0 8px;
      border:1px solid #bbb;font-size:16px;
    }
    .search-box button{
      background:#ff9900;color:#fff;
      border:none;border-radius:0 8px 8px 0;
      padding:0 28px;font-weight:bold;
      cursor:pointer;
    }
    .search-box button:hover{background:#e68a00}

    .actions{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:12px;margin-top:20px;
    }
    .amazon-btn{
      background:#ff9900;color:#fff !important;
      border-radius:8px;height:50px;
      display:flex;align-items:center;justify-content:center;
      font-weight:bold;text-decoration:none;
    }
    .amazon-btn:hover{background:#e68a00}

    .affiliate-link{
      display:block;margin-top:16px;
      font-size:13px;color:#777;text-decoration:none;
    }

    @media(max-width:900px){
      .actions{grid-template-columns:repeat(auto-fit,minmax(160px,1fr))}
    }
	
	/* Floating teaser */
#smart-teaser {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #00e0ff;
  color: #000;
  padding: 10px 14px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 1000;
}

/* Modal overlay */
#smart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

/* Modal content */
.smart-modal-content {
  background: #111;
  color: #eee;
  max-width: 820px;
  width: 92%;
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

/* Close button */
.smart-modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
}

/* Modal layout */
.modal-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.modal-option {
  background: #181818;
  padding: 16px;
  border-radius: 10px;
}

.modal-option ul {
  list-style: none;
  padding: 0;
}

.modal-option li {
  padding: 6px 0;
}

.modal-option.bad {
  border: 1px solid #444;
}

.modal-option.good {
  border: 1px solid #00e0ff;
}

.modal-footer {
  text-align: center;
  color: #ccc;
}
.logic-list {
  margin-left: 25px;
}
.modal-highlight {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  background: #0f1f24;
  border: 1px solid #00e0ff;
  color: #cfefff;
  font-size: 0.95rem;
  line-height: 1.45;
}
/* ================================
   MOBILE AMAZON SEARCH MODE
   ================================ */
@media (max-width: 768px) {

  /* Hide everything we don't want on mobile */
  #menu,
  .menuToggle,
  .actions,
  .affiliate-link,
  #smart-teaser,
  #smart-modal {
    display: none !important;
  }

  /* Center and simplify layout */
  .page-offset {
    padding: 20px;
  }

  .search-box {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* Big friendly graphic */
  .partner-graphic img {
    max-width: 90%;
    height: auto;
    margin-bottom: 25px;
  }

  /* Big search input */
  .search-bar input[type="text"] {
    width: 100%;
    font-size: 22px;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 6px;
  }

  /* Big obvious button */
  .search-bar button {
    width: 100%;
    font-size: 22px;
    padding: 18px;
    border-radius: 6px;
  }
}
@media (max-width: 768px) {
  body {
    background: red !important;
  }
}




