.landing-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #ffffff); 
}

.login-card {
  width: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #94efcc, #f7fffc, #f7fffc, #38dc9d); 
  color: #2d3748;
  box-shadow: 0 8px 24px rgba(0, 193, 124, 0.2);
  animation: fadeInUp 0.6s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 193, 124, 0.2);
}

.video-card {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    position: relative;
  }
  #heroVideo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .video-sound-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border: 0;
    background: rgba(0,0,0,.55);
    color: #fff;
    border-radius: 999px;
    padding: 8px 10px;
    line-height: 1;
    cursor: pointer;
  }
 

.country-card-btn {
    transition: all 0.2s ease-in-out;
    border: 2px solid #f0f0f0 !important;
    position: relative;
    overflow: hidden;
  }

  .country-card-btn:hover {
    border-color: #2e7d32 !important;
    background-color: #f8fbff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .country-card-btn:active {
    transform: scale(0.98);
  }

  /* Selection indicator */
  .country-card-btn.selected {
    border-color: #2e7d32 !important;
    background-color: #e7f1ff !important;
  }

  /* Flag placeholder style */
  .flag-icon {
    width: 40px;
    height: 30px;
    background: #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }