* {
cursor: inherit;
}

body {
  background-color: black;
  color: #00FF66;
  font-family: 'Press Start 2P', monospace;
  margin: 0;
  padding: 0;
  cursor: url('/assets/abc.cur'), auto;
  background-image: url('/assets/stars2.gif');
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  width: 200px;
  image-rendering: pixelated;
}

marquee {
  color: #FF66CC;
  margin-top: 10px;
}

nav {
  background-color: #111;
  border: 2px dashed #33ff33;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

nav a {
  display: inline-block;
  color: #00FFFF;
  text-decoration: none;
  margin: 5px 15px;
}

nav a:hover {
  text-decoration: underline;
  color: #FF00FF;
}

main {
  background-color: #111;
  border: 1px solid #444;
  padding: 15px;
  position: relative; /* önemli */
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  overflow-wrap: break-word;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

main > * {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
}

main > h1, main > h2 {
  margin: 0 0 10px 0;
}

main > p {
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.corner-gif {
  position: absolute;
}

.top-left {
  top: -16px;
  left: -16px;
}

.top-right {
  top: -16px;
  right: -16px;
}

.bottom-left {
  bottom: -16px;
  left: -16px;
}

.bottom-right {
  bottom: -16px;
  right: -16px;
}


footer {
  text-align: center;
  font-size: 0.7em;
  margin-top: 40px;
  color: #999;
}

.blink {
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

.logo {
  font-family: 'Permanent Marker', cursive;
  font-size: 3rem;
  color: #FF66CC;
  margin-bottom: 0.3rem;
  text-align: center;
  text-shadow: 0 0 5px #ff99dd;
}

.tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  text-align: center;
  color: #888;
  margin-bottom: 2rem;
}

.more-btn {
  background-color: #111;
  border: 1px solid #444;
  padding: 5px;
  text-align: center;
  margin-bottom: 20px;
  color: #00FFFF;
  text-decoration: none;
  margin: 5px 15px;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
}