  .mobile-message {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 10000000000;
      padding: 20px;
      box-sizing: border-box;
  }
  
  .mobile-logo {
      font-size: 4rem;
      color: #ff4d4d;
      margin-bottom: 20px;
  }
  
  .mobile-title {
      font-size: 2rem;
      margin-bottom: 10px;
      font-weight: bold;
      color: white;
  }
  
  .mobile-text {
      font-size: 1rem;
      color: #aaa;
      max-width: 300px;
      line-height: 1.5;
  }
  
  @media only screen and (max-width: 1100px) {
      .main-content {
          display: none !important; /* Kesinlikle gizle */
      }
      
      .mobile-message {
          display: flex;
      }
      
      body, html {
          overflow: hidden; /* Mobilde kaydırmayı engelle */
      }
  }

          .logo {
              height: 50px;
              margin-right: 15px;
          }
          
          .site-title {
              font-size: 28px;
              font-weight: 700;
              background: linear-gradient(45deg, #00ea0c, #008a05);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              text-shadow: 0 2px 4px rgba(0,0,0,0.1);
          }
          
          .create-container {
              position: relative;
              display: flex;
              justify-content: center;
              margin-top: 20px;
          }
          
          .create-btn {
              display: inline-flex;
              align-items: center;
              padding: 12px 25px;
              font-size: 16px;
              font-weight: 600;
              color: #fff;
              height: 50px;
              background: linear-gradient(135deg, #ea0000, #8a0000);
              border: none;
              border-radius: 8px;
              margin-right: 15px;
              cursor: pointer;
              text-decoration: none;
              transition: all 0.3s ease;
          }
          .create-btn:hover {
              background: linear-gradient(135deg, #00d60b, #0c7d10);
              transform: translateY(-2px);
              box-shadow: 0 6px 15px rgba(0, 234, 12, 0.4);
          }
          .variant-action-btn:active {
  transform: translateY(0);
}

.create-btn i {
  font-size: 15px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.create-btn:hover i {
  transform: rotate(90deg);
}

.create-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.variant-action-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}
          
          .info-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 635px;
    max-width: 90%;
    background-color:#000000;
    border-radius: 18px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 100000;
    color: #f0f0f0;
    border: 1px solid white;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.header-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #ff4d4d, #990000);
    border-radius: 10px;
}

.header-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
    position: relative;
    z-index: 1;
}

.header-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,50,50,0.3), transparent 60%);
    pointer-events: none;
}

.header-image:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(200, 40, 40, 0.3);
}

.header-text {
    text-align: left;
    flex: 1;
}

.info-container h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.info-container h3 i {
    color: #ff5e5e;
    font-size: 26px;
    text-shadow: 0 0 10px rgba(255, 80, 80, 0.4);
}

.subtitle {
    color: #d1d1d1;
    font-size: 15px;
    margin-top: 8px;
    line-height: 1.5;
    font-weight: 300;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    border-left: 3px solid transparent;
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-left: 3px solid #ff4d4d;
}

.features-list i {
    color: #ff6b6b;
    width: 22px;
    text-align: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.features-list li:hover i {
    transform: scale(1.2);
    color: #ff5252;
}

.call-to-action {
    font-size: 16px;
    color: #f1f1f1;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.call-to-action::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff4d4d, transparent);
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.transparent-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.transparent-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.transparent-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-3px);
}

.transparent-btn:hover::before {
    left: 100%;
}

.signup-btn {
    border-right: 3px solid #ff4d4d !important;
}

.login-btn {
    border-left: 3px solid #ff4d4d !important;
}

.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 70, 70, 0.08), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Animation for the container entrance */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.create-container.active .info-container {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}




@keyframes diagonalPass {
    0% { transform: rotate(15deg) translateX(-100%) translateY(-50%); }
    100% { transform: rotate(15deg) translateX(100%) translateY(50%); }
}

/* Logo emboss effect */
.header-image {
    position: relative;
}

.header-image::before {
    content: "";
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.7;
}
          
          .auth-buttons {
              display: flex;
              gap: 20px;
              justify-content: center;
              margin-top: 30px;
          }
          
          .auth-button {
              padding: 12px 25px;
              border-radius: 8px;
              font-weight: 600;
              font-size: 16px;
              display: inline-flex;
              align-items: center;
              gap: 8px;
              transition: all 0.3s ease;
              text-decoration: none;
          }

          .features-list {
              text-align: left;
              margin: 25px 0;
              padding-left: 20px;
          }
          
          .features-list li {
              margin-bottom: 12px;
              color: #fff;
              position: relative;
              padding-left: 25px;
          }
          
          .features-list li:before {
              content: "✓";
              color: #fff;
              position: absolute;
              left: 0;
              font-weight: bold;
          }
      

    .profile-container {
      position: relative;
      display: inline-block;
    }
    
    .profile-info {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 6px 12px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    
    .profile-info:hover {
      background-color: #444;
    }
    
    .profile-photo {
      width: 45px;
      height: 45px;
      border-radius: 8%;
      object-fit: cover;
      margin-right: 10px;
      border: 2px solid gray;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .username {
      font-weight: 600;
      color: #fff;
    }
    
    .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      width: 200px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }
    
    .profile-info:hover + .dropdown-menu,
    .dropdown-menu:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .dropdown-menu a {
      display: flex;
      align-items: center;
      padding: 10px 16px;
      text-decoration: none;
      color: #333;
      transition: background-color 0.2s;
    }
    
    .dropdown-menu a:hover {
      background-color: #f0f0f0;
    }
    
    .dropdown-menu a i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
      color: #555;
    }
    
    .divider {
      height: 1px;
      background-color: #eee;
      margin: 4px 0;
    }
  .dropdown-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    padding: 15px;
    background-color: #111;
    border-radius: 8px;
  }
  
  .dropdown-feature {
    width: 250px;
    padding: 1px;
    background-color: #111;
    border-radius: 8px;
    color: white;
  }
  
  .feature-image {
    width: 40%;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 4px;
  }
  
  .dropdown-feature h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #fff;
  }
  
  .dropdown-feature p {
    margin: 0 0 15px 0;
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
  }
  
  .feature-types {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .type-badge {
    background-color: #444;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
  }

  .notification-container {
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 11px;
    border-radius: 10px;
    display: flex;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .notification-container:hover {
    background-color: #555;
    transform: scale(1.1);
  }

  /* Notification icon */
  .notification-icon {
    font-size: 20px;
    color: #fff;
  }

  /* Notification box */
  .notification-box {
    z-index: 999;
    position: absolute;
    top: 50px;
    right: 0;
    width: 300px;
    height: 350px;
    background-color: #222;
    border: 2px #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0);
    transform-origin: top right;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
  }

  .notification-box.open {
    transform: scale(1);
    opacity: 1;
  }

  /* Notification content */
  .notification-content {
    padding: 20px;
    text-align: left;
  }

  .notification-content h3 {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
  }

  .notification-content h3 i {
    margin-right: 10px;
  }

  .notification-content p {
    margin: 0;
    font-size: 12px;
    color: #ccc;
    animation: slideIn 0.3s ease-in-out;
  }

  /* Animation for notification content */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Add a subtle border to the notification box */
  .notification-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Add a hover effect to the notification box */
  .notification-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  .profile-container {
    position: relative;
    display: inline-block;
  }

  .profile-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 19px 2px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
  }

  .profile-btn i {
    font-size: 24px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #222;
    min-width: 230px;
    box-shadow: 0px 0px 3px #888;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
  }

  .dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
  }

  .dropdown-content a i {
    margin-right: 8px;
  }

  .dropdown-content a:hover {
    background-color: #333;
  }

  .profile-container:hover .dropdown-content {
    display: block;
  }
  /* Dropdown Styling */
  .dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
  }

        :root {
  /* Dropbtn için ek renkler */
  --btn-bg: #222;
  --btn-bg-hover: #333;
  --btn-bg-active: #444;
  --btn-text: #fff;
  --btn-text-hover: #f0f0f0;
  --btn-arrow-color: #aaa;
  --btn-arrow-hover: #fff;
}

.dropbtn {
  /* Temel Stil */
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 10px 18px;
  font-size: 14px; /* Yazı boyutu biraz büyütüldü */
  height: 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  
  /* Flexbox */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  
  /* Transition */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Metin Stilleri */
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  
  /* Border */
  border: 1px solid rgba(255,255,255,0.1);
  
  /* 3D Efekt */
  transform-style: preserve-3d;
  perspective: 1000px;
}

.dropbtn i {
  font-size: 14px;
  color: var(--btn-arrow-color);
  transition: all 0.3s ease;
}

/* Hover Efektleri */
.dropbtn:hover {
  background-color: var(--btn-bg-hover);
  color: var(--btn-text-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.dropbtn:hover i {
  color: var(--btn-arrow-hover);
  transform: translateY(1px);
}

/* Aktif Durum */
.dropbtn:active {
  background-color: var(--btn-bg-active);
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.1s ease-out;
}

/* Açılır Menü Ok Animasyonu */
.dropbtn.active i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .dropbtn {
    padding: 8px 14px;
    font-size: 14px;
    height: 36px;
    gap: 6px;
  }
  
  .dropbtn i {
    font-size: 13px;
  }
}

  .dropdown-contentt {
    display: none;
    position: absolute;
    min-width: 600px; /* Adjusted for new layout */
    z-index: 999999999999999999999;
    border-radius: 8px;
    overflow: hidden;
  }

  .grid-container {
    display: grid;
    width: 400px;
    grid-template-columns: repeat(2, 1fr); /* 2-column grid */
    gap: 5px; /* Kutular arası boşluk */
  }

  .grid-container a {
    color: white;
    height: 42px;
    padding: 9px;
    text-decoration: none;
    display: flex;
    align-items: left;
    justify-content: left;
    background-color: #222;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .grid-container a:hover {
    background-color: #333;
    box-shadow:0px 8px 16px #444;
    transform: scale(1.05);
  }

  .grid-container a i {
    margin-right: 8px;
    margin-top: 3.5px;
  }

  .dropdown:hover .dropdown-contentt {
    display: block;
  }

  /* Terms of Use Link */
  :root {
  /* Renkler */
  --primary-color: #6eff00;
  --text-color: #fff;
  --text-hover: #f0f0f0;
  --bg-hover: rgba(68, 68, 68, 0.7);
  --bg-active: rgba(68, 68, 68, 0.9);
  --shadow-color: rgba(0, 0, 0, 0.2);
  --border-color: rgba(255, 255, 255, 0.1);
  
  /* Boyutlar (Yazı boyutları artırıldı) */
  --link-spacing: 8px;
  --link-padding: 9px 15px;
  --link-radius: 10px;
  --link-font-size: 13px; /* 13px'ten 15px'e çıkarıldı */
  --link-height: 40px;
  --icon-size: 16px; /* 15px'ten 16px'e çıkarıldı */
  
  /* Efektler */
  --transition-time: 0.25s;
  --transition-type: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.terms-link {
  /* Temel Stil */
  color: var(--text-color);
  padding: var(--link-padding);
  border-radius: var(--link-radius);
  text-decoration: none;
  margin-left: var(--link-spacing);
  font-size: var(--link-font-size); /* Büyük yazı */
  height: var(--link-height);
  
  /* Flexbox */
  display: inline-flex;
  align-items: center;
  gap: 7px; /* 5px'ten 7px'e çıkarıldı */
  
  /* Border & Background */
  background-color: transparent;
  border: 1px solid transparent;
  
  /* Transition */
  transition: all var(--transition-time) var(--transition-type);
  
  /* Metin Stilleri */
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px var(--shadow-color);
}

.terms-link i {
  font-size: var(--icon-size); /* Büyük icon */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-time) var(--transition-type);
}

.terms-link span {
  white-space: nowrap;
  position: relative;
}

/* Hover Efektleri */
.terms-link:hover {
  color: var(--text-hover);
  background-color: var(--bg-hover);
  border-color: var(--border-color);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 10px var(--shadow-color);
}

.terms-link:hover i {
  transform: scale(1.08);
}

/* Aktif Durum */
.terms-link:active {
  background-color: var(--bg-active);
  transform: translateY(1px);
  box-shadow: 0 2px 5px var(--shadow-color);
  transition: all 0.1s ease-out;
}

/* Özel Icon Renkleri */
.terms-link:nth-child(1) i { color: #6eff00; } /* Challenge */
.terms-link:nth-child(2) i { color: #ff6b6b; } /* Privacy Policy */
.terms-link:nth-child(3) i { color: #feca57; } /* Blog */
.terms-link:nth-child(4) i { color: #48dbfb; } /* Your opinions? */

/* Hover'da Icon Efektleri */
.terms-link:nth-child(1):hover i { text-shadow: 0 0 8px rgba(110, 255, 0, 0.6); }
.terms-link:nth-child(2):hover i { text-shadow: 0 0 8px rgba(255, 107, 107, 0.6); }
.terms-link:nth-child(3):hover i { text-shadow: 0 0 8px rgba(254, 202, 87, 0.6); }
.terms-link:nth-child(4):hover i { text-shadow: 0 0 8px rgba(72, 219, 251, 0.6); }

/* Alt Çizgi Animasyonu */
.terms-link:hover span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  animation: underline 0.5s var(--transition-type) forwards;
}

@keyframes underline {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  :root {
    --link-font-size: 14px; /* Mobilde biraz küçültüldü */
    --icon-size: 15px;
  }
  
  .terms-link {
    margin-left: 6px;
    padding: 8px 12px;
    gap: 6px;
  }
}

  /* Right Buttons Styling */
  .right-buttons {
        display: flex;
        margin-bottom: 24px;
        gap: 20px;
        margin-left: auto; 
      }
  .people-button {
        display: inline-block;
        padding: 14px 20px; /* Buton boyutu küçültüldü */
        font-size: 14px; /* Yazı boyutu küçültüldü */
        color: #fff;
        background-color: #222;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
      }
    
      .people-button:hover {
        background-color: #333;
      }
    
      .people-button:active {
        transform: scale(0.95);
      }
    
      .people-button i {
        margin-right: 8px;
        color: #fff;
      }
  /* Navbar Styling */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    padding: 10px 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      flex-wrap: wrap;
      padding: 10px;
    }

    .dropdown {
      margin-left: 10px;
    }

    .terms-link {
      margin-left: 10px;
    }

    .right-buttons {
      margin-left: 0;
      margin-right: 10px;
    }

    .people-button {
      padding: 6px 12px;
      font-size: 12px;
    }

    .dropdown-contentt {
      min-width: 100%; /* Mobile full width */
    }
    
    .dropdown-wrapper {
      flex-direction: column;
    }
    
    .grid-container {
      width: 100%;
    }
    
    .dropdown-feature {
      width: auto;
    }
  }

.sidebar.open .logo-connector {
  opacity: 1;
}
.sidebar.open .logo-connector {
  opacity: 1;
}
      .logo-img {
  width: 30px; /* İstediğiniz boyutu ayarlayın */
  height: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-right: 10px;
}

.sidebar.open .logo-img {
  opacity: 1;
}
    

    /* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body{
    background-color:rgb(11, 11, 11) ;
    overflow-x: hidden;
}
/* Genel scroll stili */
::-webkit-scrollbar {
    width: 17px;
}

::-webkit-scrollbar-track {
    background-color: black;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
    border: 3px solid black;
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}
.sidebar{
  position: fixed;
  left: 0;
  display: none;
  top: 0;
  height: 100%;
  width: 78px;
  background: #111;
  padding: 6px 14px;
  z-index: 999999;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 250px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name {
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
  background: linear-gradient(to right, #ff0000,#c30f0f,#b10f0f,#ad1111 50%, #ffffff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 2px rgba(129, 129, 129, 0.132);
  position: relative;
}

.sidebar .logo-details .logo_name::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #111;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #111;
  color: #FFF;
}
.sidebar.open .bx-search:hover{
  background: #111;
  color: #FFF;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #111;
}
.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #111;
}
.sidebar li a:hover{
  background: #FFF;
}
.sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #111;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile{
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #111;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.profile{
  width: 250px;
}
.sidebar li .profile-details{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li img{
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.sidebar li.profile .job{
  font-size: 12px;
}
.sidebar .profile #log_out{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #111;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out{
  width: 50px;
  background: none;
}
.home-section{
  position: relative;
  background: #E4E9F7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text{
  display: inline-block;
  color: #111;
  font-size: 25px;
  font-weight: 500;
  margin: 18px
}
@media (max-width: 420px) {
  .sidebar li .tooltip{
    display: none;
  }
}
  

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
  @import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');

  body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: rgb(11,11,11);
      color: #a0a0a0;
      overflow-x: hidden;
  }

  .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      width: 100%;
      min-height: 100vh;
      background: 
          linear-gradient(to bottom, 
              #111 5%, 
              rgba(35, 35, 70, 0.088) 20%, 
              rgba(35, 35, 70, 0.037) 40%, 
              rgb(11,11,11) 100%);
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }


  @keyframes float {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }

  .header {
      position: relative;
      z-index: 2;
      max-width: 900px;
  }

  .header h1 {
      font-size: 4.5rem;
      margin: 0;
      background: linear-gradient(to right, #ffffff, #b5b5ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 20px rgba(150, 150, 255, 0.3);
      line-height: 1.1;
      letter-spacing: -1px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .header p {
      font-size: 1.5rem;
      color: #c0c0ff;
      margin: 0;
      font-weight: 300;
      line-height: 1.6;
      text-shadow: 0 0 10px rgba(150, 150, 255, 0.2);
  }

  .items {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 60px;
      position: relative;
      z-index: 2;
  }

  .item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 220px;
      height: 220px;
      background: rgba(30, 30, 60, 0.3);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      transition: all 0.3s ease;
      border: 1px solid rgba(100, 100, 255, 0.1);
      box-shadow: 0 10px 30px rgba(0, 0, 30, 0.5);
  }

  .item:hover {
      transform: translateY(-10px);
      background: rgba(40, 40, 80, 0.4);
      box-shadow: 0 15px 40px rgba(50, 50, 150, 0.4);
      border-color: rgba(100, 100, 255, 0.3);
  }

  .item i {
      font-size: 3.5rem;
      color: #b5b5ff;
      margin-bottom: 20px;
      text-shadow: 0 0 15px rgba(150, 150, 255, 0.5);
  }

  .item p {
      color: #e0e0ff;
      font-size: 1.3rem;
      margin: 0;
      font-weight: 500;
      text-align: center;
  }



  @keyframes pulse {
      0% { transform: scale(1); opacity: 0.7; }
      100% { transform: scale(1.3); opacity: 0.3; }
  }

  @media (max-width: 992px) {
      .header h1 {
          font-size: 3.5rem;
      }
      
      .header p {
          font-size: 1.3rem;
      }
      
      .item {
          width: 180px;
          height: 180px;
      }
  }

  @media (max-width: 768px) {
      .header h1 {
          font-size: 2.8rem;
          letter-spacing: -0.5px;
      }

      .header p {
          font-size: 1.1rem;
      }

      .items {
          gap: 20px;
      }

      .item {
          width: 140px;
          height: 140px;
          padding: 20px;
      }
      
      .item i {
          font-size: 2.5rem;
          margin-bottom: 15px;
      }
      
      .item p {
          font-size: 1.1rem;
      }
  }

  @media (max-width: 480px) {
      .container {
          padding: 80px 20px;
      }
      
      .header h1 {
          font-size: 2.2rem;
      }

      .header p {
          font-size: 1rem;
      }

      .item {
          width: 120px;
          height: 120px;
          padding: 15px;
      }
      
      .item i {
          font-size: 2rem;
          margin-bottom: 10px;
      }
      
      .item p {
          font-size: 0.9rem;
      }
  }

    .button-wrapper {
       display: flex;
       flex-wrap: wrap;
       margin-left: 50px;
       gap: 20px;
   }
   
   .button-container {
       position: relative;
       width: 330px;
       height: 350px;
       background-color: #333;
       border-radius: 8px;
       overflow: hidden;
       transition: background-color 0.3s;
       text-decoration: none;
       display: flex;
       flex-direction: column;
       margin-bottom: 20px;
   }
   
   .button-container:hover {
       background-color: #444;
   }
   
   .button-container video {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }
   
   .publisher-info {
       display: flex;
       align-items: center;
       background-color: rgba(0, 0, 0, 0.352);
       padding: 7px;
       width: 100%;
       box-sizing: border-box;
       position: absolute;
       bottom: 0;
       left: 0;
   }
   
   .publisher-img {
       width: 30px;
       height: 30px;
       border-radius: 10%;
       margin-right: 8px;
   }
   
   .publisher-text {
       color: white;
       font-size: 14px;
       font-weight: bold;
   }
   
   .logo-container {
       position: absolute;
       top: 8px;
       left: 8px;
       font-size: 30px;
       color: gray;
       transition: all 0.1s ease-in-out;
       display: flex;
       align-items: center;
   }
   
   .logo-container:hover {
       transform: scale(1.01);
       border-radius: 7px;
       padding: 4px 10px;
       color: white;
       background-color: #111;
   }
   
   .logo-text {
       display: none;
       font-size: 14px;
       color: gray;
       font-weight: bold;
       opacity: 0;
       transition: opacity 0.5s ease;
   }
   
   .logo-container:hover .logo-text {
       display: inline-block;
       opacity: 1;
       color: white;
   }
   
   .heart {
      align-items: center;
      justify-content: center;
      margin: 0 10px;
      cursor: pointer;
      font-size: 20px;
      color: #ff4d4d; /* Kırmızı renk */
   }
   
   .heart.active {
       color: #ff4d4d;
   }
   
   @media (max-width: 768px) {
       .button-container {
           width: 100%;
           margin-right: 0;
       }
   
       .button-wrapper {
           gap: 10px;
           margin-left: 140px;
       }
   }
   
   /* Başlık stilleri */
   .section-title {
       color: white;
       text-align: center;
       font-size: 35px;
       font-weight: bold;
       margin: 40px 0 20px;
       position: relative;
       display: inline-block;
       width: 100%;
   }
   
   .section-title:after {
       content: "";
       display: block;
       width: 150px;
       height: 4px;
       background: linear-gradient(90deg, #ff4d4d, #f9cb28);
       margin: 10px auto;
       border-radius: 2px;
   }
   
   /* Bölüm containerları */
   .section-container {
       width: 100%;
       padding: 0 20px;
       margin-bottom: 40px;
   }
   
   /* Başlık logoları */
   .title-logo {
       display: inline-flex;
       align-items: center;
       margin-right: 10px;
   }
   
   /* Göz simgesi rengi */
   .view-icon {
       color: #4285f4; /* Mavi renk */
   }
   
   /* Kod container stilleri */
   #codes-container {
       display: flex;
       flex-wrap: wrap;
       justify-content: flex-start;
       gap: 20px;
       margin-left: 23px;
   }
   
   .button-container {
       position: relative;
       width: 330px; /* Buton genişliği */
       height: 400px; /* Buton yüksekliği */
       background-color: #333;
       border-radius: 8px;
       overflow: hidden;
       transition: background-color 0.3s;
       text-decoration: none;
       display: flex;
       flex-direction: column;
   }
   
   .button-container iframe {
       width: 100%;
       height: 100%;
       border: none;
       background-color: #000;
   }
       
   .stats-container {
       display: flex;
       margin-left: auto;
       gap: 15px;
   }
       
   .stat-item {
       display: flex;
       align-items: center;
       color: white;
       font-size: 12px;
       gap: 5px;
   }
       
   .stat-item i {
       font-size: 16px;
   }

  .mobile-message {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 10000000000;
      padding: 20px;
      box-sizing: border-box;
  }
  
  .mobile-logo {
      font-size: 4rem;
      color: #ff4d4d;
      margin-bottom: 20px;
  }
  
  .mobile-title {
      font-size: 2rem;
      margin-bottom: 10px;
      font-weight: bold;
      color: white;
  }
  
  .mobile-text {
      font-size: 1rem;
      color: #aaa;
      max-width: 300px;
      line-height: 1.5;
  }
  
  @media only screen and (max-width: 1100px) {
      .main-content {
          display: none !important; /* Kesinlikle gizle */
      }
      
      .mobile-message {
          display: flex;
      }
      
      body, html {
          overflow: hidden; /* Mobilde kaydırmayı engelle */
      }
  }

      :root {
        --minimal-text: #ffffff;
        --minimal-muted: rgba(255, 255, 255, 0.7);
        --minimal-accent: #7a7aff;
        --minimal-glow: rgba(122, 122, 255, 0.3);
      }
    
      .minimal-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        padding: 3rem 1rem;
        max-width: 900px;
        margin: 0 auto;
      }
    
      .minimal-stat-card {
        background: transparent;
        border-radius: 0;
        padding: 1.5rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
      }
    
      .minimal-stat-card:hover {
        transform: translateY(-8px);
        text-shadow: 0 0 10px var(--minimal-glow);
      }
    
      .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(122, 122, 255, 0.15);
        border-radius: 50%;
        color: var(--minimal-accent);
        font-size: 1.8rem;
        transition: all 0.4s ease;
      }
    
      .minimal-stat-card:hover .stat-icon-wrapper {
        transform: scale(1.15);
        background: rgba(122, 122, 255, 0.3);
        box-shadow: 0 0 20px var(--minimal-glow);
      }
    
      .stat-number {
        font-size: 2.8rem;
        font-weight: 700;
        margin: 1rem 0;
        color: var(--minimal-text);
        transition: all 0.4s ease;
      }
    
      .minimal-stat-card:hover .stat-number {
        color: var(--minimal-accent);
      }
    
      .stat-caption {
        color: var(--minimal-muted);
        font-size: 1.2rem;
        line-height: 1.6;
        margin: 0;
        transition: all 0.4s ease;
      }
    
      .minimal-stat-card:hover .stat-caption {
        color: var(--minimal-text);
      }
    
      @media (max-width: 768px) {
        .minimal-stats {
          grid-template-columns: 1fr;
          gap: 3rem;
          padding: 2rem;
        }
        
        .stat-number {
          font-size: 2.5rem;
        }
        
        .stat-caption {
          font-size: 1.1rem;
        }
      }
    

    .neo-achievements {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px 60px;
    }
    
    .neo-accomplishment {
      background: linear-gradient(135deg, rgba(30,30,30,0.8) 0%, rgba(40,40,40,0.6) 100%);
      border-radius: 24px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
      opacity: 0;
      transform: translateY(30px);
      animation: neo-fade-in 0.8s forwards;
      animation-delay: var(--delay);
    }
    
    @keyframes neo-fade-in {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .neo-accomplishment-orb {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: rgba(20,20,20,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-bottom: 24px;
      box-shadow: 0 0 0 8px rgba(88, 101, 242, 0.1);
      transition: all 0.5s ease;
    }
    
    .neo-accomplishment:hover .neo-accomplishment-orb {
      transform: scale(1.1) rotate(8deg);
      box-shadow: 0 0 0 12px rgba(88, 101, 242, 0.15);
    }
    
    .neo-orb-fill {
      position: absolute;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }
    
    .neo-orb-fill circle {
      fill: none;
      stroke: var(--neo-primary);
      stroke-width: 6;
      stroke-linecap: round;
      animation: neo-circle-fill 1.5s forwards;
      animation-delay: calc(var(--delay) + 0.3s);
    }
    
    @keyframes neo-circle-fill {
      to {
        stroke-dashoffset: 0;
      }
    }
    
    .neo-accomplishment-orb i {
      font-size: 40px;
      color: var(--neo-primary);
      z-index: 2;
    }
    
    .neo-accomplishment-content {
      text-align: center;
    }
    
    .neo-accomplishment-value {
      font-size: 42px;
      margin: 0 0 8px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--neo-primary) 0%, var(--neo-accent-one) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }
    
    .neo-accomplishment-caption {
      color: var(--neo-text-secondary);
      font-size: 18px;
      line-height: 1.5;
      margin: 0;
    }
    
    .neo-accomplishment-sparkles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
    }
    
    .neo-accomplishment-sparkles::before,
    .neo-accomplishment-sparkles::after {
      content: '';
      position: absolute;
      width: 15px;
      height: 15px;
      background: white;
      border-radius: 50%;
      opacity: 0;
      filter: blur(2px);
    }
    
    .neo-accomplishment-sparkles::before {
      top: 20%;
      left: 20%;
      animation: neo-sparkle 3s infinite;
    }
    
    .neo-accomplishment-sparkles::after {
      bottom: 25%;
      right: 20%;
      animation: neo-sparkle 3s infinite 1s;
    }
    
    @keyframes neo-sparkle {
      0% { transform: scale(0); opacity: 0; }
      50% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(0); opacity: 0; }
    }
    
    @media (max-width: 768px) {
      .neo-achievements {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .neo-accomplishment {
        padding: 24px;
      }
      
      .neo-accomplishment-orb {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
      }
      
      .neo-accomplishment-orb i {
        font-size: 32px;
      }
      
      .neo-accomplishment-value {
        font-size: 36px;
      }
    }
    

    :root {
      --neo-primary: #5865F2;
      --neo-primary-dark: #4752C4;
      --neo-primary-light: rgba(88, 101, 242, 0.15);
      --neo-secondary: #1a1a1a;
      --neo-tertiary: #2a2a2a;
      --neo-text-primary: #f0f0f0;
      --neo-text-secondary: #aaaaaa;
      --neo-accent-one: #a78bfa;
      --neo-accent-two: #57F287;
      --neo-accent-three: #EB459E;
      --neo-tech-color: #4a5568;
      --neo-design-color: #3b3bcc;
      --neo-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
 
    
    .neo-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px 40px;
      display: grid;
      gap: 32px;
    }
    
    .neo-panel {
      max-width: 1240px;
      margin: 0 auto;
      padding: 40px 20px 20px;
    }
    
    /* Heading Styles */
    .neo-heading {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 30px;
      color: var(--neo-text-primary);
      margin-bottom: 24px;
      font-weight: 700;
    }
    
    .neo-icon-frame {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      background: linear-gradient(90deg, #ff4d4d, #f9cb28);
      border-radius: 14px;
      color: white;
      font-size: 26px;
      animation: neo-float 3.5s ease-in-out infinite;
    }
    
    /* Grid Tiles */
    .neo-grid-tiles {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }
    
    .neo-tile-shimmer {
      background: var(--neo-tertiary);
      border-radius: 14px;
      padding: 16px 26px;
      position: relative;
      overflow: hidden;
      width: 140px;
      height: 48px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    
    .neo-shimmer-effect {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, #2a2a2a 0%, #353535 50%, #2a2a2a 100%);
      background-size: 200% 100%;
      animation: neo-shimmer 1.8s infinite linear;
    }
    
    /* Metrics Section */
    .neo-metrics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px 40px;
    }
    
    .neo-metric-card {
      background: var(--neo-secondary);
      border-radius: 18px;
      padding: 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      border: 1px solid rgba(255,255,255,0.07);
    }
    
    .neo-metric-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--neo-shadow);
    }
    
    .neo-pulse-glow {
      animation: neo-pulse 2.5s infinite;
    }
    
    @keyframes neo-pulse {
      0% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.3); }
      70% { box-shadow: 0 0 0 18px rgba(88, 101, 242, 0); }
      100% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0); }
    }
    
    .neo-metric-icon {
      width: 76px;
      height: 76px;
      margin: 0 auto 22px;
      background: var(--neo-primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      color: linear-gradient(90deg, #ff4d4d, #f9cb28);
      position: relative;
    }
    
    .neo-float-animate {
      animation: neo-float 4s ease-in-out infinite;
    }
    
    .neo-metric-value {
      font-size: 40px;
      margin: 0 0 12px;
      font-weight: 800;
      background: linear-gradient(135deg, linear-gradient(90deg, #ff4d4d, #f9cb28) 0%, var(--neo-accent-one) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .neo-metric-label {
      color: var(--neo-text-secondary);
      font-size: 17px;
      line-height: 1.6;
      margin: 0;
    }
    
    .neo-metric-underline {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 4px;
      background:linear-gradient(90deg, #ff4d4d, #f9cb28);
      transition: all 0.4s ease;
    }
    
    .neo-metric-card:hover .neo-metric-underline {
      width: 88px;
    }
    
    /* Design Tool Card */
    .neo-tool-card {
      background-color: var(--neo-secondary);
      padding: 32px;
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
      cursor: pointer;
    }
    
    .neo-tool-content {
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
      z-index: 2;
    }
    
    .neo-tool-logo {
      background-color: rgba(255,255,255,0.12);
      padding: 18px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .neo-logo-aura {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 14px;
      background: radial-gradient(circle, rgba(88,101,242,0.4) 0%, rgba(88,101,242,0) 70%);
      animation: neo-halo 3.5s infinite;
    }
    
    @keyframes neo-halo {
      0% { opacity: 0.6; transform: scale(0.94); }
      50% { opacity: 0.9; transform: scale(1.06); }
      100% { opacity: 0.6; transform: scale(0.94); }
    }
    
    .neo-tool-icon {
      width: 44px;
      height: 44px;
      transition: all 0.4s ease;
    }
    
    .neo-tool-card:hover .neo-tool-icon {
      transform: rotate(18deg) scale(1.1);
    }
    
    .neo-tool-info {
      flex: 1;
    }
    
    .neo-tool-title {
      font-size: 22px;
      margin-bottom: 8px;
      font-weight: 700;
    }
    
    .neo-tool-desc {
      color: var(--neo-text-secondary);
      font-size: 16px;
    }
    
    .neo-tool-arrow {
      margin-left: auto;
      opacity: 0.7;
      transition: all 0.4s ease;
    }
    
    .neo-tool-card:hover .neo-tool-arrow {
      transform: translateX(6px);
      opacity: 1;
    }
    
    .neo-tool-watermark {
      position: absolute;
      bottom: -22px;
      right: -22px;
      font-size: 72px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      z-index: 1;
      pointer-events: none;
      user-select: none;
      font-family: 'Inter', sans-serif;
    }
    
    /* Content Section */
    .neo-content-section {
      margin-top: 64px;
    }
    
    .neo-section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
    }
    
    .neo-section-title {
      font-size: 30px;
      font-weight: 800;
      position: relative;
      display: inline-block;
    }
    
    .neo-section-title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      border-radius: 10px;
      width: 56px;
      height: 4px;
      background:linear-gradient(90deg, #ff4d4d, #f9cb28);
      transition: width 0.4s ease;
    }
    
    .neo-section-title:hover::after {
      width: 112px;
    }
    
    .neo-view-all {
      color: var(--neo-text-secondary);
      text-decoration: none;
      font-size: 17px;
      transition: all 0.4s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
    }
    
    .neo-view-all:hover {
      color: white;
    }
    
    .neo-arrow-motion {
      transition: transform 0.4s ease;
    }
    
    .neo-view-all:hover .neo-arrow-motion {
      transform: translateX(4px);
    }
    
    .neo-content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }
    
    /* Article Cards */
    .neo-article-card {
      background-color: var(--neo-secondary);
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.4s ease;
      position: relative;
      border: 1px solid rgba(255,255,255,0.07);
    }
    
    .neo-article-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--neo-shadow);
    }
    
    .neo-article-visual {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    
    .neo-article-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .neo-article-card:hover .neo-article-image {
      transform: scale(1.06);
    }
    
    .neo-image-filter {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .neo-article-card:hover .neo-image-filter {
      opacity: 1;
    }
    
    .neo-content-tag {
      position: absolute;
      top: 18px;
      left: 18px;
      font-size: 13px;
      padding: 5px 14px;
      border-radius: 24px;
      color: white;
      font-weight: 700;
      z-index: 2;
      letter-spacing: 0.5px;
    }
    
    .neo-tech-tag {
      background-color: var(--neo-tech-color);
    }
    
    .neo-design-tag {
      background-color: var(--neo-design-color);
    }
    
    .neo-article-body {
      padding: 22px;
      position: relative;
      z-index: 2;
    }
    
    .neo-article-heading {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.5;
      transition: color 0.4s ease;
    }
    
    .neo-article-card:hover .neo-article-heading {
      color: linear-gradient(90deg, #ff4d4d, #f9cb28);
    }
    
    .neo-article-excerpt {
      color: var(--neo-text-secondary);
      font-size: 15px;
      margin-bottom: 18px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.6;
    }
    
    .neo-article-meta {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--neo-text-secondary);
      font-weight: 500;
    }
    
    .neo-article-hover {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 22px;
      background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
      opacity: 0;
      transform: translateY(12px);
      transition: all 0.4s ease;
      z-index: 3;
      display: flex;
      justify-content: center;
    }
    
    .neo-article-card:hover .neo-article-hover {
      opacity: 1;
      transform: translateY(0);
    }
    
    .neo-read-btn {
      background: linear-gradient(90deg, #ff4d4d, #f9cb28);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 24px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.4s ease;
      width: 80%;
      letter-spacing: 0.5px;
    }
    
    .neo-read-btn:hover {
      background: var(--neo-primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(88, 101, 242, 0.3);
    }
    
    /* Signature Element */
    .neo-signature {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 68px;
      height: 68px;
      z-index: 100;
      animation: neo-float 7s ease-in-out infinite;
      opacity: 0.8;
      transition: all 0.4s ease;
      filter: drop-shadow(0 4px 8px rgba(88, 101, 242, 0.3));
    }
    
    .neo-signature:hover {
      opacity: 1;
      transform: scale(1.12);
    }
    
    .neo-logo-svg {
      width: 100%;
      height: 100%;
    }
    
    .neo-logo-trail {
      stroke-dasharray: 280;
      stroke-dashoffset: 280;
      animation: neo-draw 3.5s ease-in-out forwards;
    }
    
    @keyframes neo-draw {
      to { stroke-dashoffset: 0; }
    }
    
    @keyframes neo-float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-18px); }
      100% { transform: translateY(0px); }
    }
    
    @keyframes neo-shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 864px) {
      .neo-metrics {
        grid-template-columns: 1fr;
      }
      
      .neo-content-grid {
        grid-template-columns: 1fr;
      }
      
      .neo-signature {
        width: 56px;
        height: 56px;
        bottom: 24px;
        right: 24px;
      }
    }
    
    @media (max-width: 540px) {
      .neo-container {
        padding: 0 16px 32px;
      }
      
      .neo-panel {
        padding: 32px 16px 16px;
      }
      
      .neo-heading {
        font-size: 26px;
      }
      
      .neo-icon-frame {
        width: 46px;
        height: 46px;
        font-size: 22px;
      }
      
      .neo-section-title {
        font-size: 26px;
      }
      
      .neo-signature {
        width: 48px;
        height: 48px;
      }
    }
    
    /* Number Counting Animation */
    .neo-metric-value[data-count] {
      display: inline-block;
    }
    

  /* İstatistik konteyneri */
.stats-container {
display: flex;
gap: 20px;
margin-left: auto;
align-items: center;
}
  .icon {
          font-size: 20px; /* İkon boyutu */
          margin-right: 10px;
      }
  
      .text {
          font-size: 15px;
          font-weight: bold;
      }
.stat-item {
display: flex;
align-items: center;
gap: 6px;
cursor: default;
color: white;
font-size: 16px;
}

.stat-count {
font-size: 14px;
}

/* Like (Kalp) */
.heart-icon {
cursor: pointer;
font-size: 15px;
color: #ff4757;
transition: all 0.2s;
display: inline-block;
}

.heart-icon:hover {
transform: scale(1.1);
}

.heart-icon.liked {
color: #ff4757; /* Kırmızı */
animation: heartBeat 0.3s;
}

@keyframes heartBeat {
0% { transform: scale(1); }
25% { transform: scale(1.3); }
50% { transform: scale(1); }
75% { transform: scale(1.2); }
100% { transform: scale(1); }
}

/* View (Göz) */
.view-icon {
color: #70a1ff; /* Mavi */
font-size: 20px;
display: inline-block;
vertical-align: middle;
}

  :root {
    --primary-green: #22c55e;
    --hover-green: #16a34a;
    --active-green: #15803d;
    --text-white: #f8fafc;
    --glow-effect: rgba(34, 197, 94, 0.4);
  }

  /* 1. FLEXBOX YÖNTEMİ (ÖNERİLEN) */
  .flex-center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }


  /* BUTON STİLLERİ (ORTAK) */
  .modern-code-button {
    display: inline-flex;
    background-color: var(--primary-green);
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    width: 280px;
    height: 72px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* Margin Auto için ek stil */
  .margin-auto-button {
    margin: 0 auto;
  }

  /* Absolute için ek stil */
  .absolute-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .modern-code-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--glow-effect);
  }

  .modern-code-button:active {
    transform: translateY(0);
    background-color: var(--active-green);
  }

  .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .button-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
  }

  .modern-code-button:hover .button-icon {
    transform: scale(1.1) rotate(-5deg);
  }

  .button-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
  }

  .modern-code-button:hover .button-text {
    transform: translateX(4px);
  }

  .button-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(255,255,255,0.1) 0%, 
                rgba(255,255,255,0.3) 50%, 
                rgba(255,255,255,0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
  }

  .modern-code-button:hover .button-hover-effect {
    transform: translateX(100%);
  }

  @media (max-width: 480px) {
    .modern-code-button {
      width: 240px;
      height: 60px;
    }
    
    .button-text {
      font-size: 16px;
    }
  }

  /* Örnekleri ayırmak için */
  .method-title {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: 40px;
  }

      #pagination-buttons {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 20px;
        padding: 0 20px;
    }
    
    #pagination-buttons button {
        width: auto;
        height: 65px;
        width: 500px;
        background-color: #222;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease;
        display: flex;
        align-items: center;
        padding: 0 20px;
    }
    
    #pagination-buttons button:hover {
        background-color: #333;
        box-shadow: 0px 8px 16px #444;
    }
    
    #pagination-buttons button:disabled {
        background-color: #555;
        cursor: not-allowed;
        box-shadow: 0px 8px 16px #444;
    }
    
    #pagination-buttons button i {
        font-size: 20px;
    }
    
    #prev-page {
        justify-content: flex-start;
    }
    
    #next-page {
        justify-content: flex-end;
    }
    .empty-state {
        text-align: center;
        padding: 50px;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .empty-state i {
        font-size: 50px;
        margin-bottom: 20px;
        color: white;
    }
 

          /* İstatistik konteyneri */
.stats-container {
  display: flex;
  gap: 20px;
  margin-left: auto;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  color: white;
  font-size: 16px;
}

.stat-count {
  font-size: 14px;
}

/* Like (Kalp) */
.heart-icon {
  
  color: #ff4757;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}

.heart-icon:hover {
  transform: scale(1.1);
}

.heart-icon.liked {
  color: #ff4757; /* Kırmızı */
  animation: heartBeat 0.3s;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* View (Göz) */
.view-icon {
  color: #70a1ff; /* Mavi */
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
        

    .footer-container {
      color: white;
      padding: 20px;
      width: 100%; /* Genişlik %95 */
      z-index: 10000;
      position: sticky;
      height: auto; /* Yükseklik otomatik */
      box-sizing: border-box; /* Padding'i genişliğe dahil et */
    }
  
    .footer-content {
      display: inline-block;
      width: 60%; /* Yazıların genişliği */
      vertical-align: top;
    }
  
    .footer-content h1 {
      font-size: 20px; /* Başlık boyutu küçültüldü */
      margin-bottom: 10px;
    }
  
    .footer-content p {
      font-size: 12px; /* Yazı boyutu küçültüldü */
      line-height: 1.4;
      margin-bottom: 10px;
    }
  
    .footer-links {
      display: inline-block;
      width: 20%; /* Bağlantıların genişliği */
      vertical-align: top;
      margin-left: 20px; /* Yazılar ile bağlantılar arası boşluk */
    }
  
    .footer-links h1 {
      font-size: 20px;
      color: #d5d5d5;
      margin-bottom: 10px;
    }
  
    .footer-links a {
      display: block;
      color: #ddd;
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 8px;
      transition: font-size 0.3s ease;
    }
  
    .footer-links a:hover {
      font-size: 16px;
      text-decoration: underline;
    }
  
    .footer-image {
      display: inline-block;
      width: 15%; /* Resim genişliği */
      text-align: right;
    }
  
    .footer-image img {
      width: 120px;
      border-radius: 8px;
    }
  
    .footer-copyright {
      text-align: center;
      font-size: 12px;
      margin-top: 20px;
      color: #ddd;
    }
  
