body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #b8eaff 0%, #e0fff7 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  text-align: center;
  background-attachment: fixed;
}

header {
  padding: 20px 10px;
  text-align: center;
  margin-top: 10px; /* Navbar kaldırıldığı için düşük margin */
  background: transparent;
}

header h1 {
  color: #0099a8;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(28,181,224,0.08);
}

h1, h2 {
  color: #0099a8;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(28,181,224,0.08);
  text-align: center;
  margin-bottom: 2rem;
}

.alert {
  padding: 15px;
  margin: 10px auto;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  animation: fadeInDown 0.5s ease forwards;
}

.alert.success {
  background-color: rgba(212, 237, 218, 0.9);
  color: #155724;
  border-left: 4px solid #28a745;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submit-story {
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 1.5rem;
  margin: 20px auto;
  max-width: 800px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: none;
}

.submit-story:hover {
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.22);
  background: rgba(255,255,255,0.85);
  transform: translateY(-3px);
}

.submit-story form {
  display: flex;
  flex-direction: column;
}

.submit-story label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #0099a8;
  text-align: left;
}

.submit-story input, .submit-story textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid rgba(28,181,224,0.3);
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.submit-story input:focus, .submit-story textarea:focus {
  outline: none;
  border-color: #1cb5e0;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 10px rgba(28,181,224,0.2);
}

.submit-story textarea {
  height: 200px;
  resize: none;
}

.submit-story button {
  background: linear-gradient(90deg, #1cb5e0 0%, #0099a8 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(28,181,224,0.2);
  margin-top: 10px;
  align-self: center;
  width: 50%;
}

.submit-story button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(28,181,224,0.3);
  background: linear-gradient(90deg, #0099a8 0%, #1cb5e0 100%);
}

.shared-stories {
  margin: 30px auto;
  max-width: 800px;
}

.stories-container {
  max-height: 500px;
  overflow-y: auto;
  padding: 15px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  transition: box-shadow 0.3s;
  scrollbar-width: thin;
  scrollbar-color: #1cb5e0 rgba(255, 255, 255, 0.3);
}

.stories-container::-webkit-scrollbar {
  width: 8px;
}

.stories-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.stories-container::-webkit-scrollbar-thumb {
  background: #1cb5e0;
  border-radius: 10px;
}

.stories-container:hover {
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.22);
  background: rgba(255,255,255,0.85);
}

.story-item {
  border-bottom: 1px solid rgba(28,181,224,0.2);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.6);
}

.story-item:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28,181,224,0.15);
}

.story-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.story-item h3 {
  margin: 0;
  color: #0099a8;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.story-item p {
  margin: 12px 0;
  color: #444;
  line-height: 1.5;
  text-align: left;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.story-header h3 {
  margin: 0;
  color: #0099a8;
  font-weight: 700;
}

.story-header .story-date {
  font-size: 14px;
  color: #666;
  background: rgba(28,181,224,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.story-author {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #0099a8;
  background: rgba(28,181,224,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.story-actions {
  display: flex;
  gap: 10px;
}

.like-btn.liked {
  background-color: rgba(28,181,224,0.2);
  color: #0099a8;
  border-color: #0099a8;
}

.like-btn.liked i {
  color: #ff6b6b;
}

.like-btn .like-count {
  display: inline-block;
  min-width: 20px;
  text-align: center;
  margin-left: 5px;
}

.like-btn:hover {
  transform: scale(1.05);
}

.share-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .submit-story, .shared-stories {
    margin: 15px;
    padding: 15px;
    width: auto;
  }

  .stories-container {
    max-height: 400px;
  }
  
  .story-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .story-header .story-date {
    margin-top: 5px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .submit-story button {
    width: 100%;
  }
}

.container {
  padding-top: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Navbar stilleri */    .navbar {
      background: linear-gradient(90deg, rgba(45,55,75,0.95) 0%, rgba(65,75,95,0.95) 100%);
      padding: 18px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      box-sizing: border-box;
      z-index: 1000;
      border-bottom: 2px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 4px 16px rgba(45,55,75,0.10);
      transition: background 0.3s ease;
      backdrop-filter: blur(8px);
    }
    
    .navbar:hover {
      background: linear-gradient(90deg, rgba(35,45,65,1) 0%, rgba(55,65,85,1) 100%);
    }
      .logo {
      padding-right: 15px;
      padding-left: 15px;
    }
    
    .logo img {
      filter: drop-shadow(0 2px 8px rgba(28,181,224,0.15));
      max-width: 100%;
      height: auto;
    }
    
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 32px;
      height: 22px;
      cursor: pointer;
      z-index: 1001;
      padding-right: 10px;
    }
    
    .hamburger div {
      height: 4px;
      background: white;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    
    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 30px;
      background: rgba(255,255,255,0.85);
      padding: 16px 24px;
      border-radius: 18px;
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
      z-index: 1000;
      transition: opacity 0.3s ease, transform 0.3s ease;
      opacity: 0;
      transform: translateY(-10px);
      backdrop-filter: blur(8px);
    }
    
    .menu.active {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }
    
    .menu a {
      color: #0099a8;
      text-decoration: none;
      margin: 8px 0;
      font-weight: bold;
      text-align: center;
      font-size: 1.08rem;
      transition: color 0.3s;
      border-radius: 8px;
      padding: 6px 0;
    }
    
    .menu a:hover {
      color: #fff;
      background: linear-gradient(90deg, #1cb5e0 0%, #0099a8 100%);
    }
    
    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
      @media (max-width: 600px) {
      .container {
        padding-top: 110px;
        padding-left: 4px;
        padding-right: 4px;
      }
      .navbar {
        padding: 10px 15px;
      }
      .logo {
        max-width: 180px;
      }
      .menu {
        right: 15px;
        top: 60px;
        padding: 10px 15px;
        width: 200px;
      }
      .hamburger {
        margin-right: 5px;
      }
    }