  .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 */
      }
  }

      .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: #444;
        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;
      }
    
      .dropbtn {
        background-color: transparent;
        color: white;
        padding: 8px 20px; /* Yazı boyutu küçültüldü */
        font-size: 14px; /* Yazı boyutu küçültüldü */
        height: 39px;
        border: none;
        background-color: #222;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
  
      .dropdown-contentt {
        display: none;
        position: absolute;
        min-width: 800px; /* Grid için genişlik */
        z-index: 1;
        border-radius: 8px;
        overflow: hidden;
        padding: 10px; /* Grid içeriği için padding */
      }
    
      .grid-container {
        display: grid;
        width: 300px;
        grid-template-columns: repeat(2, 1fr); /* 4x4 grid yapısı */
        gap: 3px; /* Kutular arası boşluk */
      }
    
      .grid-container a {
        color: white;
        padding: 10px;
        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 */
      .terms-link {
        color: white;
        padding: 9px;
        border-radius: 10px;
        text-decoration: none;
        margin-left: 20px;
        font-size: 14px; /* Yazı boyutu küçültüldü */
            height: 38px;
    transition: all 0.3s ease-in-out;
      }
    
      .terms-link:hover {
        color: #ccc;
        background-color: #444;
      }
    
      /* 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: 250px; /* Mobilde grid genişliği */
        }
    
        .grid-container {
          grid-template-columns: repeat(2, 1fr); /* Mobilde 2x4 grid yapısı */
        }
      }
    

    /* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body{
    background-color:#111 ;
    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;
  }
}
  

  .about-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 100%;
      background: #111;
      color: white;
      padding: 40px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      box-sizing: border-box;
  }

  .about-inner {
      max-width: 800px;
      width: 100%;
  }

  .header-wrapper {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      justify-content: center;
      flex-direction: column;
  }

  .logo {
      font-size: 3rem;
      color: #ff4d4d;
  }

  .about-header {
      font-size: 2.2rem;
      margin: 0;
      text-align: center;
      color: white;
      position: relative;
      padding-bottom: 15px;
  }

  .about-header:after {
      content: "";
      display: block;
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, #ff4d4d, #f9cb28);
      margin: 10px auto 0;
      border-radius: 3px;
  }

  .about-content {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
      text-align: left;
  }

  .about-content p {
      margin-bottom: 12px;
  }

  .about-content strong {
      color: #ff4d4d;
      font-weight: 600;
  }

  .signature {
      font-style: italic;
      margin: 15px 0;
      text-align: right;
      color: #ccc;
  }

  .section-title {
      font-size: 1.3rem;
      margin: 25px 0 10px;
      color: white;
      text-align: left;
      border-bottom: 1px solid #333;
      padding-bottom: 5px;
  }

  .links-list {
      list-style-type: none;
      padding: 0;
      margin: 15px 0;
  }

  .links-list li {
      margin: 8px 0;
  }

  .links-list a {
      color: #ff8888;
      text-decoration: none;
      transition: color 0.2s;
  }

  .links-list a:hover {
      color: white;
      text-decoration: underline;
  }

  .contact-info {
      margin-top: 25px;
  }

  .contact-info ul {
      list-style-type: none;
      padding: 0;
  }

  .contact-info li {
      margin: 8px 0;
  }

  .email-link {
      color: #ff8888;
      text-decoration: none;
  }

  .email-link:hover {
      text-decoration: underline;
  }

  .copyright {
      margin-top: 30px;
      font-size: 0.85rem;
      color: #999;
      text-align: center;
  }

  @media (max-width: 768px) {
      .about-container {
          padding: 30px 15px;
      }
      
      .about-header {
          font-size: 1.8rem;
      }
      
      .section-title {
          font-size: 1.2rem;
      }
  }

        :root {
            --primary: #3a86ff;
            --secondary: #8338ec;
            --dark: #212529;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --danger: #dc3545;
            --warning: #ffc107;
            --info: #17a2b8;
        }
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        header::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 1rem auto;
            border-radius: 2px;
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }
        
        .subtitle {
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .blog-card {
            background: #111;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .card-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .card-content {
            padding: 1.5rem;
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            align-items: center;
        }
        
        .card-category {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .card-date-views {
            display: flex;
            gap: 0.5rem;
            color: var(--gray);
            font-size: 0.8rem;
        }
        
        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .card-excerpt {
            color: var(--gray);
            margin-bottom: 1.25rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .author-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-name {
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
            padding: 2rem;
        }
        
        .modal-content {
            background: #111;
            max-width: 900px;
            margin: 2rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
        }
        
        .modal-body {
            padding: 2.5rem;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            align-items: center;
        }
        
        .modal-category {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .modal-date-views {
            display: flex;
            gap: 1rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .modal-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        
        .modal-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .modal-author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .modal-author-info {
            display: flex;
            flex-direction: column;
        }
        
        .modal-author-name {
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .modal-author-title {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .modal-text {
            color: white;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .modal-text p {
            margin-bottom: 1.5rem;
        }
        
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        
        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .tag-container {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .tag {
            background-color: #e9ecef;
            color: var(--dark);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .sponsored {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--warning);
            color: var(--dark);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-body {
                padding: 1.5rem;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }
        }
    

.contribute-card {
    background: #000;
    border-radius: 12px;
    padding: 25px;
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contribute-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contribute-icon {
    width: 24px;
    height: 24px;
    color: #6d28d9;
}

.contribute-title {
    margin: 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.contribute-content {
    color: #e5e7eb;
}

.invitation-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #d1d5db;
}

.section-title {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #222;
}

.tech-icon {
    width: 18px;
    height: 18px;
    color: #6d28d9;
    flex-shrink: 0;
}

.contact-section {
    display: flex;
    gap: 15px;
    background: #111;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #6d28d9;
    margin-top: 2px;
}

.contact-text {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.email-link {
    color: #8b5cf6;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.email-link:hover {
    color: #7c3aed;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .contribute-card {
        padding: 20px;
    }
    
    .contribute-title {
        font-size: 1.3rem;
    }
}

    .button-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-left: 115px;
    }

   .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.8);
        padding: 5px;
        width: 100%;
        box-sizing: border-box;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .publisher-img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin-right: 8px;
    }

    .publisher-text {
        color: white;
        font-size: 14px;
        font-weight: bold;
    }

    .logo-container {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 30px;
        color: white;
        transition: transform 0.5s ease;
        display: flex;
        align-items: center;
    }

    .logo-container:hover {
        transform: scale(1.1);
    }

    .logo-text {
        display: none;
        font-size: 14px;
        color: white;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .logo-container:hover .logo-text {
        display: inline-block;
        opacity: 1;
    }

  .footer-container {
    color: white;
    margin-left: 80px;
    padding: 20px;
    width: 90%; /* Genişlik %95 */
    z-index: 10000;
    position: sticky;
    background-color: #111;
    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;
  }
