:root {
  --palestine-black: #000000;
  --palestine-white: #FFFFFF;
  --palestine-green: #007A3D;
  --palestine-red: #CE1126;
  --gold: #F0C808;
  --warning: #f8961e;
  
}

.palestine-flag {
  width: 70px;
  height: 45px;
  display: inline-block;
  background: linear-gradient(to bottom,
      var(--palestine-black) 0% 33.33%,
      var(--palestine-white) 33.33% 66.66%,
      var(--palestine-green) 66.66% 100%);
  position: relative;
  margin: 0 10px;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.palestine-flag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background-color: var(--palestine-red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}


.free-palestine-banner {
  background: linear-gradient(90deg, var(--palestine-red), var(--palestine-black));
  color: white;
  padding: 12px;
  font-weight: bold;
  margin: 0 auto 25px;
  border-radius: 6px;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.free-palestine-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.olive-branch {
  color: var(--palestine-green);
  font-size: 1.6rem;
  margin: 0 8px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}


.palestine-icon {
  color: var(--palestine-red);
  margin-right: 8px;
  font-size: 1.1em;
}

.solidarity-hand {
  color: var(--gold);
  font-size: 1.4rem;
  margin: 0 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0.1;
  z-index: -1;
  font-size: 10rem;
  color: var(--palestine-red);
  transform: rotate(-15deg);
}

@media (max-width: 768px) {
  .palestine-flag {
    width: 50px;
    height: 35px;
    margin: 0 5px;
  }

  .free-palestine-banner {
    font-size: 0.9rem;
    padding: 10px;
  }
}