
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
  color: #aaa;
}

.bubble-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bubble {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(5px);
  opacity: 1;
  transform: scale(1);
}

.bubble.hidden {
  opacity: 0;
  transform: scale(0);
}

.bubble a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.bubble:hover {
  background: rgba(255, 255, 255, 0.2);
}

.rss-bubble {
  position: absolute;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(5px);
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.rss-bubble.hidden {
  opacity: 0;
  transform: scale(0);
}

.rss-bubble h3 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: #fff;
}

.rss-bubble img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.rss-bubble p {
  font-size: 0.9rem;
  margin: 10px 0;
  color: #ddd;
}

.rss-bubble a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.rss-bubble a:hover {
  text-decoration: underline;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.back-link {
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

.back-link:hover {
  text-decoration: underline;
}

.contact-form-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
