* {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 {
      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;
	  }

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


@media (min-width: 1024px) {

  /* === GENEL FULL WIDTH MASAÜSTÜ TASARIMI === */
  body {
    overflow: hidden;
  }

  header {
    width: 100%;
    max-width: none;
    padding: 20px 40px;
    background-color: #181818;
    border-bottom: 1px solid #2a2a2a;
  }

  .logo {
    font-size: 24px;
  }

  /* === CAROUSEL TAM GENİŞLİK === */
  .carousel-wrapper {
    width: 100%;
    max-width: none;
    padding: 20px 40px;
    background-color: #161616;
    border-bottom: 1px solid #222;
  }

  .carousel {
    gap: 16px;
    padding: 0;
  }

  .carousel-item,
  .carousel a {
    min-width: 160px;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    background-color: #242424;
  }

  /* === İÇERİK FULL WIDTH + GRID === */
  .content {
    width: 100%;
    max-width: none;
    padding: 30px 40px;
    margin: 0;
    margin-bottom: 100px;
    overflow-y: auto;
  }

  /* Kartlar masaüstünde grid oluyor */
  .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolon */
    gap: 24px;
  }

  .card {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }

  .card h3 {
    font-size: 18px;
  }

  /* === TAB BAR FULL WIDTH === */
  .bottom-nav {
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
    padding: 14px 0;
    background-color: #181818;
    border-top: 1px solid #2a2a2a;
    border-radius: 0;
  }

  .bottom-nav a {
    font-size: 13px;
  }

  .bottom-nav .icon {
    width: 32px;
    height: 32px;
  }

}


