@charset "UTF-8";

/* === GENERAL STYLE === */
body {
  background:linear-gradient(135deg,#ff69b4,#8a2be2);
  font-family:'Poppins',sans-serif;
  font-size:16px;
  color:#fff;
  margin:0;
  padding:0;
}

/* === PROFILE CONTAINER === */
.profile_section_content {
  background:rgba(0,0,0,0.6);
  border-radius:15px;
  padding:20px;
  margin:20px auto;
  width:85%;
  box-shadow:0 4px 15px rgba(0,0,0,0.4);
  transition:transform .3s ease-in-out;
}

.profile_section_content:hover {
  transform:scale(1.02);
}

/* === TITLES === */
.profile_section h2,.profile_section h3 {
  color:#ffd700;
  text-align:center;
  font-size:22px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:15px;
  border-bottom:2px solid #ff69b4;
  display:inline-block;
  padding-bottom:5px;
}

/* === ABOUT ME (INFO BOX) === */
.profile_section_content table {
  width:100%;
  border-collapse:collapse;
}

.profile_section_content td {
  padding:8px;
  font-size:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.profile_section_content td:first-child {
  font-weight:bold;
  color:#ffb6c1;
  width:150px;
}

/* === TIP MENU === */
.tip-box {
  background:rgba(255,20,147,0.15);
  border:2px solid #ff69b4;
  border-radius:12px;
  padding:15px;
  margin:20px auto;
  width:90%;
  text-align:center;
  color:#fff;
  box-shadow:0 4px 15px rgba(255,20,147,0.4);
}

.tip-box h2 {
  font-size:24px;
  color:#ffb6c1;
  text-transform:uppercase;
  margin-bottom:10px;
  text-shadow:0 0 10px #ff69b4;
}

.tip-box ul {
  list-style:none;
  padding:0;
  margin:0;
}

.tip-box li {
  padding:8px;
  font-size:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  transition:all .3s ease;
}

.tip-box li:hover {
  background:rgba(255,105,180,0.2);
  transform:scale(1.05);
  border-radius:6px;
}

.tip-box li span {
  float:right;
  color:#ffd700;
  font-weight:bold;
}

/* === FRIENDS / TAGS BOX === */
.profile_friends,.profile_tags {
  background:rgba(0,0,0,0.5);
  padding:15px;
  border-radius:10px;
  margin-top:15px;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

/* === LINKS === */
a {
  color:#ffd700;
  text-decoration:none;
  transition:.3s;
}

a:hover {
  color:#ff69b4;
  text-shadow:0 0 8px #ff69b4;
}