*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 0;
}

/* Main block with background image */
.main-block {
  max-width: 800px;
  margin: 0 auto;
  background-image: url('https://onetooline.com/wp-content/uploads/2025/08/311668-P8EHKU-300.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

/* Add overlay for better text readability */
.main-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  z-index: 1;
}

.main-block > * {
  position: relative;
  z-index: 2;
}

/* Search section styling */
.search-section {
  margin-top: 20px;
}

.search-input-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.paste-btn, .download-btn {
  /* ...existing code... */
}
