/* styles.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px;
}

/* h1 {
  margin-bottom: 30px;
  color: #f5f5f5;
} */

.header-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 24px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.title-icon {
  height: 60px;
  vertical-align: middle;
  margin-right: 10px;
}


/* .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
} */

.container {
  padding-top: 220px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


.hero-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: transform 0.2s ease;
}

.hero-card:hover {
  transform: scale(1.03);
}

/* .hero-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
} */

.hero-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  margin-bottom: 10px;
}


button {
  padding: 10px 20px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #005fa3;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

body {
  background-image: url('./kombat.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* color: #fff; */
  /* padding: 20px; */
}

/* .hero-card {
  background: rgba(255, 255, 255, 0.95); 
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  width: 280px;
  transition: transform 0.2s ease;
  color: #000; 
}

.hero-card:hover {
  transform: scale(1.02);
}

.hero-card h2 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
}

.hero-card p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.4;
} */



footer {
  margin-top: 60px;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.popup-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 90%;
  font-size: 20px;
  line-height: 1.5;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-close-btn {
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 16px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.popup-close-btn:hover {
  background-color: #005fa3;
}

.telegram-icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}

.telegram-icon:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}