@charset "UTF-8";

url(https://fonts.googleapis.com/css2?family=Dancing+Script&family=Great+Vibes&display=swap);
/* === Animated Blurry Background === */
body {
  position:relative!important;
  overflow-x:hidden!important;
}

body::before {
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle at 30% 30%,rgba(255,0,128,0.3),transparent 30%),radial-gradient(circle at 70% 70%,rgba(255,128,192,0.3),transparent 30%),radial-gradient(circle at 50% 50%,rgba(255,0,64,0.25),transparent 40%);
  animation:bgFlow 30s linear infinite!important;
  filter:blur(100px)!important;
  z-index:0!important;
  pointer-events:none!important;
}

@keyframes bgFlow {
  0% {
    transform:translate(0%,0%) scale(1);
  }

  50% {
    transform:translate(10%,10%) scale(1.2);
  }

  100% {
    transform:translate(0%,0%) scale(1);
  }
}

/* === SEXY DARK CHERRY + VELVET RED THEME === */
html,body,.profile_container,#profile,#wall,#content,.main {
  background:linear-gradient(to bottom,#120015,#2d001e)!important;
  font-family:'Dancing Script',cursive!important;
  color:#ffdee9!important;
}

html,body,.content,#wall,.profile_container {
  background:linear-gradient(to bottom,#120015,#2d001e)!important;
  font-family:'Dancing Script',cursive!important;
  color:#ffdee9!important;
  margin:0!important;
  padding:0!important;
  overflow-x:hidden;
}

/* === Card Layout === */
.profile_section {
  background:rgba(139,0,50,0.15);
  border:1px solid rgba(255,255,255,0.05);
  border-radius:16px;
  margin:20px auto;
  padding:20px;
  box-shadow:0 0 15px rgba(255,105,135,0.25);
  max-width:95%;
  box-sizing:border-box;
  transition:all .3s ease;
}

.profile_section:hover {
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(255,105,135,0.4);
}

/* === Section Headings === */
.profile_section_content .heading {
  font-family:'Great Vibes',cursive;
  background:#ff3e6c;
  color:#fff;
  text-align:center;
  font-size:20px;
  padding:12px;
  border-radius:10px;
  font-weight:700;
  margin-bottom:20px;
  text-shadow:0 0 5px #000;
  box-shadow:0 0 10px rgba(255,105,135,0.5);
}

/* === Labels and Values === */
.label {
  color:#ffacc6;
  font-weight:bold;
  text-shadow:0 0 4px #300015;
}

.value {
  color:#ffe6f1;
  word-break:break-word;
}

/* === About Me 2-Column Layout === */
#profile_main_about_holder {
  display:flex;
  flex-wrap:wrap;
  gap:10px!important;
  margin-bottom:10px!important;
}

#profile_main_photo {
  flex:1 1 35%;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

#profile_about_me_friends {
  flex:1 1 60%;
}

/* === Images (Avatar, Thumbnails) === */
.img_radius_shadow,.thumb,.photo_gallery_image {
  border-radius:12px;
  border:2px solid #ff4f81;
  box-shadow:0 0 12px rgba(255,105,135,0.5);
  transition:.3s ease;
  max-width:100%;
}

.thumb:hover,.photo_gallery_image:hover {
  transform:scale(1.05);
  box-shadow:0 0 14px #fff;
}

/* === Message Wall === */
#message_wall {
  background:rgba(255,20,147,0.05);
  border-radius:12px;
  padding:20px;
  border:1px solid #ff7aa2;
  box-shadow:0 0 12px rgba(255,105,135,0.2);
}

/* === Links === */
a {
  color:#fff;
  background:#ff3e6c;
  padding:6px 14px;
  border-radius:25px;
  font-weight:bold;
  text-decoration:none;
  transition:all .3s ease;
  display:inline-block;
}

a:hover {
  background:#fff;
  color:#ff2e63;
  box-shadow:0 0 8px #fff;
}

/* === Enlarge Image & Add Padding Below === */
#profile_main_photo img {
  display:block;
  width:100%!important;
  height:auto;
  margin-bottom:30px!important;
/* Adjust spacing below image */
  border-radius:12px;
  border:2px solid #ff4f81;
  box-shadow:0 0 12px rgba(255,105,135,0.5);
}

/* === FULL RESPONSIVENESS FIX FOR MOBILE */
/* === FINAL MOBILE FIX === */
@media screen and (max-width: 768px) {
  html,body {
    width:100%!important;
    padding:0!important;
    margin:0!important;
    overflow-x:hidden!important;
  }

  .main,#content,#wall,#profile,.profile_container {
    width:100%!important;
    max-width:100%!important;
    padding:10px!important;
    margin:0 auto!important;
    box-sizing:border-box!important;
    float:none!important;
    position:relative!important;
    left:0!important;
  }

  .profile_section {
    width:100%!important;
    max-width:100%!important;
    margin:10px 0!important;
    padding:10px!important;
    box-sizing:border-box!important;
  }

  #profile_main_about_holder {
    flex-direction:column!important;
    gap:10px!important;
    width:100%!important;
    display:flex!important;
  }

  #profile_main_photo,#profile_about_me_friends {
    flex:1 1 100%!important;
    width:100%!important;
    max-width:100%!important;
  }

  #profile_main_photo img {
    width:100%!important;
    height:auto!important;
  }

  .thumb,.photo_gallery_image {
    width:100%!important;
    height:auto!important;
    max-width:100%!important;
  }

  .heading {
    font-size:18px!important;
    text-align:center!important;
    padding:10px!important;
  }

  .label,.value {
    font-size:14px!important;
    word-wrap:break-word!important;
  }
}

body,html {
  min-width:100vw!important;
  overflow-x:auto!important;
}

.profile_container,#profile,#wall,#content,.main,table {
  max-width:100%!important;
  width:100%!important;
  box-sizing:border-box!important;
  overflow-x:auto!important;
  display:block!important;
}

/* === Fix Horizontal Scroll / Blank Space on Mobile === */
html,body {
  overflow-x:hidden!important;
  width:100%!important;
}

.profile_container,#profile,#wall,#content,.main,table {
  max-width:100%!important;
  overflow-x:hidden!important;
}

* {
  box-sizing:border-box!important;
}