  /* Reset some basic elements */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Set a nice background for the whole page */
    body {
      /* 
      background: linear-gradient(135deg, #667eea, #764ba2);
      background: linear-gradient(135deg, #5C258D, #4389A2);
      background: linear-gradient(135deg, #000000, #434343);
      background: linear-gradient(135deg, #4e4080, #c5c5c5);
      background: linear-gradient(135deg, #12c2e9, #c471ed, #f7797d);
      background: linear-gradient(135deg, #aa4b6b, #6b6b83, #3b8d99);
      */

      background: linear-gradient(135deg, #4e4080, #c5c5c5);
      font-family: 'Arial', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
    }

    /* Main container styling */
    .container {
      background: #fff;
      border-radius: 15px;
      width: 100%;
      max-width: 350px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    @property --angle {
      syntax: "<angle>";
      initial-value: 0deg;
      inherits: false;
    }

    .container::after, .container::before {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      /* background: transparent; */
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      z-index: -1;
      padding: 3px;
      border-radius: 15px;
      background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
      animation: 3s spin linear infinite;
    }

    @keyframes spin{
      from{
        --angle: 0deg;
      }
      to {
        --angle: 360deg;
      }
    }

    .container::before {
      filter:blur(1.5rem);
      opacity: 1;
    }

    /* Profile section */
    .profile {
      margin-bottom: 20px;
    }

    .profile img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .profile h1 {
      font-size: 24px;
      margin-bottom: 5px;
    }

    .profile p {
      color: #666;
      font-size: 14px;
    }

    /* Links styling */
    .links a {
      display: block;
      background: #667eea;
      color: #fff;
      padding: 12px;
      margin: 10px 0;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .links a:hover {
      background: #556cd6;
    }