/* Using a dark, futuristic palette with native blue glow */
:root {
}

main {
  font-family: var(--font-family);
  margin: 0;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center; /* Align items to the top */
  min-height: 100vh;
  height: 100%;
  padding: 20px; /* Add some padding around the content */
  box-sizing: border-box; /* Include padding in element's total width and height */
  overflow-y: auto; /* Add scroll if content overflows */
}

.container {
  background: linear-gradient(
    180deg,
    rgba(10, 11, 14, 1) 0%,
    rgba(10, 11, 14, 1) 100%
  );

  padding: 30px;
  border-radius: 15px; /* Rounded corners for the main container */
  box-shadow: 0 0 20px var(--logo-color2); /* Blue glow effect */
  text-align: center;
  width: 100%;
  height: 100%;
  max-width: 40vw; /* Max width similar to a mobile screen */
  border: 1px solid var(--logo-color2); /* Blue border */
}

.profile-section {
  margin-bottom: 30px; /* Increased margin */
}

.profile-img {
  width: 100%; /* Larger image */
  height: 100%;
  object-fit: cover; /* Cover the area without distorting aspect ratio */
  margin-bottom: 15px; /* Increased margin */
}

.profile-section p {
  margin: 0;
  margin-top: 20px;
  font-size: 1.1em; /* Slightly larger font size */
  color: var(--primary-color); /* Secondary blue for description */
}

.links-section ul {
  width: 300px;
}
.social-icons {
  margin-bottom: 40px; /* Increased margin */
}

.social-icons a {
  color: var(--primary-color); /* Blue icon color */
  font-size: 2.2em; /* Larger icons */
  margin: 0 20px; /* Increased space between icons */
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 0 5px var(--logo-color2); /* Subtle initial glow */
}

.social-icons a:hover {
  color: var(--logo-color2); /* Change color on hover */
  text-shadow: 0 0 15px var(--logo-color2); /* Stronger glow on hover */
}

.links-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.links-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-section li {
  margin-bottom: 20px; /* Increased space between buttons */
}

.links-section a {
  width: 100%;
  display: block; /* Make the link a block element to fill the width */
  color: var(--primary-color); /* Blue text on buttons */
  padding: 18px 20px; /* Increased padding */
  border-radius: 10px; /* More rounded corners for buttons */
  text-decoration: none;
  font-size: 1.2em; /* Larger font size */
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

footer {
  background: transparent;
  margin-top: 40px; /* Increased margin */
  font-size: 1em;
  width: 100%;
  height: 60px;
  color: var(--primary-color); /* Secondary blue for footer text */
}

section.linkAnnotation a,
a.linkAnnotation,
.buttonWidgetAnnotation a,
a.customLinkAnnotation,
.customHtmlAnnotation,
.customVideoAnnotation,
a.df-autolink {
  background-color: transparent !important;
}

.duo-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.button.nomargin {
  margin: 0 !important;
}

._df_button {
  background: none !important;
  border: none !important;
  padding: 6px 20px !important;
}

._df_button img {
  width: 30px;
  height: 30px;
}

/* Basic responsiveness */
@media (max-width: 480px) {
  .container {
    padding: 20px;
    max-width: 400px;
  }

  .profile-section p {
    font-size: 1em;
  }

  .social-icons a {
    font-size: 1.8em;
    margin: 0 10px;
  }

  .links-section a {
    padding: 15px 15px;
    font-size: 1.1em;
  }

  footer {
    margin-top: 30px;
    font-size: 0.9em;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 20px;
    max-width: 700px;
  }
}
