* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background: #ffffff;
    color: #333;
  }
  
  /* HERO */
  .tricks-hero {
    background: linear-gradient(45deg, #ffa07a, #ff7bfa);
    text-align: center;
    padding: 90px 20px;
    color: #fff;
  }
  
  .tricks-hero h1 {
    font-size: 48px;
    font-weight: 800;
  }
  
  .tricks-hero p {
    font-size: 18px;
    margin-top: 10px;
  }
  
  
  
  /* Tricks Section */
  .tricks-section {
    padding: 70px 5%;
    text-align: center;
  }
  
  .tricks-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
  }
  
  .tricks-section span {
    color: #ff7bfa;
  }
  
  .tricks-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .trick-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
  }
  
  .trick-box:hover {
    transform: translateY(-6px);
  }
  
  .trick-box img {
    width: 80px;
    margin-bottom: 15px;
  }
  
  .trick-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .trick-box p {
    font-size: 15px;
    color: #555;
  }
  
  
  
  /* FOOTER */
  .footer {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
  }
  