@font-face{
  font-family: 'BEBAS';
  src: url('/static/fonts/BebasNeue-Bold.woff2') format('woff2'),
       url('/static/fonts/BebasNeue_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  /* латиница + базовая Latin-Extended; кириллицу не трогаем */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC,
                 U+2013-2014, U+2018-201A, U+201C-201E, U+2020, U+2022, U+2026, U+2030, U+2039-203A;
}
* {
  scrollbar-width: none;            /* Firefox */
  -ms-overflow-style: none;         /* IE 10+ */
}
*::-webkit-scrollbar {
  display: none;                    /* Chrome, Safari */
}
@font-face {
  font-family: 'Raleway';
  src: url('/static/fonts/Raleway-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Raleway';
  src: url('/static/fonts/Raleway-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Raleway';
  src: url('/static/fonts/Raleway-Bold.woff2') format('woff2');
  font-weight: 700;
}

.profile_title{
  text-align: center;
  font-size: 40px;
  font-family: BEBAS !important;
  color: white;
}


body{
    background-color: #4f0017;
    color: white;
    padding: 50px 20px 20px 20px;
    font-family: "Raleway", sans-serif;
    margin: 0 auto;
    margin-bottom: 150px;

}
.vertical-waves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #4d0016;
}

.vertical-waves .wave {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translateX(-40%);
  opacity: 0.25;
  filter: blur(90px);
  animation: waveCurl 5s ease-in-out infinite;
  background: linear-gradient(to bottom, #9d002d, #be0036);
  clip-path: path("M0,0 C50,200 150,300 250,500 C350,700 450,600 550,800 C650,1000 750,900 850,1100 C950,1300 1050,1200 1150,1400 L1200,0 Z");
}

.vertical-waves .wave:nth-child(2) {
  background: linear-gradient(to bottom, #be0036, #9d002d);
  animation-delay: 4s;
  opacity: 0.2;
  clip-path: path("M0,0 C60,180 180,280 260,480 C360,680 460,580 580,780 C680,980 800,880 900,1080 C1000,1280 1120,1180 1200,1380 L1200,0 Z");
}

.vertical-waves .wave:nth-child(3) {
  background: linear-gradient(to bottom, #c00044, #6d0022);
  animation-delay: 8s;
  opacity: 0.15;
  clip-path: path("M0,0 C40,220 140,320 240,520 C340,720 440,620 540,820 C640,1020 740,920 840,1120 C940,1320 1040,1220 1140,1420 L1200,0 Z");
}

/* Живые колебания кудрей */
@keyframes waveCurl {
  0%, 100% {
    transform: translateX(-40%) scaleX(1);
  }
  50% {
    transform: translateX(-50%) scaleX(1.03) scaleY(1.02);
  }
}

.profile_container {
  margin: 30px auto;
  padding: 20px;
  background: #c00044;
  border-radius: 16px;
  font-family: 'Raleway', sans-serif;
  color: white;
}


.header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  left: 50%;
transform: translateX(-50%);
  background: linear-gradient(45deg, rgba(128, 26, 48, 0.164), rgba(78, 5, 21, 0.281));
  border: 1px solid #ffffff8f;
  border-radius: 50px;
  backdrop-filter: blur(5px);

  position: fixed;
  width: 90vw;
  height: 100px;
  bottom: 20px;

  box-sizing: border-box;
  z-index: 9999;

  box-shadow:
    inset 0 20px 30px -20px rgba(255, 255, 255, 0.3),  /* верх */
    inset 0 -20px 30px -20px rgba(255, 255, 255, 0.3); /* низ */
}
.header_icon{
  width: 22vw;
  height: 90px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header_icon img{
  margin-top: 17px;
  width: 30px;
  height: 30px;
 
}
.header_icon p{
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  padding: 0;
  margin: 0;margin-top: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.header_icon.active {
  background-color: #0000009c;
  animation: fadeInActive 0.5s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes fadeInActive {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

a {
  all: unset;
}






.blur_overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.blur_overlay.active {
  opacity: 1;
  pointer-events: all;
}
.avatar_wrapper {
  display: none !important;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 250px !important;
  height: 250px !important;
  justify-content: center;
  align-items: center;
}

.avatar_circle {
  display: none !important;
  width: 200px;
  height: 200px;
  border-radius: 30px;
  background: #ccc;
  overflow: hidden;
  position: absolute;
  border: 2px solid white;
}

.avatar_circle img {
  display: none !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.avatar_action {
  display: none !important;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background: #ff0049;
  border-radius: 50%;
  border: 2px solid white;
  color: white;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  z-index: 9999999;
}


