/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #161e27;
    color: #e0e0e0;
    line-height: 1.6;
  }
  a {
    color: #4da6ff;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  /* Language switch */
  .language-switch {
    text-align: right;
    padding: 10px;
  }
  .language-switch button {
    background: none;
    border: none;
    color: #4da6ff;
    font-size: 1em;
    cursor: pointer;
    margin: 0 5px;
  }
  /* Container styling */
  .container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #212a33;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  /* Profile header styling */
  .profile-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .profile-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
  }
  .profile-icon.animate {
    animation:
      0.4s linear infinite rotate,
      3.6s ease-in-out infinite scale;
  }
  .profile-title {
    font-size: 2em;
    margin-bottom: 10px;
  }
  .profile-description {
    font-size: 1.1em;
    color: #ccc;
  }
  /* Section header styling */
  h2 {
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #e0e0e0;
  }
  ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  li ul {
    list-style-type: circle;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  /* SNS icon styling */
  .sns-icon {
    margin-right: 8px;
    color: #4da6ff;
  }
  /* Footer styling */
  footer {
    text-align: center;
    font-size: 0.9em;
    color: #ccc;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
  }
  /* Adjustment for small screens */
  @media screen and (max-width: 600px) {
    /* Enforce line breaks and wrapping with blocked links in each listing */
    .container li a {
      display: block;
      margin-left: 1.2em;
      white-space: normal;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
  }
  
  @keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes scale {
    28% {
      scale: 800%;
    }
    50% {
      scale: 10%;
    }
    80% {
      scale: 1000%;
    }
  }
  