
    :root {
      --primary: #0073e6;
      --light-bg: #f4f8fc;
      --dark-text: #222;
      --card-bg: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: var(--light-bg);
      color: var(--dark-text);
      line-height: 1.6;
    }
    .redirect-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4c6ef5, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 170, 191, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease-in-out;
}

.redirect-button:hover::before {
  left: 130%;
}

.redirect-button:hover {
  box-shadow: 0 6px 16px rgba(21, 170, 191, 0.6);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .redirect-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
    .container {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
    }

    .card {
      background: var(--card-bg);
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      margin-bottom: 30px;
      transition: all 0.3s ease;
    }

    .card:hover {
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    h1, h2 {
      color: var(--primary);
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    h2 {
      margin-top: 20px;
      font-size: 1.5rem;
    }

    p, li {
      font-size: 1rem;
    }

    ul {
      padding-left: 20px;
    }

    code, pre {
      background: #eee;
      padding: 10px;
      border-radius: 8px;
      display: block;
      overflow-x: auto;
    }

    blockquote {
      background: #e7f3ff;
      border-left: 5px solid var(--primary);
      padding: 12px 18px;
      font-style: italic;
      margin: 20px 0;
      border-radius: 10px;
    }

    a {
      color: var(--primary);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 1.5rem;
      }

      .card {
        padding: 20px;
      }
    }
