.notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  font-size: 14px;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 8px;
  background: #1a1a1a;
  border-radius: 8px;
  color: #fff;
}
/* MOBİL */
@media (max-width: 768px){
  #transactions{
    padding: 10px;
  }

  .item{
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .item span{
    align-self: flex-end;
  }

  h1{
    font-size: 32px !important;
  }
}

/* TOP BAR */
.top-bar {
  width: 100%;
  background: linear-gradient(90deg, #0f2d1f, #071a12);
  color: #d2ffe9;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,255,136,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.top-bar b {
  color: #00ff88;
}

.dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* BODY */
body {
  background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #05070a 100%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* GENEL */
.gold-grad {
  background: linear-gradient(135deg, #f1d592, #d4af37, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
}

.btn-main {
  background: linear-gradient(45deg, #d4af37, #b8860b);
  color: black !important;
  font-weight: 800;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* TRANSACTIONS */
#transactions {
  max-width: 600px;
  margin: auto;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f0f0f;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  font-weight: 600;
}

.item b {
  color: #fff;
  font-size: 14px;
}

.item small {
  color: #888;
  font-weight: 400;
}

.item span {
  color: #f1c40f;
  font-weight: 700;
}

/* WHATSAPP */
.wp-fixed {
  position: fixed;
  bottom: 130px;
  right: 30px;
  z-index: 1001;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.wp-fixed:hover {
  transform: scale(1.1);
}

/* NOTIFICATION (FIXED) */
#notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  transform: translateX(-150%);
  transition: 0.5s;
}

#notification.show {
  transform: translateX(0);
}

/* CHAT */
#chat-window {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 330px;
  height: 460px;
  z-index: 2000;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.2);
}

.chat-header {
  background: #d4af37;
  padding: 15px;
  color: black;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
}

.chat-body {
  flex: 1;
  padding: 15px;
  background: #0c0c0c;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg-bot {
  background: #1a1a1a;
  color: #d4af37;
  align-self: flex-start;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
}

.msg-user {
  background: #d4af37;
  color: black;
  align-self: flex-end;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.bot-avatar {
  width: 40px;
  height: 40px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  margin-bottom: 5px;
  font-size: 20px;
}

/* DETAILS */
details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}
/* Canlı İşlemler Tablo Tasarımı */
.live-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #0d0d0d;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c9a050;
}
.live-table th {
    background: #c9a050;
    color: #000;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
}
.live-table td {
    padding: 15px;
    border-bottom: 1px solid #222;
    color: #fff;
    text-align: center;
}
.status-badge {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Sol Alt Kayan Bildirim */
#tx-notification {
    position: fixed;
    bottom: 20px;
    left: -350px;
    width: 300px;
    background: #111;
    border-left: 5px solid #c9a050;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    transition: 0.5s;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 15px;
}
#tx-notification.active { left: 20px; }
.notif-icon { font-size: 24px; color: #c9a050; }
.notif-text { color: #eee; font-size: 13px; line-height: 1.4; }
.notif-text b { color: #c9a050; }