<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  height: 100%;
}

canvas#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom right, #4f6d7a, #c0d6df);
}

.menu-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.top-left, .top-right, .left-buttons, .bottom-right {
  position: absolute;
  z-index: 1;
}

.top-left {
  top: 20px;
  left: 20px;
  font-size: 1.2rem;
  color: white;
}

.top-right {
  top: 20px;
  right: 20px;
}

.karakter-yolu {
  display: flex;
  gap: 10px;
}

.yol-adÄ±mÄ± {
  font-size: 1.5rem;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.yol-adÄ±mÄ±.aktif {
  transform: scale(1.2);
  opacity: 1;
}

.left-buttons {
  top: 100px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-button {
  text-decoration: none;
  background: #1e3d59;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.menu-button:hover {
  background: #ff6e40;
  transform: translateX(5px);
}

.bottom-right {
  bottom: 30px;
  right: 30px;
}

.start-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background: #26a69a;
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.start-button:hover {
  background: #00796b;
}

@media (max-width: 768px) {
  .left-buttons {
    top: 80px;
    left: 10px;
    gap: 10px;
  }

  .menu-button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .start-button {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .karakter-yolu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.shop-bg {
  background: linear-gradient(to right, #2c3e50, #4ca1af);
  color: white;
  font-family: 'Arial', sans-serif;
}

.shop-container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.shop-header {
  text-align: center;
  margin-bottom: 40px;
}

.shop-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.shop-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px #00000050;
  transition: transform 0.2s;
}

.shop-item:hover {
  transform: scale(1.05);
}

.shop-item button {
  margin-top: 10px;
  padding: 10px 15px;
  background: #26a69a;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.shop-item button:hover {
  background: #00796b;
}

.back-button {
  margin-top: 40px;
  text-align: center;
}

.back-button a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 20px;
  background:
  characters-bg {
  background: linear-gradient(to bottom, #6dd5ed, #2193b0);
  color: white;
  font-family: 'Arial', sans-serif;
  }

.characters-container {
  max-width: 900px;
  margin: auto;
  padding: 30px 20px;
}

.characters-header {
  text-align: center;
  margin-bottom: 30px;
}

.character-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.character-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px #00000050;
  transition: transform 0.2s;
  position: relative;
}

.character-card:hover {
  transform: scale(1.05);
}

.character-card.locked {
  opacity: 0.5;
}

.character-card .emoji {
  font-size: 2.5rem;
}

.character-card button {
  margin-top: 10px;
  padding: 10px 15px;
  background: #26a69a;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.character-card button:hover {
  background: #00796b;
}


.history-bg {
  background: linear-gradient(to right, #232526, #414345);
  color: white;
  font-family: 'Arial', sans-serif;
}

.history-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.history-header {
  text-align: center;
  margin-bottom: 30px;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.history-table th, .history-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ffffff30;
}

.history-table th {
  background-color: #1c1c1c;
}

.history-table tr:hover {
  background-color: #2a2a2a;
}

.karakter-goster {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 16px;
  color: white;
  display: flex;
  gap: 8px;
  align-items: center;
}
.menu-background {
    background-image: url('menubg.png'); /* Arka plan olarak istediÄŸin resmi kullan */
    background-size: cover; /* Ekrana gÃ¶re boyutlandÄ±rÄ±r */
    background-position: center;
    background-repeat: no-repeat;
}
</pre></body></html>