:root {
  --navy: #082465;
  --navy-dark: #05183f;
  --navy-soft: #0a2a6b;
  --yellow: #fec913;
  --white: #ffffff;
  --text: #48494a;
  --text-light: #7a7b7d;
  --shadow: 0 25px 60px -20px rgba(5, 24, 63, 0.6);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text);
  direction: rtl;
}

/* ======= Page ======= */
.welcome2-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  overflow: hidden;
  padding: 50px 0;
}

.w2-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 201, 19, 0.18), transparent 70%);
  animation: float 7s ease-in-out infinite;
}

.w2-shape-1 {
  width: 420px;
  height: 420px;
  top: -140px;
  inset-inline-end: -120px;
}

.w2-shape-2 {
  width: 280px;
  height: 280px;
  bottom: 40px;
  inset-inline-start: -90px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  animation-delay: 1.5s;
}

.w2-shape-3 {
  width: 160px;
  height: 160px;
  top: 55%;
  inset-inline-end: 24%;
  background: radial-gradient(circle, rgba(254, 201, 19, 0.12), transparent 70%);
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.06); }
}

/* ======= Card ======= */
.w2-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 26px;
  padding: 42px 40px 30px;
  box-shadow: var(--shadow);
}

.w2-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.w2-logo {
    background: transparent !important;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex-shrink: 0;
}

    .w2-logo img {
        background: transparent;
        width: 100%;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

.w2-brand-text h1 {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.9rem;
  margin: 0;
  line-height: 1.2;
}

.w2-brand-text span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.w2-desc {
  color: var(--text-light);
  text-align: center;
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 26px;
}

/* ======= Art ======= */
.w2-art {
  position: relative;
  background: var(--gray-bg, #f6f8fd);
  border-radius: 20px;
  padding: 18px 18px 50px;
  margin-bottom: 26px;
  overflow: hidden;
}

    .w2-art img {
        border-radius: 20px;
        display: block;
        width: 100%;
        margin: 0 auto;
        animation: float-soft 5s ease-in-out infinite;
    }

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.w2-art-badge {
  position: absolute;
  bottom: 16px;
  inset-inline: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 18px;
  box-shadow: 0 10px 22px -12px rgba(8, 36, 101, 0.4);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.w2-art-badge i {
  color: #e0a800;
}

/* ======= Button ======= */
.btn-enter {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 20px;
  border-radius: 50px;
  border: 2px solid var(--yellow);
  transition: all 0.3s ease;
}

.btn-enter:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -12px rgba(254, 201, 19, 0.9);
}

.btn-enter:hover,
.btn-enter:focus-visible,
.btn-enter:active {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}

/* ======= Meta ======= */
.w2-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #edf0f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.w2-meta i {
  color: var(--navy);
  margin-inline-end: 4px;
}

/* ======= Wave ======= */
.w2-wave {
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  line-height: 0;
  z-index: 1;
}

.w2-wave svg {
  width: 100%;
  height: 70px;
  display: block;
}

.w2-wave path {
  fill: var(--white);
  opacity: 0.06;
}

/* ======= Responsive ======= */
@media (max-width: 575.98px) {
  .welcome2-page {
    padding: 30px 14px;
  }

  .w2-card {
    padding: 32px 22px 24px;
  }

  .w2-brand-text h1 {
    font-size: 1.6rem;
  }

  .w2-art img {
    max-width: 240px;
  }

  .w2-meta {
    justify-content: center;
    text-align: center;
  }
}
