  .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 */
      }
  }

          .create-btn {
            display: inline-flex;
            align-items: center;
            margin-top: 5px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            height: 50px;
            background: linear-gradient(135deg, #ea0000, #8a0000);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
          }
          
          .create-btn i {
            font-size: 15px;
            transition: transform 0.3s ease;
            margin-right: 8px;
          }
          
          .create-btn:hover {
            background: linear-gradient(135deg, #00d60b, #0c7d10);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 234, 12, 0.4);
          }
          .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%;
}
        

      .notification-wrapper {
margin-top: 5px;
          z-index: 99999;
      }

      .notification-container {
          position: relative;
          width: 50px;
          height: 50px;
          border-radius: 12px;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer;
          transition: all 0.3s ease;
          z-index: 99999;
      }

      .notification-container:hover {
          background-color: #444;
          transform: scale(1.1);
      }

      .notification-badge {
          position: absolute;
          top: -5px;
          right: -5px;
          background-color: #ff4757;
          color: white;
          border-radius: 50%;
          width: 20px;
          height: 20px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 12px;
          font-weight: bold;
      }

      .notification-icon {
          font-size: 24px;
          color: #fff;
      }

      .notification-box {
          position: absolute;
          top: 60px;
          right: 0;
          width: 350px;
          max-height: 400px;
          background-color: #2d2d2d;
          border-radius: 15px;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
          overflow: hidden;
          transform: scale(0);
          transform-origin: top right;
          transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
          opacity: 0;
          display: flex;
          flex-direction: column;
          z-index: 99999;
      }

      .notification-box.open {
          transform: scale(1);
          opacity: 1;
      }

      .notification-header {
          padding: 15px 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          border-bottom: 1px solid #444;
          background-color: #333;
      }

      .notification-header h3 {
          margin: 0;
          font-size: 16px;
          color: #fff;
          display: flex;
          align-items: center;
          gap: 10px;
      }

      .notification-header .close-btn {
          background: none;
          border: none;
          color: #aaa;
          font-size: 20px;
          cursor: pointer;
          transition: color 0.2s;
      }

      .notification-header .close-btn:hover {
          color: #fff;
      }

      .notification-content {
          flex: 1;
          overflow-y: auto;
          padding: 0;
      }

      .notification-item {
          padding: 15px 20px;
          border-bottom: 1px solid #3a3a3a;
          transition: background-color 0.2s;
          animation: slideIn 0.3s ease-out;
          display: flex;
          gap: 12px;
      }

      .notification-item:last-child {
          border-bottom: none;
      }

      .notification-item:hover {
          background-color: #383838;
      }

      .notification-item-icon {
          font-size: 20px;
          color: #4dabf7;
          flex-shrink: 0;
      }

      .notification-item-content {
          flex: 1;
      }

      .notification-item-title {
          font-size: 14px;
          font-weight: 600;
          color: #fff;
          margin-bottom: 5px;
      }

      .notification-item-message {
          font-size: 13px;
          color: #bbb;
          margin-bottom: 8px;
          line-height: 1.4;
      }

      .notification-item-time {
          font-size: 11px;
          color: #777;
          display: block;
      }

      .notification-item-actions {
          display: flex;
          justify-content: flex-end;
          gap: 10px;
          margin-top: 8px;
      }

      .notification-item-btn {
          padding: 4px 10px;
          border: none;
          border-radius: 4px;
          font-size: 12px;
          cursor: pointer;
          transition: all 0.2s;
      }

      .notification-item-btn.delete {
          background-color: #ff6b6b;
          color: white;
      }

      .notification-item-btn.delete:hover {
          background-color: #ff4757;
      }

      .notification-empty {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          padding: 40px 20px;
          text-align: center;
          color: #777;
      }

      .notification-empty i {
          font-size: 40px;
          margin-bottom: 15px;
          color: #555;
      }

      .notification-empty p {
          font-size: 14px;
      }

      @keyframes slideIn {
          from {
              opacity: 0;
              transform: translateY(-10px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .notification-content::-webkit-scrollbar {
          width: 6px;
      }

      .notification-content::-webkit-scrollbar-track {
          background: #2a2a2a;
      }

      .notification-content::-webkit-scrollbar-thumb {
          background: #555;
          border-radius: 3px;
      }

      .notification-content::-webkit-scrollbar-thumb:hover {
          background: #666;
      }
  

          .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;
        }
        .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: 1;
          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;
          gap: 15px;
          margin-left: auto; /* Sağa yasla */
          margin-right: 20px; /* Sağdan boşluk bırak */
        }
      
        .people-button {
          display: inline-block;
          margin: 2px;
          padding: 12px 20px;
          font-size: 14px;
          margin-top: 7px;
          color: #fff;
          height: 45px;
          background-color: rgb(0, 234, 12);
          border: none;
          border-radius: 5px;
          cursor: pointer;
          text-decoration: none;
          transition: background-color 0.3s ease, transform 0.3s ease;
        }
      
        .people-button:hover {
          background-color: rgb(0, 225, 11);
          box-shadow:0px 5px 90px rgb(0, 255, 0);
        }
      
        .people-button:active {
          transform: scale(0.95);
        }
      
        .people-button i {
          margin-right: 8px;
          color: #fff;
        }
      
        /* İkonlar için ek stil */
        .people-button .fa-user-plus,
        .people-button .fa-sign-in-alt {
          filter: grayscale(100%);
        }
        /* 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;
          }
        }
      

          .logo-img {
      width: 30px; /* İstediğiniz boyutu ayarlayın */
      height: 30px;
      opacity: 0;
      transition: opacity 0.3s ease;
      margin-right: 10px;
    }
    #hh{
      opacity: 0;
      font-size: 20px;
    }
    .sidebar.open #hh{
      opacity: 1;
    }
    .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;
  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;
  }
}
  

  .container {
      display: flex;
      justify-content: flex-start;
      gap: 30px;
      width: 100%;
      background: linear-gradient(to bottom, #111, rgb(11, 11, 11));
      background-color: black;
      color: gray;
      padding: 30px 130px;
      flex-wrap: wrap;
  }

  .header-content {
      display: flex;
      align-items: center;
      gap: 20px;
      width: 100%;
  }

  .header-text {
      flex: 1;
  }

  .header-logo {
      font-size: 60px;
      color: white;
  }

  h1.title {
      font-size: 40px;
      color: white;
      margin: 0 0 10px 0;
      font-weight: 600;
  }

  p.subtitle {
      font-size: 15px;
      color: white;
      margin: 0;
      line-height: 1.5;
      opacity: 0.8;
  }

  .item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 200px;
  }

  .item img {
      width: 50px;
      height: 50px;
  }

  .item p {
      color: white;
      font-size: 1rem;
      margin: 0;
      font-weight: 400;
  }

  @media (max-width: 768px) {
      .container {
          padding: 30px 50px;
          margin-left: 50px;
      }
      
      .header-content {
          flex-direction: column;
          align-items: flex-start;
          gap: 15px;
      }
      
      .header-logo {
          font-size: 50px;
      }
      
      h1.title {
          font-size: 2rem;
      }
      
      p.subtitle {
          font-size: 1rem;
      }

      .container {
          align-items: center;
          gap: 15px;
      }

      .item {
          justify-content: center;
      }
  }

  @media (max-width: 480px) {
      .container {
          padding: 20px;
      }
      
      .item img {
          width: 40px;
          height: 40px;
      }

      .item p {
          font-size: 0.9rem;
      }
      
      h1.title {
          font-size: 1.8rem;
      }
  }
  .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;
}

  .sort-filter-container {
      justify-content: flex-end;
      border-radius: 6px;
      font-weight: bold;
      margin-bottom: 2px;
  }
  
  .sort-filter-container select, 
  .sort-filter-container input,
  .sort-filter-container button {
      transition: all 0.2s ease;
  }
  
  .sort-filter-container select:hover, 
  .sort-filter-container input:hover {
      background: #444 !important;
  }
  
  .sort-filter-container button:hover {
      background: #555 !important;
      transform: translateY(-1px);
  }
  
  /* Highlight for trending button */
  #trending-btn {
      background: linear-gradient(135deg, #ff4d4d, #990000) !important;
      color: white !important;
  }
  
  #trending-btn:hover {
      background: linear-gradient(135deg, #ff6666, #aa0000) !important;
      box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  }

    .button-wrapper {
       display: flex;
       flex-wrap: wrap;
       gap: 30px; /* Butonlar arasındaki boşluk */
       margin-left: 80px; /* Sol kenardan boşluk */
   }
   
   .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: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: gray;
       transition: color 0.3s;
   }
   
   .heart.active {
       color: red;
   }
   
   @media (max-width: 768px) {
       .button-container {
           width: 100%; /* Buton genişliği %40 */
           margin-right: 0; /* Sağdan boşluk kaldırıldı */
       }
   
       .button-wrapper {
           gap: 10px; /* Butonlar arasındaki boşluk */
           margin-left: 140px;
       }
   }
   

         #codes-container {
           display: flex;
           flex-wrap: wrap; /* Kutuların yan yana ve alt alta sıralanmasını sağlar */
           justify-content: flex-start; /* Kutuları sola hizalar */
           gap: 20px; /* Kutular arası boşluk */
           margin-left: 30px;
         }
     
         .button-container {

           background-color: #252526;
           border-radius: 10px;
           overflow: hidden;
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: space-between;
           box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
         }
     
         .button-container iframe {
           width: 100%;
           height: 100%; /* iframe yüksekliği */
           border: none;
           background-color: #000; /* Arka plan rengi */
         }
       

      #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: #ccc;
  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;
    }
  
