/* Background with subtle gradient like Roblox site */
body {
  background: linear-gradient(135deg, #f0f0f0 0%, #d9d9d9 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
}

/* Main profile container */
#profile {
  background-color: #fff;
  width: 85%;
  max-width: 900px;
  margin: 40px auto;
  border: 3px solid #c90000;
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 8px 15px rgba(201, 0, 0, 0.35);
  transition: box-shadow 0.3s ease;
}

#profile:hover {
  box-shadow: 0 12px 25px rgba(201, 0, 0, 0.6);
}

/* Headers with Roblox red and uppercase style */
h1, h2, h3 {
  color: #c90000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  border-bottom: 3px solid #c90000;
  padding-bottom: 8px;
}

/* Links with bright blue Roblox-ish style */
a {
  color: #007bff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Profile picture with blocky border */
#profilePic img {
  width: 160px;
  border: 5px solid #c90000;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(201, 0, 0, 0.7);
  display: block;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

#profilePic img:hover {
  transform: scale(1.1);
}

/* Friends and comments sections */
#friends, #comments {
  background-color: #f7f7f7;
  border: 2px solid #ddd;
  padding: 20px;
  margin-top: 30px;
  border-radius: 6px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

/* Buttons styled Roblox style */
.button {
  display: inline-block;
  background-color: #c90000;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 5px;
  box-shadow: 0 5px #900000;
  text-align: center;
  user-select: none;
  transition: background-color 0.3s ease, box-shadow 0.1s ease;
  cursor: pointer;
  border: none;
  margin: 12px 5px 0 0;
}

.button:active {
  box-shadow: 0 2px #900000;
  transform: translateY(3px);
}

.button:hover {
  background-color: #a80000;
}

/* Add a subtle Roblox blocky background pattern in header */
#header {
  background: repeating-linear-gradient(
    45deg,
    #c90000,
    #c90000 10px,
    #b00000 10px,
    #b00000 20px
  );
  color: white;
  font-weight: 900;
  text-align: center;
  padding: 15px 0;
  font-size: 22px;
  text-shadow: 2px 2px 4px #660000;
  letter-spacing: 2px;
  user-select: none;
}

/* Cool Roblox "brick" style footer */
#footer {
  background-color: #c90000;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-weight: 700;
  font-size: 13px;
  margin-top: 40px;
  border-radius: 0 0 8px 8px;
  user-select: none;
  letter-spacing: 1px;
  box-shadow: inset 0 3px 8px rgba(255, 255, 255, 0.15);
}

/* Smooth scroll for profile content */
html {
  scroll-behavior: smooth;
}

/* Fun Roblox block icon for bullet points */
ul li {
  list-style-type: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: #c90000;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(201,0,0,0.8);
}
