*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}

:root {
    --primary-color: #d35400;
    --secondary-color: #ffa76d;
}

body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color:#1a1a1a;
    background: linear-gradient(to bottom, #FAFBFC 0%, #F5F7FA 100%);
    min-height: 100vh;
}
a{
    text-decoration: none;
}

.container {
    max-width: 1400px;
    width: 100%;
    padding: 40px;
    margin-left: auto;
    margin-right: auto;
  }



  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .social-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--brand-color);
  }

  .social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  }

  .social-card.facebook {
    --brand-color: #1877f2;
  }

  .social-card.x {
    --brand-color: #000000;
  }

  .social-card.instagram {
    --brand-color: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  .social-card.youtube {
    --brand-color: #ff0000;
  }

  .social-card.tiktok {
    --brand-color: #000000;
  }

  .social-card.yahoo {
    --brand-color: #6001d2;
  }

  .social-card.threads {
    --brand-color: #000000;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-color);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }

  .instagram .icon-wrapper {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  .icon-wrapper svg {
    width: 40px;
    height: 40px;
    fill: white;
  }

  .social-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
  }

  .url-display {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    word-break: break-all;
    font-family: monospace;
  }

  .buttons-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .btn-primary {
    background: var(--brand-color);
    color: white;
  }

  .instagram .btn-primary {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }

  .btn-follow {
    background: transparent;
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
  }

  .instagram .btn-follow {
    border: 2px solid #dc2743;
    color: #dc2743;
  }

  .btn-follow:hover {
    background: var(--brand-color);
    color: white;
  }

  .instagram .btn-follow:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  .stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 20px;
    font-weight: bold;
    color: var(--brand-color);
  }

  .instagram .stat-number {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
  }

  .footer {
    text-align: center;
    color: white;
    margin-top: 40px;
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .header h1 {
      font-size: 32px;
    }
    
    .cards-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .social-card {
    animation: fadeInUp 0.6s ease backwards;
  }

  .social-card:nth-child(1) { animation-delay: 0.1s; }
  .social-card:nth-child(2) { animation-delay: 0.2s; }
  .social-card:nth-child(3) { animation-delay: 0.3s; }
  .social-card:nth-child(4) { animation-delay: 0.4s; }
  .social-card:nth-child(5) { animation-delay: 0.5s; }
  .social-card:nth-child(6) { animation-delay: 0.6s; }
  .social-card:nth-child(7) { animation-delay: 0.7s; }

  #fb-plugin-container {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
  }
