* {margin: 0; padding: 0; box-sizing: border-box;}
    html,body {
      font-family: 'Inter', sans-serif;
      background-color: #121212;
      color: #e0e0e0;
      height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      background-color: #1c1c1c;
      border-bottom: 1px solid #333;
    }
    .logo {
      font-weight: bold;
      font-size: 20px;
      color: #00acee;
    }

    .carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 10px 0;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 0 16px;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  min-width: 120px;
  background-color: #2a2a2a;
  padding: 10px;
  border-radius: 10px;
  flex-shrink: 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.carousel-item:hover {
  background-color: #3a3a3a;
}

.carousel-arrow {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 30px;
  width: 100px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease;
}
	  
	  .carousel a {
  min-width: 120px;
  background-color: #2a2a2a;
  padding: 10px;
  border-radius: 10px;
  flex-shrink: 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.carousel a:hover {
  background-color: #3a3a3a;
}

.content::-webkit-scrollbar {
    display: none;
  }

    .content {
      flex: 1;
  overflow-y: auto;
  padding: 16px;
  scroll-behavior: smooth;
		margin-bottom: 50px;
    }
    .card {
      background-color: #1e1e1e;
      margin-bottom: 16px;
      padding: 12px;
      border-radius: 10px;
    }
    .card video, .card img {
      width: 100%;
      border-radius: 10px;
    }
    .card h3 {
      margin-top: 10px;
      font-size: 16px;
    }

.card a{
 color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;	
}

    .bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1c1c1c;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #333;
  padding: 8px 0;
  z-index: 1000;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1c1c1c;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid #333;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ccc;
  font-size: 11px;
  text-decoration: none;
}

.bottom-nav .icon {
  width: 35px;
  height: 35px;
  stroke-width: 2;
  margin-bottom: 4px;
}

    .dark-toggle {
      background: none;
      border: none;
      color: #e0e0e0;
      font-size: 16px;
      cursor: pointer;
    }
	  
	  /* Light mode için renkler */
body.light-mode {
  background-color: #f5f5f5;
  color: #222222;
  overflow-x: hidden;
}

body.light-mode header {
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
}

body.light-mode .logo {
  color: #0077cc;
}

body.light-mode .carousel-wrapper {
  background-color: #fafafa;
}

body.light-mode .carousel-item,
body.light-mode .carousel a {
  background-color: #ffffff;
  color: #222222;
  transition: background 0.2s ease;
}

body.light-mode .carousel-item:hover,
body.light-mode .carousel a:hover {
  background-color: #e0e0e0;
}

body.light-mode .card {
  background-color: #ffffff;
  color: #222222;
}

body.light-mode .card a {
  color: #222222;
}

body.light-mode .bottom-nav {
  background-color: #ffffff;
  border-top: 1px solid #ccc;
}

body.light-mode .bottom-nav a {
  color: #555555;
}

body.light-mode .dark-toggle {
  color: #222222;
}

.sun-icon {
  display: none; /* Başlangıçta gizli */
}

body.light-mode .moon-icon {
  display: none; /* Aydınlık modda ay ikonu gizli */
}

body.light-mode .sun-icon {
  display: inline-block; /* Aydınlık modda güneş ikonu görünür */
}

	  body.light-mode .carousel-arrow{
		  color: #222222;
	  }

@media (min-width: 1024px) {
  /* Ortalanacak container yapıları */
  header,
  .bottom-nav,
  .carousel-wrapper,
  .carousel{
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .carousel overflow yüzünden görünmeyebilir, bu çözüm: */


  /* .bottom-nav'ın tam ortada durması için position iptali */
  .bottom-nav {
    left: 50%;
    transform: translateX(-50%);
  }
	
	.content {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
		margin-bottom:50px;
  }
}