@charset "utf-8";

/*------------------------------------------------------------------
[Master Stylesheet]

// Hidden Notice: This code is a property of and created by airxone.co. Pirating the code will result in legal actions and consequences. Disputes: post@airxone.co

-------------------------------------------------------------------*/

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #090909; /* Updated background color */
      color: #fff;
    }

    header {
      background-color: #090909; /* Updated background color */
      color: #fff;
      text-align: center;
      padding: 1em 0;
      margin-bottom: 20px;
    }

    .source-blocking-script {
      /* Styles for the source-blocking script container */
      display: none; /* Hide the container as it's for source code purposes only */
    }

    .container {
      max-width: 800px;
      margin: 50px auto;
      padding: 20px;
      background-color: #090909; /* Updated background color */
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .profile-image {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      margin: 20px auto 10px;
      display: block;
    }

    h1 {
      font-size: 20px;
    }

    p {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .bio-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: -80px;
    }

    .bio-link {
      width: 48%;
      margin-bottom: 20px;
      padding: 15px;
      background-color: #fff;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
      color: #000;
      font-weight: bold;
      transition: transform 0.2s ease-in-out, background-color 0.3s ease;
    }

    .bio-link:hover {
      background-color: #eee;
      transform: scale(1.05);
    }

    .video-container {
      margin-top: 20px;
      border-radius: 50px; /* Initial border radius for desktop screens */
      overflow: hidden; /* Ensure content inside the container doesn't protrude beyond the rounded corners */
    }

    iframe {
      width: 100%;
      max-width: 426px; /* Adjust the maximum width of the video container */
      height: 240px; /* Adjust the height of the video container */
      border: none;
    }

    footer {
      background-color: #090909; /* Updated background color */
      color: #fff;
      text-align: center;
      padding: 1em 0;
      font-size: 12px;
    }

    footer a {
      color: #fff;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }
      
      /* Social Media Icons Styles */
    .social-icons {
      margin-bottom: 15px;
    }

    .social-icons a {
      margin: 0 8px;
      color: #fff;
      text-decoration: none;
      font-size: 20px;
    }

    /* Media Query for Small Screens */
    @media screen and (max-width: 600px) {
      .bio-link {
        width: 100%; /* Make the buttons full width on smaller screens */
      }

      .video-container {
        border-radius: 10px; /* Lower border radius for mobile screens */
      }
    }