body {
  background: linear-gradient(to right top, #a8dadc, #457b9d);
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 600px;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.flag {
  width: 180px;
  height: 180px;
  margin-bottom: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #f1faee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.flag:hover {
  transform: scale(1.05) rotate(5deg);
}

.text {
  font-size: 32px;
  color: #1d3557;
  margin-bottom: 60px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.button {
  background: linear-gradient(to right, #e63946, #f4a261);
  color: white;
  padding: 22px 70px;
  border: none;
  border-radius: 50px;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  font-weight: bold;
}

.button:hover {
  background: linear-gradient(to right, #f4a261, #e63946);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .container { padding: 40px; }
  .flag { width: 140px; height: 140px; margin-bottom: 30px; }
  .text { font-size: 28px; margin-bottom: 50px; }
  .button { padding: 18px 50px; font-size: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 30px; }
  .flag { width: 100px; height: 100px; margin-bottom: 25px; }
  .text { font-size: 22px; margin-bottom: 40px; }
  .button { padding: 15px 35px; font-size: 18px; }
}

body::before, body::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

body::before {
  width: 250px;
  height: 250px;
  top: 10%;
  left: 5%;
  animation: float1 8s infinite ease-in-out;
}

body::after {
  width: 350px;
  height: 350px;
  bottom: 8%;
  right: 10%;
  animation: float2 10s infinite ease-in-out reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(20px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(-20px); }
}