:root {
  --bg-color: #dbe3eb; /* Slightly bluish gray body ambient */
  --card-bg: #f4f7fa; /* Icy white card */
  --text-dark: #1f2937; /* Almost black */
  --text-gray: #6b7280; /* Subtle gray */
  font-family: 'Outfit', 'Noto Kufi Arabic', sans-serif;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
}

.card {
  position: relative;
  background-color: var(--card-bg);
  width: 100%;
  max-width: 1300px;
  height: 100%;
  max-height: 850px;
  border-radius: 24px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Graphics Wrapper ensures elements scale together */
.graphics-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Background Sun-Glow Effect */
.sun-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%); /* Shift glow up slightly */
  width: 80vw;
  max-width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(248, 143, 62, 0.35) 0%, rgba(248, 143, 62, 0.1) 40%, rgba(255, 150, 80, 0) 65%);
}

/* Fine white arc masking down via CSS mask-image */
.arc-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%); /* Match sun glow offset */
  width: 800px;
  max-width: 85vw;
  height: 400px;
  border: 1.5px solid rgba(255, 255, 255, 1);
  border-bottom: none; /* Make it a semi-circle */
  border-radius: 400px 400px 0 0;
  -webkit-mask-image: linear-gradient(to bottom, black 25%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 25%, transparent 100%);
}

/* Main UI Layer */
.content-container {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Push it down naturally into the glowing area */
  transform: translateY(30px); 
}

.brand-logo {
  height: 72px;
  margin-bottom: 2.5rem;
  opacity: 1;
}

.main-title {
  font-family: inherit;
  font-size: 4.5rem; /* Huge impact title */
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
  letter-spacing: -2px;
  direction: ltr; /* Ensure english looks correct */
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin: 0 0 1rem 0;
  font-weight: 300;
}

.staging-text {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 0 0 2.5rem 0;
  font-weight: 500;
  line-height: 1.6;
}

/* Actions */
.action-section {
  margin-bottom: 2rem;
  z-index: 5;
}

.play-badge {
  height: 54px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.play-badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Soft Divider similar to mock */
.divider {
  width: 1px;
  height: 25px;
  background-color: #cbd5e0;
  margin: 1.5rem 0 2rem 0;
  opacity: 0.5;
}

.social-text {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
  direction: ltr; 
}

/* Minimalist outlined icons directly matching user image */
.social-icons {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  direction: ltr; /* Keeps them left to right standardly */
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-gray);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  background-color: transparent;
}

.social-icon svg {
  width: 14px;
  height: 14px;
  pointer-events: none; /* Better click registration */
}

.social-icon:hover {
  border-color: var(--text-dark);
  color: var(--card-bg);
  background-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Thorough scaling rules for perfect responsive layout */
@media (max-width: 1024px) {
  .arc-line {
    width: 600px;
    height: 300px;
    border-radius: 300px 300px 0 0;
  }
  .main-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .card {
     padding-inline: 2rem;
  }
  .arc-line {
    width: 500px;
    height: 250px;
    border-radius: 250px 250px 0 0;
  }
  .main-title {
    font-size: 3rem;
  }
  .main-title-ar {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.05rem;
  }
  .play-badge {
    height: 48px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }
  .card {
    border-radius: 20px;
  }
  .arc-line {
    width: 330px;
    height: 165px;
    border-radius: 165px 165px 0 0;
  }
  .content-container {
    transform: translateY(20px); 
  }
  .brand-logo {
     height: 56px;
     margin-bottom: 2rem;
  }
  .main-title {
    font-size: 2.25rem;
  }
  .subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .play-badge {
    height: 44px;
  }
  .divider {
    height: 20px;
    margin: 1rem 0 1.5rem 0;
  }
  .social-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .social-icon {
    width: 32px;
    height: 32px;
  }
  .social-icon svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 360px) {
  .main-title {
    font-size: 1.85rem;
  }
  .subtitle {
    font-size: 0.85rem;
  }
  .social-icons {
     gap: 0.5rem;
  }
  .play-badge {
    height: 40px;
  }
}
