/* ===== MODERN FOOTER STYLES ===== */
  .modern-footer {
    background: #1a1a1a;
    color: #a0a0a0;
    margin-top: 80px;
  }

  .footer-container {
    max-width: min(95%, 1200px);
    margin: 0 auto;
    padding: 40px 16px;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 24px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  /* ===== LEFT SECTION - SYSTEM INFO ===== */
  .footer-left-section {
    flex: 0 0 auto;
    max-width: 50%;
    text-align: left;
  }

  .system-info {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
  }

  .system-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .windows-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(0.8);
  }

  .system-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .system-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a0a0a0;
    margin: 0;
  }

  .system-versions {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0;
  }

  /* ===== MIDDLE SECTION - ABOUT US ===== */
  .footer-middle-section {
    flex: 0 0 auto;
    max-width: 50%;
    text-align: left;
  }

  /* ===== RIGHT SECTION - IMPORTANT LINKS ===== */
  .footer-right-section {
    flex: 0 0 auto;
    max-width: 50%;
    text-align: left;
  }

  .links-title {
    font-size: 1rem;
    font-weight: 600;
    color: #a0a0a0;
    margin: 0 0 16px 0;
  }

  .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-link-item {
    margin-bottom: 2px;
  }

  .footer-link-item:last-child {
    margin-bottom: 0;
  }

  .footer-link {
    display: flex !important;
    gap: 6px !important;
    align-items: center !important;
    color: #a0a0a0 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    padding: 1px 0 !important;
    position: relative !important;
    justify-content: flex-start !important;
  }

  .footer-link:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
  }

  .footer-link:focus-visible {
    outline: 2px solid var(--promoping-orange-light);
    outline-offset: 2px;
    text-decoration: underline;
  }

  .link-icon {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }

  .footer-link:hover .link-icon {
    opacity: 1;
  }

  /* ===== BOTTOM SECTION ===== */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-logo {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a0a0a0;
  }

  .version-badge {
    background: #333333;
    color: #a0a0a0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
  }

  .version-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      left: -100%;
    }

    50% {
      left: 100%;
    }

    100% {
      left: 100%;
    }
  }

  .footer-copyright {
    color: #a0a0a0;
    font-size: 0.9rem;
  }

  /* ===== ENHANCED ANIMATIONS ===== */
  .footer-link {
    position: relative;
    overflow: hidden;
  }

  .footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .footer-link:hover::before {
    left: 100%;
  }

  .footer-link:hover {
    transform: translateX(4px);
  }

  /* ===== RESPONSIVENESS ===== */
  @media (max-width: 768px) {
    .modern-footer {
      margin-top: 60px;
    }

    .footer-container {
      padding: 32px 16px;
    }

    .footer-content {
      flex-direction: column;
      gap: 32px;
    }

    .footer-left-section,
    .footer-middle-section,
    .footer-right-section {
      max-width: 100%;
      width: 100%;
    }

    .footer-middle-section,
    .footer-right-section {
      text-align: left;
    }

    .footer-links-list {
      align-items: flex-start;
    }

    .footer-link {
      justify-content: flex-start;
    }

    .system-info {
      margin-bottom: 0;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 16px;
      text-align: center;
      align-items: center;
    }

    .footer-brand {
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    .brand-logo {
      flex-direction: row;
      gap: 12px;
      align-items: center;
    }

    .footer-copyright {
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .modern-footer {
      margin-top: 40px;
    }

    .footer-container {
      padding: 24px 12px;
    }

    .footer-content {
      gap: 28px;
    }

    .system-info {
      flex-direction: row;
      text-align: left;
      gap: 12px;
      align-items: center;
      margin-bottom: 0;
    }

    .system-icon {
      flex-shrink: 0;
    }

    .windows-logo {
      width: 28px;
      height: 28px;
    }

    .system-label {
      font-size: 0.85rem;
    }

    .system-versions {
      font-size: 0.8rem;
    }

    .links-title {
      font-size: 0.95rem;
      margin-bottom: 12px;
    }

    .footer-link {
      font-size: 0.85rem;
      padding: 2px 0;
    }

    .footer-links-list {
      align-items: flex-start;
    }

    .footer-link {
      justify-content: flex-start;
    }

    .footer-bottom {
      gap: 14px;
    }

    .footer-brand {
      gap: 10px;
    }

    .brand-logo {
      gap: 10px;
    }

    .footer-logo {
      width: 28px;
      height: 28px;
    }

    .brand-name {
      font-size: 1.1rem;
    }

    .version-badge {
      padding: 3px 10px;
      font-size: 0.75rem;
    }

    .footer-copyright {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 360px) {
    .footer-container {
      padding: 20px 10px;
    }

    .footer-content {
      gap: 24px;
    }

    .system-info {
      gap: 10px;
    }

    .windows-logo {
      width: 24px;
      height: 24px;
    }

    .system-label {
      font-size: 0.8rem;
    }

    .system-versions {
      font-size: 0.75rem;
    }

    .links-title {
      font-size: 0.9rem;
    }

    .footer-link {
      font-size: 0.8rem;
    }

    .footer-logo {
      width: 24px;
      height: 24px;
    }

    .brand-name {
      font-size: 1rem;
    }

    .footer-copyright {
      font-size: 0.8rem;
    }
  }

