* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .container {
      max-width: 600px;
      width: 100%;
      padding: 20px;
    }

    .profile {
      text-align: center;
      margin-bottom: 30px;
      animation: fadeIn 1s ease;
    }

    .profile img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 3px solid white;
      margin-bottom: 15px;
      object-fit: cover;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .profile h1 {
      color: white;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .profile p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
      margin-bottom: 20px;
    }
    
    .led-name {
      font-family: 'Orbitron', sans-serif; /* Atau font techno-style lainnya */
      font-size: 2.0rem;
      color: #0ff;
      text-shadow:
        0 0 5px #0ff,
        0 0 10px #0ff,
        0 0 20px #0ff,
        0 0 40px #0ff;
      animation: flicker 2s infinite;
    }

    @keyframes flicker {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.8; }
      60% { opacity: 0.95; }
    }

    .links {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .link {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 15px 20px;
      border-radius: 12px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      animation: slideUp 0.5s ease forwards;
      opacity: 0;
    }

    .link:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .link i {
      margin-right: 10px;
      font-size: 1.2rem;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      animation: bounceIn 0.5s ease forwards;
      opacity: 0;
    }

    .social-icons a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
    }

    .info-boxes {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 20px;
    }

    .info-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 15px 20px;
      border-radius: 12px;
      color: white;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: slideUp 0.5s ease forwards;
      opacity: 0;
    }

    .info-box strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 5px;
      font-weight: bold;
      color: #fff;
    }

    .info-box span {
      font-size: 0.9rem;
      color: #ccc;
    }

    .audio-controls {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 100;
      animation: bounceIn 0.5s ease forwards;
      animation-delay: 1s;
      opacity: 0;
    }

    .audio-controls i {
      color: white;
      font-size: 18px;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: scale(0.3);
      }

      50% {
        opacity: 0.9;
        transform: scale(1.1);
      }

      80% {
        opacity: 1;
        transform: scale(0.89);
      }

      100% {
        opacity: 1;
        transform: scale(1);
      }
    } 