/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff2a6d; /* Neon pink */
  text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
}

#searchBar {
  width: 100%;
  max-width: 600px;
  padding: 0.8rem;
  border: none;
  border-radius: 25px;
  background: #333;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

#searchBar:focus {
  box-shadow: 0 0 10px #ff2a6d;
}

/* Creator Grid */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Creator Card */
.creator-card {
  background: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.7);
}

.creator-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.creator-card h2 {
  font-size: 1.5rem;
  margin: 1rem;
  color: #fff;
}

.creator-card p {
  margin: 0 1rem 1rem;
  color: #ccc;
}

.btn {
  display: block;
  margin: 1rem;
  padding: 0.8rem;
  background: #ff2a6d;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: #d81e5b;
  box-shadow: 0 0 10px rgba(255, 42, 109, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .creator-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .creator-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }
}

/* Hide cards when filtered out */
.creator-card.hidden {
  display: none;
}
.header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}
.header-row h1 {
  flex: 1 1 auto;
  text-align: center;
  margin: 0;
   /* Adjust as needed to match the search bar */
}

.discord-btn {
  flex-shrink: 0;
  background-color: #5865F2;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.discord-btn:hover {
  background-color: #4752c4;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.8);
}

/* Responsive tweak */
@media (max-width: 600px) {
  .header-row {
    flex-direction: column;
    align-items: center;
  }

  .discord-btn {
    margin-top: 0.5rem;
  }
}
.banner-ad-container {
  display: flex;
  justify-content: center;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 1px !important;
  height: 1px !important;
  
}

.banner-ad-container iframe,
.banner-ad-container div[id^="atContainer-"] {
  width: 1px !important;
  height: 1px !important;
  border: none;
}

/* Native Ad Container */
.native-ad-container {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.native-ad-placeholder {
  background: #2a2a2a;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  width: 100%;
  max-width: 728px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ccc;
  transition: box-shadow 0.3s ease;
}

.native-ad-placeholder:hover {
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .native-ad-placeholder {
    max-width: 100%;
    padding: 0.8rem;
  }

  .banner-ad-container {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .native-ad-placeholder {
    font-size: 0.9rem;
  }
}