html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #0f111c, #1b1d30);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.app {
  max-width: 430px;
  margin: 0 auto;
  padding-bottom: 130px;
  box-sizing: border-box;
}

/* SEO Başlık */
.seo-bar {
  background: #1c1e2f;
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid #292c3e;
}
.seo-bar h1 {
  font-size: 20px;
  background: linear-gradient(to right, #ffffff, #ffcc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-shadow: 0 0 5px #fff3;
  margin: 0;
}

/* Menü */
.top-menu {
  display: flex;
  justify-content: space-around;
  background: #1a1d2e;
  padding: 10px 0;
}
.menu-item {
  color: #ccc;
  font-size: 15px;
}
.menu-item.active {
  color: white;
  font-weight: bold;
}

/* Banner */
.main-bonus {
  background: #ff3399;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-bonus {
  background: white;
  color: #ff3399;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
}

/* Slider */
.slider-wrapper {
  overflow: hidden;
  padding: 5px 0;
}
.slider {
  display: flex;
  gap: 10px;
  overflow-x: hidden;
}
.slider img {
  width: 160px;
  height: 80px;
  object-fit: contain;
}

/* Arama */
.search-bar {
  padding: 10px;
}
.search-bar input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #222539;
  color: white;
}

/* Filtre */
.filter-bar {
  display: flex;
  gap: 5px;
  justify-content: space-around;
  padding: 10px;
}
.filter-bar button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: #2c2f40;
  color: white;
  font-size: 14px;
}
.filter-bar button.active {
  background: #ff3399;
}

/* Kartlar */
.bonus-list {
  padding: 10px;
  margin-top: -10px
}
.bonus-item {
  background: #202235;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px #0004;
}
.bonus-item img {
  width: 60px;
  height: 40px;
  object-fit: contain;
}
.bonus-item h4 {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.bonus-item p {
  margin: 0;
  font-size: 14px;
  color: #bbb;
}
.bonus-item button {
  margin-left: auto;
  background: #ff3399;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
}

/* VIP Başlık */
.vip-title {
  font-size: 18px;
  margin: 20px 10px 10px;
  color: #ffe066;
}

/* VIP Kart */
.vip-card {
  background: linear-gradient(145deg, #3a2f55, #282443);
  border: 1px solid #ffccff33;
}

/* Footer */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #1a1d2e;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 5px;
  font-size: 15px;
  z-index: 999;
  border-top: 1px solid #333;
}
.bottom-nav .nav-item {
  color: #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom-nav .nav-item i {
  font-size: 20px;
}
.bottom-nav .nav-item span {
  font-size: 12px;
  margin-top: 3px;
}
.bottom-nav .nav-item.active {
  color: #ff3399;
  font-weight: bold;
}
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  background: #1c1e2f;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  color: white;
  max-width: 300px;
  width: 90%;
}
.modal-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffcc00;
}
.modal-content p {
  font-size: 14px;
  margin-bottom: 20px;
}
.modal-content button {
  background: #ff3399;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}
.modal-content .close {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
  cursor: pointer;
}
.modal-content canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}


/* Ek iyileştirmeler */
.bonus-item h4, .bonus-item p {
  line-height: 1.2;
  word-break: break-word;
  max-width: 140px;
}

.slider-card h3 {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
  max-width: 100px;
}
