  .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: 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;
        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;
    }
  }

          .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;
    }
 

          .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;
          }
        
          .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;
            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); }
          }
        

  .footer-container {
    color: white;
    padding: 20px;
    width: 90%; /* 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;
  }
