* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: #EFFFFF;
  color: #333333;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 60px;
}

/* Ensure the player works with all themes */
.floating-player {
  font-family: Helvetica, Arial, sans-serif !important;
}

.floating-player {
  z-index: 9999;
}

.container {
  width: 1200px;
  margin: 0 auto;
  background-color: white;
  border: 1px solid #CCCCCC;
}

/* HEADER STYLES */
.header {
  background-color: #3B5998;
  color: white;
  padding: 10px 20px;
}

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

.nav {
  font-size: 12px;
}

.nav a {
  color: white;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}

/* PROFILE CONTAINER */
.profile-container {
  padding: 20px;
}

.profile-header {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.profile-header h1 {
  font-size: 24px;
  color: #FF6600;
}

.tagline {
  font-style: italic;
  color: #666666;
}

.online-status {
  margin-top: 5px;
  font-size: 12px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
}

/* Away styling (default) */
.is-away .status-dot {
  background-color: #FFCC00;
}

.is-away .status-text::after {
  content: "Away";
}

/* Online styling */
.is-online .status-dot {
  background-color: #00CC00;
}

.is-online .status-text::after {
  content: "Online!";
}

/* PROFILE CONTENT LAYOUT */
.profile-content {
  display: flex;
  gap: 20px;
}

.left-column {
  width: 35%;
}

.right-column {
  width: 65%;
}

/* LEFT COLUMN STYLES */
.profile-pic-section {
  text-align: center;
  margin-bottom: 20px;
}

.profile-pic {
  width: 100%;
  max-width: 300px;
  border: 1px solid #CCCCCC;
  padding: 5px;
  background-color: white;
}

.mood {
  margin-top: 10px;
  font-size: 14px;
  background-color: #F1F1F1;
  padding: 5px;
  border: 1px solid #CCCCCC;
}

.profile-details {
  margin-bottom: 20px;
}

.profile-details table {
  width: 100%;
  border-collapse: collapse;
}

.profile-details td {
  padding: 5px;
  border-bottom: 1px dotted #CCCCCC;
  font-size: 14px;
}

.profile-details td:first-child {
  font-weight: bold;
  width: 40%;
}

.url-section {
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  a {
    color: #3B5998;
    text-decoration: none;
    line-height: 1.8;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: start;
    max-width: 50%;
    &:hover {
      text-decoration: underline;
    }
    gap: 0.5rem;
    img {
      width: 1.1rem;
      margin-inline: 0.2rem 0;
    }
    span {
      font-size: 0.925rem;
    }
  }
}

/* SECTION HEADERS */
.section-header {
  background-color: #6698CB;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  margin-bottom: 10px;
  border: 1px solid #3B5998;
}

/* RIGHT COLUMN STYLES */
.about-me, .interests, .friends, .comments {
  margin-bottom: 30px;
  background-color: #F9F9F9;
  border: 1px solid #CCCCCC;
  padding: 10px;
}

.about-me p, .interests p {
  padding: 5px;
}

/* FRIENDS GRID */
.friend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.friend {
  text-align: center;
}

.friend img {
  /* width: 100%; */
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #CCCCCC;
  padding: 2px;
}

.friend figcaption {
  font-size: 12px;
  margin-top: 1px;
}

.view-all {
  text-align: right;
  margin-top: 10px;
  font-size: 12px;
}

.view-all a {
  color: #3B5998;
  text-decoration: none;
}

.view-all a:hover {
  text-decoration: underline;
}

/* COMMENTS SECTION */
.comment {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px dotted #CCCCCC;
  padding-bottom: 15px;
}

.comment img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border: 1px solid #CCCCCC;
  padding: 2px;
}

.comment-name {
  font-weight: bold;
  color: #3B5998;
}

.comment-date {
  font-size: 11px;
  color: #666666;
  margin-bottom: 5px;
}

.add-comment textarea {
  width: 100%;
  height: 60px;
  padding: 5px;
  margin-bottom: 5px;
  border: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
}

.add-comment button {
  background-color: #3B5998;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
}

.add-comment button:hover {
  background-color: #2D4373;
}

/* FOOTER */
.footer {
  background-color: #F1F1F1;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: #666666;
  border-top: 1px solid #CCCCCC;
}

/* CLASSIC MYSPACE LINKS */
a {
  color: #3B5998;
}

/* BLINK ANIMATION (OPTIONAL - VERY 2000s) */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.blink {
  animation: blink 1s infinite;
}
