body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  color: #222;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* HEADINGS */
h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* CARDS */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.card h2 {
  margin-top: 0;
}

/* SEARCH */
.search-box {
  text-align: center;
  margin-bottom: 20px;
}

.search-box input {
  width: 260px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.search-box button {
  padding: 12px 20px;
  margin-left: 8px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#suggestions {
  max-width: 280px;
  margin: 8px auto 0;
}

.suggestion-item {
  background: #fff;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #f1f1f1;
}

/* RESULT */
.result-box {
  display: none;
  margin: 20px 0;
  padding: 15px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}

/* IMAGE */
#resultImage {
  display: none;
  max-width: 260px;
  margin: 20px auto;
  display: block;
  border-radius: 16px;
}

/* LIST */
ul {
  padding-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .search-box input {
    width: 100%;
    margin-bottom: 10px;
  }

  .search-box button {
    width: 100%;
    margin-left: 0;
  }
}

.main-header {
  background: #000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-logo {
  color: #fff;
  font-size: 26px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-size: 15px;
}

.main-nav a:hover {
  text-decoration: underline;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #ffffff;
  text-decoration: none;

  background: #2563eb; /* clean solid blue */
  border-radius: 14px;

  box-shadow: 
    0 10px 30px rgba(37, 99, 235, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);

  transition: all 0.25s ease;
}

/* Hover */
.button:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

/* Click */
.button:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
/* Fancy Gradient Button */
.button-fancy {
  display: inline-block;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #6b73ff, #000dff);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  user-select: none; /* prevents text selection */
  position: relative;
  overflow: hidden;
}

.button-fancy:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.button-fancy:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Optional shimmer effect */
.button-fancy::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.button-fancy:hover::after {
  left: 125%;
}
html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
