
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #001f3f, #000);
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
  padding: 10px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
}

.btn-player {
  background-color: #00f0ff;
  color: #000;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.btn-player:hover {
  background-color: #00c4d6;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #00f0ff;
}


main {
  padding-top: 180px;
}
.centered-image {
  max-width: 90%;
  margin: 40px auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,255,255,0.15);
  border-radius: 12px;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #000000cc;
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 40px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.whatsapp-float img {
  width: 60px;
  transition: transform 0.2s;
}
.whatsapp-float img:hover {
  transform: scale(1.1);
}
footer {
  background-color: #000000cc;
  padding: 40px 30px;
  color: #ccc;
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-col p {
  line-height: 1.5;
  margin-bottom: 10px;
}

.anuncie-link {
  display: inline-block;
  background: #00f0ff;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background-color 0.2s;
}
.anuncie-link:hover {
  background-color: #00c4d6;
}

.social-icons img {
  width: 30px;
  margin-right: 10px;
  transition: transform 0.2s;
}
.social-icons img:hover {
  transform: scale(1.1);
}
.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
  color: #999;
}

