@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body {
  font-family: "Bebas Neue", Arial, sans-serif;
}

#Video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#titlu-pagina {
  text-align: center;
  letter-spacing: 4px;
  color: #fff;
}

.Social-media-icons {
  position: absolute;
  top: 40px;
  right: 40px;
}

.Social-media-icons ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

.Social-media-icons li {
  margin-bottom: 10px;
}

img {
  width: 30px;
}

#text-buga-srl {
  margin: 40px;
}

#timer {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 1px;
  margin: 40px;
  color: #fff;
}

#text-lansare {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
}
#copyright {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}

.Social-media-icons a:hover img {
  filter: grayscale(1) contrast(2) brightness(1.2) drop-shadow(0 0 8px #ffffff);
  transform: scale(1.15);
  transition: 0.2s;
  cursor: pointer;
}

#buton-intrare-home-screen {
  background: rgba(0,0,0,0.4);      /* semi-transparent, se vede video-ul */
  color: #ffffff;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 14px 38px;
  font-size: 1.3rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  margin: 32px auto 0 auto;
  display: block;
}

#buton-intrare-home-screen:hover{
background: rgba(255,255,255,0.15);
color: #fff;
border-color: #000000;
box-shadow: 0 6px 32px rgba(0,0,0,0.28);
}

#popup-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s;
}

#popup-modal.modal-hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  background: #181818;
  color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #ff3c3c;
}

#newsletter-modal{
  text-align: center;
}

.partners-section{
  margin-left: 80px;
  text-align: left;
  color: white;
}

.Partners-ad{
  margin-bottom: 0.5 em;
  text-align: left;
}

#linie-ad{
  width: 30%;
  margin-left: 0px;
}

#partner-notification {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
  background: rgba(24, 24, 24, 0.98);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 1.5em 2em 1.2em 2em;
  min-width: 320px;
  max-width: 90vw;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s, transform 0.4s;
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: #fff;
}

.partner-notification-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}

.partner-notification-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-notification-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.3em;
  letter-spacing: 1px;
}

.partner-notification-actions {
  margin-top: 1em;
  display: flex;
  gap: 1em;
}

.partner-btn {
  background: linear-gradient(90deg, #48ff00 0%, #00ffd5 100%);
  color: #181818;
  border: none;
  border-radius: 8px;
  padding: 0.6em 1.4em;
  font-size: 1em;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0,255,213,0.08);
}

.partner-btn:hover {
  background: linear-gradient(90deg, #00ffd5 0%, #48ff00 100%);
  color: #111;
}

.partner-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #48ff00;
}

.partner-btn-outline:hover {
  background: #48ff00;
  color: #181818;
}