/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #4deaa9, #577bb8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  }
  
  header p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  /* Grid Layout */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
  }
  
  /* Cards */
  .card {
    background: rgba(255, 255, 255, 0.1);
    height: px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card img {
    width: 80px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  }
  
  .card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }
  
  /* Platform-Specific Styles */
  .facebook { background: #4267B2; }
  .instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
  .twitter { background: #1DA1F2; }
  .linkedin { background: #0077B5; }
  .snapchat { background: #FFFC00; color: #000; }
  .tiktok { background: linear-gradient(135deg, #69C9D0, #EE1D52, #FFFFFF); }
  .whatsapp { background: #25D366; }
  .telegram { background: #0088CC; }
  
  .container2 {
    background-color: #11221b;
    height: 50px;
    width: 1700px;
    display: flex; 
    justify-content: center;
    align-items: center; 
    font-size: x-large;
    color: white; 
  }
  