* {
  box-sizing: border-box;
}

body {
  background: url('https://viestursjugs.lv/wp-content/uploads/2025/04/jurkalnes-stavkrasts-saulriets-mezs.jpg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 95%;
}

.logo {
  width: 400px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.container div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button {
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(45deg, rgba(44,44,44,0.8), rgba(68,68,68,0.8), rgba(34,34,34,0.8));
  background-size: 400% 400%;
  color: white;
  transition: background 0.5s, transform 0.2s;
  white-space: nowrap;
}

.button:hover {
  background-position: right;
  transform: scale(1.05);
}

.info-box {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  font-size: 12px;
  border-radius: 5px;
  z-index: 2;
}

.video-popup {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 320px;
  background-color: rgba(20, 20, 20, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  z-index: 999; /* <-- PALIELINĀM */
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.video-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(40, 40, 40, 1.0);
  padding: 5px 10px;
  font-weight: bold;
  font-size: 14px;
}

.video-popup-header span {
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #ff6666;
}

.video-popup iframe {
  width: 100%;
  height: 180px;
  border: none;
}

@media (max-width: 768px) {

  .container {
    padding: 15px;
  }

  .button {
    flex: 1 1 auto;
    min-width: 120px;
    font-size: 14px;
    padding: 12px;
  }

  .video-popup {
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }

  .video-popup iframe {
    height: 180px;
  }

  .info-box {
    font-size: 10px;
    padding: 6px;
    right: 5px;
  }

}

.corner-logo {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 1000;
}

.corner-logo img {
  height: 130px;   /* LIELĀKS uz datora */
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.corner-logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.6));
}

@media (max-width: 768px) {
  .corner-logo img {
    height: 55px;
  }
}