/* Particle Animations */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-around linear infinite;
  pointer-events: none;
}

@keyframes float-around {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10%, 15%) rotate(90deg);
  }
  50% {
    transform: translate(-5%, 10%) rotate(180deg);
  }
  75% {
    transform: translate(-10%, -10%) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* DeFi Network SVG Animation */
.defi-network {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.defi-network svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Card Hover Effects */
.defi-card {
  transition: all 0.3s ease;
}

.defi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.1);
}

/* Kod Tarama Animasyonu Stilleri */
.code-scanning-container {
  font-family: 'Fira Code', monospace;
  position: relative;
  height: auto !important; /* Sabit yüksekliği kaldır, otomatik yükseklik */
  min-height: 400px;
  overflow: visible !important; /* Taşan içeriği göster */
  margin-bottom: 30px; /* Alt kısımda boşluk bırak */
}

.code-block {
  line-height: 1.6;
  padding: 1rem;
  height: auto !important; /* Otomatik yükseklik */
  max-height: none !important; /* Maksimum yüksekliği kaldır */
  overflow: visible !important; /* Scroll özelliğini kaldır */
  padding-bottom: 20px !important;
}

/* Webkit tarayıcılar için scrollbar stillemeleri */
.code-block::-webkit-scrollbar {
  width: 8px;
}

.code-block::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.code-block::-webkit-scrollbar-thumb {
  background-color: rgba(75, 0, 130, 0.5);
  border-radius: 4px;
}

/* Tarama çizgisi için daha iyi görünürlük - daima mavi kalacak */
#scanner-line {
  width: 100%;
  z-index: 100;
  display: block !important;
  opacity: 1 !important;
  height: 2px !important;
  background: linear-gradient(90deg, 
    rgba(0, 255, 255, 0.1), 
    rgba(0, 255, 255, 0.9), 
    rgba(0, 255, 255, 0.1)
  ) !important;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7) !important;
  animation: glow 1.5s ease-in-out infinite;
  pointer-events: none;
  left: 0;
  right: 0;
  position: absolute;
}

.vuln-highlight {
  transition: all 0.3s ease;
  padding: 0 4px;
  border-radius: 2px;
}

#issue-highlight {
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
  max-width: 280px;
  z-index: 30;
  background-color: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

#issue-highlight p {
  font-size: 11px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.shake {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes glow {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 7px rgba(0, 255, 255, 0.7); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(0, 255, 255, 1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Vulnerability Düzeltme Buton Animasyonu */
.fix-vulnerability-btn {
  position: relative;
  overflow: hidden;
  display: block;
  margin-top: 6px;
  text-align: center;
  padding: 4px 8px;
}

.fix-vulnerability-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.fix-vulnerability-btn:hover::after {
  left: 100%;
}

/* Fix Alert Animasyonu */
.fixed-alert {
  animation: slideDown 0.5s ease-out, fadeOut 0.5s ease-in 2.5s forwards;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Tarama animasyonu için özel bir vurgu efekti */
@keyframes pulse-highlight {
  0%, 100% { background-color: rgba(239, 68, 68, 0.2); }
  50% { background-color: rgba(239, 68, 68, 0.4); }
}

.vuln-highlight.detected {
  animation: pulse-highlight 1.5s infinite;
  font-weight: bold;
  color: #fff !important;
}

/* Solidity kod satırları için özel stil - girintileme düzeltmesi */
.solidity-code-line {
  display: block;
  white-space: pre;
  font-family: 'Fira Code', monospace;
  box-sizing: border-box;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-top: 3px;
  margin-bottom: 3px;
  line-height: 1.6;
}

/* Düzeltilmiş kod satırları için özel stil */
.fixed-code {
  background-color: rgba(34, 197, 94, 0.1);
  border-left: 2px solid #22c55e;
  text-align: left;
  padding-left: 32px !important; /* Sabit girintileme */
  margin-left: 0 !important;
  position: relative;
  animation: fadeIn 0.5s ease-out;
  color: rgb(34, 197, 94) !important;
  font-weight: 500;
}

/* Tüm bütünleşik düzeltilmiş kod bloğu için stil */
.fixed-code-block {
  font-family: 'Fira Code', monospace;
  animation: fadeIn 0.5s ease-out;
  overflow: hidden;
  margin-top: 20px;
  max-width: 100%;
  border-radius: 8px;
}

.fixed-code-block pre {
  padding: 12px;
  line-height: 1.5;
  overflow-x: auto;
}

/* Eklenen ve silinen kodları vurgulayan arka plan stilleri */
.bg-green-500\/20 {
  background-color: rgba(34, 197, 94, 0.2);
  border-radius: 3px;
  padding: 0 2px;
  margin: 0 -2px;
}

.bg-blue-500\/20 {
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 3px;
  padding: 0 2px;
  margin: 0 -2px;
}

/* Üzeri çizili stil */
span[style*="text-decoration: line-through"] {
  opacity: 0.5;
  color: #f87171 !important;
  background-color: rgba(248, 113, 113, 0.1);
  padding: 0 2px;
  border-radius: 3px;
}

/* Düzeltme sonrası eklenen vurgu */
span.text-green-400.font-bold {
  font-weight: bold;
  color: #10b981 !important;
  background-color: rgba(16, 185, 129, 0.2);
  padding: 0 2px;
  border-radius: 3px;
}

/* Üzeri çizilmiş satırlar */
.vuln-highlight[style*="text-decoration: line-through"] {
  color: rgba(255, 100, 100, 0.7) !important;
  display: block;
  padding-top: 3px;
  padding-bottom: 3px;
}

/* Soldan girintileme değerini standartlaştır */
.vuln-highlight, .fixed-code {
  box-sizing: border-box;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  #issue-highlight {
    max-width: 200px;
    font-size: 10px;
  }
  
  .code-scanning-container {
    padding: 0;
  }
}

/* Temiz kod mesajı için stil */
.clean-code-message {
  animation: fadeIn 0.3s ease-out;
  opacity: 1;
}

.clean-code-message.fade-out {
  animation: fadeOut 0.8s ease-in forwards;
}

/* Yeşil tarama çizgisi stilini etkisiz hale getir */
.fixed-code-scanned #scanner-line {
  /* Önceki stiller yerine orijinal mavi stili koru */
  background: linear-gradient(90deg, 
    rgba(0, 255, 255, 0.1), 
    rgba(0, 255, 255, 0.9), 
    rgba(0, 255, 255, 0.1)
  ) !important;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7) !important;
}

/* Kod konteynerinin hem kendisi hem de taşan içeriği görünür olduğundan emin ol */
.code-scanning-container {
  overflow: visible !important;
}

.code-block {
  overflow: visible !important;
}

/* Scanner konteyner stil */
.scanner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Uyarı mesajları için stil */
.warning-comment {
  color: #f59e0b !important;
  font-style: italic;
  background-color: rgba(245, 158, 11, 0.1);
  border-left: 2px solid #f59e0b;
}

/* Mavi açıklama satırları için stil */
.solidity-code-line.text-blue-500 {
  color: #3b82f6 !important;
  font-weight: 600;
  background-color: rgba(59, 130, 246, 0.08);
  border-left: 2px solid #3b82f6;
}

/* Blockchain Roadmap Animation Styles */
.blockchain-roadmap {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.blocks-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.blockchain-blocks {
  position: relative;
  gap: 15px;
  width: 100%;
  padding: 10px 5px;
  z-index: 10;
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.blockchain-block {
  background: rgba(15, 15, 20, 0.8);
  border: 1px solid rgba(75, 0, 130, 0.3);
  border-radius: 8px;
  padding: 15px;
  width: calc(20% - 15px);
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  transform: translateY(0);
  backdrop-filter: blur(5px);
  opacity: 1;
  transform: scale(1) translateY(0);
  height: 220px;
  flex-shrink: 0;
  margin-right: 15px;
}

.blockchain-block::before {
  content: attr(data-year);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #4B0082, #00FFFF);
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  white-space: nowrap;
}

.blockchain-block:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
  border-color: #00FFFF;
  z-index: 20;
}

.blockchain-block.animated {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.blockchain-block.current {
  border: 2px solid #00FFFF;
  background: linear-gradient(to bottom, rgba(20, 20, 35, 0.9), rgba(75, 0, 130, 0.4));
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
  animation: pulse-current-block 2s infinite;
  transform: scale(1.05);
  z-index: 25;
}

@keyframes pulse-current-block {
  0% {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
    border-color: rgba(0, 255, 255, 1);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.7);
  }
}

.block-header, .block-footer {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Fira Code', monospace;
}

.block-header {
  border-bottom: 1px dashed rgba(75, 0, 130, 0.3);
  margin-bottom: 10px;
}

.block-footer {
  border-top: 1px dashed rgba(75, 0, 130, 0.3);
  margin-top: 10px;
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
}

.block-hash {
  font-size: 10px;
  opacity: 0.7;
  color: #00FFFF;
}

.block-timestamp {
  font-size: 10px;
  letter-spacing: 1px;
}

.block-content {
  text-align: center;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-title {
  font-weight: 700;
  color: #00FFFF;
  margin-bottom: 10px;
  font-size: 15px;
}

.block-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Blockchain connecting lines animation */
.blockchain-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #4B0082, #00FFFF);
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.4;
  z-index: 1;
}

.blockchain-line::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00FFFF, transparent);
  animation: data-transfer 3s linear infinite;
}

@keyframes data-transfer {
  0% {
    left: 0;
    opacity: 0.8;
  }
  100% {
    left: calc(100% - 50px);
    opacity: 0.8;
  }
}

.blockchain-block.current .block-title {
  color: white;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  font-size: 16px;
}

.blockchain-block.current .block-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive styles for blockchain roadmap */
@media (max-width: 1024px) {
  .blockchain-blocks {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
  }
  
  .blockchain-block {
    min-width: 220px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .blockchain-blocks {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 10px;
    overflow-y: visible;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .blockchain-block {
    width: 85%;
    min-width: 260px;
    flex: 0 0 auto;
    margin-bottom: 0;
    height: 240px;
  }
  
  .blockchain-line {
    display: block;
  }
  
  .block-content {
    height: 140px;
  }
}

/* Remove old roadmap styles */
.roadmap-timeline, .roadmap-dot, .roadmap-item, .roadmap-content {
  display: none;
}

/* Keep other animation styles intact */
/* Particle Animations */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-around linear infinite;
  pointer-events: none;
}

@keyframes float-around {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10%, 15%) rotate(90deg);
  }
  50% {
    transform: translate(-5%, 10%) rotate(180deg);
  }
  75% {
    transform: translate(-10%, -10%) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* DeFi Network SVG Animation */
.defi-network {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.defi-network svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Card Hover Effects */
.defi-card {
  transition: all 0.3s ease;
}

.defi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.1);
}

/* Kod Tarama Animasyonu Stilleri */
.code-scanning-container {
  font-family: 'Fira Code', monospace;
  position: relative;
  height: auto !important; /* Sabit yüksekliği kaldır, otomatik yükseklik */
  min-height: 400px;
  overflow: visible !important; /* Taşan içeriği göster */
  margin-bottom: 30px; /* Alt kısımda boşluk bırak */
}

.code-block {
  line-height: 1.6;
  padding: 1rem;
  height: auto !important; /* Otomatik yükseklik */
  max-height: none !important; /* Maksimum yüksekliği kaldır */
  overflow: visible !important; /* Scroll özelliğini kaldır */
  padding-bottom: 20px !important;
}

/* Webkit tarayıcılar için scrollbar stillemeleri */
.code-block::-webkit-scrollbar {
  width: 8px;
}

.code-block::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.code-block::-webkit-scrollbar-thumb {
  background-color: rgba(75, 0, 130, 0.5);
  border-radius: 4px;
}

/* Tarama çizgisi için daha iyi görünürlük - daima mavi kalacak */
#scanner-line {
  width: 100%;
  z-index: 100;
  display: block !important;
  opacity: 1 !important;
  height: 2px !important;
  background: linear-gradient(90deg, 
    rgba(0, 255, 255, 0.1), 
    rgba(0, 255, 255, 0.9), 
    rgba(0, 255, 255, 0.1)
  ) !important;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7) !important;
  animation: glow 1.5s ease-in-out infinite;
  pointer-events: none;
  left: 0;
  right: 0;
  position: absolute;
}

.vuln-highlight {
  transition: all 0.3s ease;
  padding: 0 4px;
  border-radius: 2px;
}

#issue-highlight {
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
  max-width: 280px;
  z-index: 30;
  background-color: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

#issue-highlight p {
  font-size: 11px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.shake {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes glow {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 7px rgba(0, 255, 255, 0.7); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(0, 255, 255, 1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Vulnerability Düzeltme Buton Animasyonu */
.fix-vulnerability-btn {
  position: relative;
  overflow: hidden;
  display: block;
  margin-top: 6px;
  text-align: center;
  padding: 4px 8px;
}

.fix-vulnerability-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.fix-vulnerability-btn:hover::after {
  left: 100%;
}

/* Fix Alert Animasyonu */
.fixed-alert {
  animation: slideDown 0.5s ease-out, fadeOut 0.5s ease-in 2.5s forwards;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Tarama animasyonu için özel bir vurgu efekti */
@keyframes pulse-highlight {
  0%, 100% { background-color: rgba(239, 68, 68, 0.2); }
  50% { background-color: rgba(239, 68, 68, 0.4); }
}

.vuln-highlight.detected {
  animation: pulse-highlight 1.5s infinite;
  font-weight: bold;
  color: #fff !important;
}

/* Solidity kod satırları için özel stil - girintileme düzeltmesi */
.solidity-code-line {
  display: block;
  white-space: pre;
  font-family: 'Fira Code', monospace;
  box-sizing: border-box;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-top: 3px;
  margin-bottom: 3px;
  line-height: 1.6;
}

/* Düzeltilmiş kod satırları için özel stil */
.fixed-code {
  background-color: rgba(34, 197, 94, 0.1);
  border-left: 2px solid #22c55e;
  text-align: left;
  padding-left: 32px !important; /* Sabit girintileme */
  margin-left: 0 !important;
  position: relative;
  animation: fadeIn 0.5s ease-out;
  color: rgb(34, 197, 94) !important;
  font-weight: 500;
}

/* Tüm bütünleşik düzeltilmiş kod bloğu için stil */
.fixed-code-block {
  font-family: 'Fira Code', monospace;
  animation: fadeIn 0.5s ease-out;
  overflow: hidden;
  margin-top: 20px;
  max-width: 100%;
  border-radius: 8px;
}

.fixed-code-block pre {
  padding: 12px;
  line-height: 1.5;
  overflow-x: auto;
}

/* Eklenen ve silinen kodları vurgulayan arka plan stilleri */
.bg-green-500\/20 {
  background-color: rgba(34, 197, 94, 0.2);
  border-radius: 3px;
  padding: 0 2px;
  margin: 0 -2px;
}

.bg-blue-500\/20 {
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 3px;
  padding: 0 2px;
  margin: 0 -2px;
}

/* Üzeri çizili stil */
span[style*="text-decoration: line-through"] {
  opacity: 0.5;
  color: #f87171 !important;
  background-color: rgba(248, 113, 113, 0.1);
  padding: 0 2px;
  border-radius: 3px;
}

/* Düzeltme sonrası eklenen vurgu */
span.text-green-400.font-bold {
  font-weight: bold;
  color: #10b981 !important;
  background-color: rgba(16, 185, 129, 0.2);
  padding: 0 2px;
  border-radius: 3px;
}

/* Üzeri çizilmiş satırlar */
.vuln-highlight[style*="text-decoration: line-through"] {
  color: rgba(255, 100, 100, 0.7) !important;
  display: block;
  padding-top: 3px;
  padding-bottom: 3px;
}

/* Soldan girintileme değerini standartlaştır */
.vuln-highlight, .fixed-code {
  box-sizing: border-box;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  #issue-highlight {
    max-width: 200px;
    font-size: 10px;
  }
  
  .code-scanning-container {
    padding: 0;
  }
}

/* Temiz kod mesajı için stil */
.clean-code-message {
  animation: fadeIn 0.3s ease-out;
  opacity: 1;
}

.clean-code-message.fade-out {
  animation: fadeOut 0.8s ease-in forwards;
}

/* Yeşil tarama çizgisi stilini etkisiz hale getir */
.fixed-code-scanned #scanner-line {
  /* Önceki stiller yerine orijinal mavi stili koru */
  background: linear-gradient(90deg, 
    rgba(0, 255, 255, 0.1), 
    rgba(0, 255, 255, 0.9), 
    rgba(0, 255, 255, 0.1)
  ) !important;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7) !important;
}

/* Kod konteynerinin hem kendisi hem de taşan içeriği görünür olduğundan emin ol */
.code-scanning-container {
  overflow: visible !important;
}

.code-block {
  overflow: visible !important;
}

/* Scanner konteyner stil */
.scanner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Uyarı mesajları için stil */
.warning-comment {
  color: #f59e0b !important;
  font-style: italic;
  background-color: rgba(245, 158, 11, 0.1);
  border-left: 2px solid #f59e0b;
}

/* Mavi açıklama satırları için stil */
.solidity-code-line.text-blue-500 {
  color: #3b82f6 !important;
  font-weight: 600;
  background-color: rgba(59, 130, 246, 0.08);
  border-left: 2px solid #3b82f6;
}

/* DeFi Roadmap Animation Styles */
.roadmap-timeline {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.roadmap-dot {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.3);
}

.roadmap-item:hover .roadmap-dot {
  box-shadow: 0 0 0 5px rgba(0, 255, 255, 0.1);
}

.roadmap-item {
  position: relative;
  opacity: 0.8;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.roadmap-item:hover {
  opacity: 1;
  transform: translateX(5px);
}

.roadmap-content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Pulse animation for the current dot */
@keyframes roadmap-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}

.roadmap-item:last-child .roadmap-dot {
  animation: roadmap-pulse 2s infinite;
} 