body {
  background: #1e1e2e;
  color: #89dceb;
  font-family: "JetBrains Mono", "Courier New", monospace;
  padding: 20px;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

h1 {
  color: #94e2d5;
  font-size: clamp(24px, 4vw, 32px);
  text-shadow: 0 0 15px rgba(148, 226, 213, 0.4);
  margin: 0;
}

.last-update {
  text-align: center;
  margin-bottom: 20px;
  color: #f9e2af;
}

.filters {
  background: rgba(30, 30, 46, 0.6);
  border: 2px solid #89dceb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(137, 220, 235, 0.2);
  backdrop-filter: blur(10px);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.search-inputs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.search-inputs label {
  white-space: nowrap;
  color: #cba6f7;
}

.search-inputs input,
.search-inputs select,
.search-inputs button,
.action-buttons button {
  background: rgba(137, 220, 235, 0.1);
  border: 1px solid #89dceb;
  padding: 10px;
  border-radius: 4px;
  color: #89dceb;
}

.search-inputs input[type="number"] {
  width: 90px;
}

.search-inputs input[type="date"] {
  width: 150px;
}

.search-inputs button,
.today-btn,
.yesterday-btn {
  background: #89dceb;
  color: #1e1e2e;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 40px;
}

.search-inputs button:hover,
.today-btn:hover,
.yesterday-btn:hover {
  background: #94e2d5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(137, 220, 235, 0.3);
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-buttons .today-btn {
  background: linear-gradient(135deg, #f38ba8, #f5c2e7);
  color: #1e1e2e;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(243, 139, 168, 0.4);
  border: 2px solid #f5c2e7;
}

.action-buttons .today-btn:hover {
  background: linear-gradient(135deg, #f5c2e7, #f38ba8);
  box-shadow: 0 6px 20px rgba(243, 139, 168, 0.6);
  border-color: #f38ba8;
}

.yesterday-btn {
  background: #a6e3a1;
}

.source-section {
  background: rgba(30, 30, 46, 0.6);
  border: 2px solid #89dceb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(137, 220, 235, 0.2);
  backdrop-filter: blur(10px);
}

.source-title {
  color: #94e2d5;
  border-bottom: 2px solid rgba(137, 220, 235, 0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 22px;
}

.article {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(137, 220, 235, 0.3);
  transition: all 0.3s ease;
}

.article:last-child {
  border-bottom: none;
}

.article:hover {
  background: rgba(137, 220, 235, 0.1);
}

.article h3 {
  color: #a6e3a1;
  margin-bottom: 5px;
}

.article a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.article a:hover {
  color: #f9e2af;
}

.article-number {
  color: #f9e2af;
  font-weight: bold;
  margin-right: 8px;
}

.meta {
  color: #cba6f7;
  font-size: 0.9em;
  margin-top: 10px;
}

.total-count {
  color: #f9e2af;
  font-size: 1.05em;
  margin: 20px 0;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .search-form {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .search-inputs {
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding: 10px;
  }

  .filters {
    padding: 15px;
  }

  .search-inputs select,
  .search-inputs input,
  .search-inputs button {
    width: 100%;
    margin: 5px 0;
  }

  .search-inputs input[type="date"],
  .search-inputs input[type="number"] {
    width: 100%;
  }

  .action-buttons {
    width: 100%;
  }

  .yesterday-btn,
  .today-btn {
    flex: 1;
    text-align: center;
  }

  .article h3 {
    font-size: 16px;
  }
}
