/* Export Flag Cards - Premium Design */
.export-flag-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
  }

  .export-flag-card:hover {
    transform: translateY(-12px) scale(1.05);
    background: linear-gradient(145deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4), 0 0 40px rgba(251, 191, 36, 0.2);
  }

  .flag-image-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .flag-image-wrapper {
      width: 100px;
      height: 100px;
    }
  }

  @media (min-width: 1280px) {
    .flag-image-wrapper {
      width: 120px;
      height: 120px;
    }
  }

  @media (min-width: 1920px) {
    .flag-image-wrapper {
      width: 150px;
      height: 150px;
    }
  }

  .flag-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 3px solid rgba(255,255,255,0.3);
  }

  .export-flag-card:hover .flag-image {
    border-color: #fbbf24;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }

  .flag-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .export-flag-card:hover .flag-glow {
    opacity: 1;
  }

  .flag-country-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
  }

  @media (min-width: 768px) {
    .flag-country-name {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1280px) {
    .flag-country-name {
      font-size: 1.5rem;
    }
  }

  .export-flag-card:hover .flag-country-name {
    color: #fbbf24;
  }

  .flag-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  @media (min-width: 768px) {
    .flag-subtitle {
      font-size: 0.85rem;
    }
  }