/* Google Fonts: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', 'Inter', 'Nunito Sans', Arial, sans-serif;
  background: #f5f6fa;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.main-header {
  background: #2c3e50;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 12px rgba(44,62,80,0.04);
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.main-logo {
  height: 70px;
  max-width: 90vw;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(44,62,80,0.10));
  opacity: 0.98;
  margin-bottom: 0.3rem;
  transition: filter 0.2s, opacity 0.2s;
}
.main-logo:hover {
  filter: drop-shadow(0 8px 32px rgba(44,62,80,0.18));
  opacity: 1;
}
.site-desc {
  font-size: 0.98rem;
  color: #bfc9d1;
  margin-top: 0.1rem;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.1rem 1rem 1.1rem;
  text-align: left;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(44,62,80,0.10);
  transform: scale(1.01) translateY(-2px);
}
.card-title {
  font-size: 1.13rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.card-meta {
  font-size: 0.93rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.badge-success, .badge.bg-success {
  background: #2ec492 !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.35em 0.8em;
  font-size: 0.95em;
}
.badge-premium {
  background: #e0e0e0 !important;
  color: #888 !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.35em 0.8em;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.btn, .form-control, .form-select {
  border-radius: 8px !important;
  font-family: inherit;
}
.btn-primary {
  background: #2ec492;
  border: none;
  color: #fff;
  font-weight: 600;
  transition: background 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1fa97a;
  color: #fff;
}
.btn-outline-primary {
  border-color: #2ec492;
  color: #2ec492;
  background: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: #2ec492;
  color: #fff;
}
.footer {
  background: #34495e;
  color: #eaeaea;
  text-align: center;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .container { padding: 0 0.5rem; }
  .main-header { height: 70px; }
  .main-logo { height: 48px; }
}
@media (max-width: 767px) {
  .row { gap: 0.5rem; }
  .card { margin-bottom: 1rem; }
  .main-header { height: 70px; }
  .main-logo { height: 36px; }
  .header-inner { padding-top: 0.5rem; }
}

/* Animasyonlar */
.fade-in {
  animation: fadeIn 0.7s cubic-bezier(.39,.575,.565,1) both;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: none; }
}

/* Light/Dark Mode Toggle */
.theme-toggle {
  cursor: pointer;
  font-size: 1.3rem;
  color: #2ec492;
  margin-left: 1rem;
  transition: color 0.2s;
}
.theme-toggle:hover { color: #ffd700; }

/* Modal ve Dropdown için ekstra */
.dropdown-menu {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(20,33,61,0.10);
  font-size: 1rem;
}
.modal-content {
  border-radius: 16px;
}

/* Hoşgeldin animasyonu */
.welcome-anim {
  animation: welcomePop 0.8s cubic-bezier(.39,.575,.565,1) both;
}
@keyframes welcomePop {
  0% { opacity: 0; transform: scale(0.8); }
  80% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.menu-link {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.menu-link:hover, .menu-link:focus {
  color: #2ec492;
  border-bottom: 2px solid #2ec492;
}
@media (max-width: 991px) {
  .main-menu { gap: 1.1rem; font-size: 0.98rem; }
}
@media (max-width: 767px) {
  .header-flex { flex-direction: column; align-items: flex-start; }
  .main-header { height: auto; padding: 0.7rem 0.5rem; }
  .main-menu { margin-top: 0.5rem; }
} 

.brand-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.brand-icon {
  display: flex;
  align-items: flex-end;
  gap: 0.1rem;
  font-size: 2.3rem;
  color: #2ec492;
  position: relative;
}
.brand-icon .fa-arrow-up-right {
  font-size: 1.3rem;
  position: absolute;
  left: 1.1rem;
  top: 0.1rem;
  color: #2ec492;
  opacity: 0.95;
}
.brand-text {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  font-family: 'Poppins', 'Inter', 'Nunito Sans', Arial, sans-serif;
  line-height: 1;
}
@media (max-width: 991px) {
  .brand-text { font-size: 1.3rem; }
  .brand-icon { font-size: 1.5rem; }
}
@media (max-width: 767px) {
  .brand-row { gap: 0.6rem; }
  .brand-text { font-size: 1.05rem; }
  .main-logo { height: 28px; }
} 

.signal-card {
  font-family: 'Poppins', 'Inter', 'Nunito Sans', Arial, sans-serif;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.1rem 1rem 1.1rem;
  text-align: left;
}
.signal-content {
  margin-bottom: 0.5rem;
}
.signal-pair {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.2rem;
}
.signal-leverage {
  font-size: 1.05rem;
  color: #2ec492;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.signal-direction {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.signal-direction.short { color: #e74c3c; }
.signal-direction.long { color: #2ec492; }
.signal-entry, .signal-tp, .signal-stop {
  font-size: 1.01rem;
  margin-bottom: 0.1rem;
}
.signal-tp { color: #2ec492; }
.signal-stop { color: #e74c3c; } 