/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7fa;
  color: #222;
  line-height: 1.6;
  text-align: center;
  padding-top: 100px;
}

/* Header */
header {
  background-color: #1e1e1e;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Header container flexbox */
.header-container {
  display: flex;
  justify-content: space-between; /* title left, button right */
  align-items: center;
  padding: 0 20px;
}

/* Site title */
.site-title {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
}

.site-title:hover {
  color: #ff4081;
}

/* Small shimmer button in header */
.header-bored-btn {
  background: linear-gradient(270deg, #ff6a95, #ff4081, #ff6a95);
  background-size: 600% 600%;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(255, 64, 129, 0.4);
  animation: shimmer 3s ease-in-out infinite;
  transition: box-shadow 0.3s ease;
  line-height: normal;
  height: auto;
  width: auto;
}

.header-bored-btn:hover {
  box-shadow: 0 6px 12px rgba(255, 64, 129, 0.7);
}

/* Shimmer keyframes */
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Main Center Button (Homepage only) */
.center-wrapper {
  margin-top: 60px;
}

.bored-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4081, #ff80ab);
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bored-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.btn-label {
  font-size: 18px;
  margin-top: 12px;
  color: #333;
}

/* Info Section */
.info {
  max-width: 600px;
  margin: 50px auto 0;
  padding: 20px;
}

.info h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.info p {
  font-size: 17px;
  color: #555;
}

/* Footer */
footer {
  margin-top: 60px;
  background-color: #1e1e1e;
  color: #aaa;
  padding: 20px;
  font-size: 14px;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .bored-btn {
    width: 90px;
    height: 90px;
    font-size: 32px;
  }

  .btn-label {
    font-size: 16px;
  }

  .info h2 {
    font-size: 22px;
  }

  .info p {
    font-size: 16px;
  }

  .site-title {
    font-size: 20px;
  }

  /* Adjust header padding on mobile */
  header {
    padding: 10px 15px;
  }

  .header-container {
    padding: 0 15px;
  }

  .header-bored-btn {
    padding: 6px 14px;
    font-size: 14px;
  }
}
