.main-container {
    width: 100%;
    height: 5000px;
    background-color: #0e0e0e;
    margin: 0 auto;
    padding: 20px;
    border: #f5f5f5 1px solid;
    box-sizing: border-box;
}
 
/* Continer in care stau toate */
.login-user {
    width: 370px;
    height: 810px;
    position: relative;
    left: -5px;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: none; /* eliminăm fundalul de aici */
}

.login-user::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        319deg,
        rgba(235, 235, 56, 1) 14%,
        rgba(204, 153, 33, 1) 26%,
        rgba(255, 255, 255, 1) 48%,
        rgba(153, 86, 91, 1) 62%,
        rgba(133, 112, 179, 1) 84%
    );
    filter: blur(40px); /* BLUR PUTERNIC AICI */
    z-index: 0;
    border-radius: 10px;
}

.login-user > * {
    position: relative;
    z-index: 1; /* Conținutul stă deasupra blurului */
}


@font-face {
  font-family: 'Monsters';
  src: url('fonts/monsters.ttf') format('truetype');
}

/* Numele utilizatorului */
.welcome-message {
  font-weight: normal;     /* Textul "Bun venit" nu e bold */
  color: #252222;            /* Culoare neagră pentru "Bun venit" */
  font-size: 18px;
  position: absolute;
  top: 30px;
  left: 100px;
}

.username {
  color: #0bdac9;          /* Culoare albastră pentru nume - o poți schimba */
  font-weight: bold;       /* Numele poate fi cu bold dacă vrei */
}

/* Poza utilizatorului, dot online si icon */
.profile-section {
  position: relative;
  width: 160px;
  height: 110px;
  background-color: transparent; /* dacă vrei fundal */
  top: 55px;
  left: 90px;
}

/* Poza de profil centrată */
.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  left: 80px;
  top: 20px;
  transform: translateX(-50%);
}

/* Status-dot poziționat în colțul de jos dreapta al pozei */
.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
}

.status-dot.online {
  background-color: rgb(5, 219, 5);
}
.status-dot.away {
  background-color: gold;
  position: relative;
  overflow: hidden;
}
.status-dot.away::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  border-radius: 50%;
  left: 4px;
  top: 0;
}
.status-dot.dnd {
  background-color: red;
  position: relative;
}
.status-dot.dnd::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 2px;
  background-color: rgb(250, 246, 246);
  transform: translateY(-50%);
}
.status-dot.invisible {
  background-color: rgb(46, 45, 45);
}

.status-menu {
  display: none;
  position: absolute;
  top: 25px;
  left: -75px;
  background-color: #222;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 2px; /* mai puțin spațiu în interior */
  z-index: 10;
  font-size: 12px; /* text mai mic */
  min-width: 100px; /* opțional: lățime minimă redusă */
}

.status-menu div {
  padding: 3px 6px; /* mai mic padding pe itemi */
  cursor: pointer;
  color: white;
}

.status-menu div:hover {
  background-color: #444;
}

/* Icon personal (ex: stea sau altceva) */
.custom-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -3px;
  left: 140px;
  transform: translateX(-50%);
}


/* Rang si tip de putere*/
.rank-info {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: absolute;
  top: 175px;
  left: 50px;
  font-weight: bold; /* opțional */
}

.rank-info .rank {
  font-size: 16px;
  color: #252222;
}

.rank-info .type {
  font-size: 16px;
  color: #252222;
}

/* Detalii profil serii,factiune si puncte */
.horizontal-info {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap; /* backup pt ecrane mici */
   font-weight: bold; /* opțional */
  position: absolute;
  top: 210px;
  left: 15px;
}

.info-item {
  font-size: 13.5px;
  color: #252222;
}

.c-1 {
  order: 1;
}

.c-2 {
  order: 2; /* Poți schimba ordinea în flex */
}

.c-3 {
  order: 3;
}

/* Progres lvl bar */
.level-container {
  width: 330px;
  font-family: sans-serif;
  margin-top: 10px;
  position: absolute;
  top: 240px;
  left: 20px;
  z-index: 10;
}

.level-bar {
  width: 100%;
  height: 8px; /* mai subțire */
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(283deg,rgba(19, 237, 124, 1) 0%, rgba(46, 158, 72, 1) 27%, rgba(39, 209, 13, 1) 56%, rgba(77, 171, 65, 1) 80%);
  border-radius: 4px 0 0 4px;
  transition: width 0.3s ease;
}

.level-text {
  text-align: center;
  margin-top: 6px;
  font-size: 13px;
  color: #252222;
  font-weight: bold; /* opțional */
}

/* Butoanele de Setari si factiune */
.buttons {
  display: flex;
  gap: 30px; /* spațiu între butoane */
  justify-content: center; /* sau flex-start / flex-end */
  margin-top: 5px; /* spațiu față de elementele de deasupra */
  position: absolute;
  top: 300px;
  left: 60px;
}

.buttons button {
  padding: 6px 12px;
  font-size: 14px;
  background: linear-gradient(135deg, #ffffff, #ffcc00);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Cufar si popap*/
.chest-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 850px;
  background: rgba(255, 255, 255, 0.151); /* alb semi-transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* Safari */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 12px;
  overflow: hidden;
}

.chest-popup-content {
  background: rgba(255, 255, 255, 0.089); /* alb opac pentru lizibilitate */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.chest-images img {
  width: 180px;
  cursor: pointer;
  margin: 0 auto;
  display: block;
}

#reward-message {
  font-weight: bold;
  color: #041300;
  position: relative;
  top: -200px;
}

.reward-image {
  width: 100px;
  margin-top: 10px;
  position: relative;
  top: -210px; /* poți ajusta după nevoi */
  left: 0;    /* sau altă valoare dacă vrei să-l muți pe orizontală */
  transition: all 0.3s ease; /* pentru un efect mai plăcut la afișare */
}

.chest-closed {
  position: relative;
  left: 0px; /* exemplu: îl muți mai la stânga */
  top: 50px;
}

.chest-opened {
  position: relative;
  left: 0px; /* exemplu: îl muți mai la stânga */
  top: 150px;
}

.chest-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  position: absolute;
  top: 30px;
  color: #fafafa;
  text-shadow: 0 0 5px rgba(2, 2, 2, 0.822);
}

.chest-subtitle {
  font-size: 14px;
  color: #fafafa;
  margin-bottom: 20px;
  padding: 0 10px;
  line-height: 1.4;
  position: absolute;
  top: 110px;
  text-shadow: 0 0 5px rgba(2, 2, 2, 0.904);
}

/* notificare icon */
.notification-bell {
  position: absolute;
  top: 10px;
  right: 25px;
}
.bell-icon {
  cursor: pointer;
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.bell-icon:active {
  transform: scale(1.3);
}

/* top 3 img */
.favorite-series {
  display: inline-block;
  margin-top: 5px;       /* margine sus */
  position: absolute;
  top: 390px;
  left: 5px;
}

.favorite-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #252222;
  text-align: center;
  position: absolute;
  top: -35px;
  left: 125px;
}

.favorite-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px; /* distanță între imagini */
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap; /* imaginile rămân pe un singur rând */
}

.favorite-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.favorite-list img {
  width: 100px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.favorite-list img:hover {
  transform: scale(1.05);
}

.favorite-list .top-label {
  margin-top: 10px;
  color: rgb(48, 48, 48);
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  position: absolute;
  top: 140px;
}

/* Comentarile */
.user-comments-container {
  position: absolute;
  top: 585px;
  left: 70px;
  padding: 10px 20px;
  display: inline-block;
}

/* Linkul propriu-zis */
.user-comments {
  font-size: 16px;
  font-weight: bold;
  color: #252222;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

/* Hover cu gradient pe text */
.user-comments:hover {
  background: linear-gradient(46deg, rgba(36, 71, 227, 1) 0%, rgba(148, 47, 114, 1) 67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Numărul de comentarii */
.invitation-count {
  color: #252222;
  padding: 2px 8px;
  font-size: 14px;
}

/* Ultimul ep vizionat */
.last-episode {
  position: absolute;
  top: 635px;
  left: 40px;
  width: 300px; /* redusă față de 100% */
  height: 100px;
}

/* Eticheta */
.last-episode-label {
  font-size: 16px;
  font-weight: bold;
  color: #252222;
  position: absolute;
  top: 0px;
  left: 50px;
}

/* Link-ul episodului */
.last-episode-link {
  display: inline-block;
  white-space: pre-line;
  word-wrap: break-word;
  width: 300px;
  position: absolute;
  top: 30px;
  left: 0px;
  font-size: 14px;
  font-weight: bold;
  color: #252222;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover gradient */
.last-episode-link:hover {
  background: linear-gradient(46deg, rgba(36, 71, 227, 1) 0%, rgba(148, 47, 114, 1) 67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container pentru invitații */
.invitations-container {
  position: absolute;
  top: 710px;
  left: 85px;
  padding: 5px 5px;
  display: inline-block;
}

/* Linkul propriu-zis */
.invitations {
  display: inline-block;
  font-size: 16px;
  margin: 6px 0;
  text-align: center;
  color: #252222;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Gradient DOAR pe hover */
.invitations:hover {
  background: linear-gradient(46deg, rgba(36, 71, 227, 1) 0%, rgba(148, 47, 114, 1) 67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Numărul de invitații */
.invitation-count {
  transition: all 0.3s ease;
}

/* Container pentru butonul de logout */
.logout-container {
  position: absolute;
  top: 765px;
  left: 36px;
  width: 300px;
  height: 35px;
}

/* Butonul propriu-zis */
.logout {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  background: linear-gradient(135deg, #ffffff, #ffcc00);
  color: #252222;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

/* Continerul unde sunt elementele*/
.membri-user {
    width: 370px;
    height: 140px;
    position: relative;
    left: -5px;
    top: 10px;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: none; /* eliminăm fundalul de aici */
}

.membri-user::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        319deg,
        rgba(235, 235, 56, 1) 14%,
        rgba(204, 153, 33, 1) 26%,
        rgba(255, 255, 255, 1) 48%,
        rgba(153, 86, 91, 1) 62%,
        rgba(133, 112, 179, 1) 84%
    );
    filter: blur(40px); /* BLUR PUTERNIC AICI */
    z-index: 0;
    border-radius: 10px;
}

.membri-user > * {
    position: relative;
    z-index: 1; /* Conținutul stă deasupra blurului */
}

/* Titlu */
.titlu-cautare {
  display: block;
  text-align: center;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #252222;
  text-shadow: 0 0 1.5px #ffffff6c;
  position: absolute;
  top: 20px;
  left: 140px;
}

/* Bara de cautare*/
.bara-cautare {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #999;
  margin-bottom: 12px;
  position: absolute;
  top: 75px;
}

/* Anne*/
.personaj-anime {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 5px;
}

.avatar-anime {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
















/* Continerul unde sunt elementele*/
.serii-cerute {
    width: 370px;
    height: 700px;
    position: relative;
    left: 1480px;
    top: 350px;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: none; /* eliminăm fundalul de aici */
}

.serii-cerute::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        319deg,
        rgba(235, 235, 56, 1) 14%,
        rgba(204, 153, 33, 1) 26%,
        rgba(255, 255, 255, 1) 48%,
        rgba(153, 86, 91, 1) 62%,
        rgba(133, 112, 179, 1) 84%
    );
    filter: blur(40px); /* BLUR PUTERNIC AICI */
    z-index: 0;
    border-radius: 10px;
}

.serii-cerute > * {
    position: relative;
    z-index: 1; /* Conținutul stă deasupra blurului */
}

























.media {
  width: 370px;
  height: auto;
  position: relative;
  left: 1480px;
  top: -590px;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: none;
  display: flex;
  flex-direction: column; /* titlu + coloane vertical */
  gap: 15px;
  z-index: 1;
}

.media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    319deg,
    rgba(235, 235, 56, 1) 14%,
    rgba(204, 153, 33, 1) 26%,
    rgba(255, 255, 255, 1) 48%,
    rgba(153, 86, 91, 1) 62%,
    rgba(133, 112, 179, 1) 84%
  );
  filter: blur(40px);
  z-index: 0;
  border-radius: 10px;
}

.media > * {
  position: relative;
  z-index: 1;
}

.social-title {
  display: inline-block;
  width: max-content;
  font-family: Arial, sans-serif;
  font-size: 26px;
  color: #252222;
  font-weight: bold;
  text-shadow: 0 0 1.5px #ffffff6c;
  margin: 5px; /* sau left: 100px dacă vrei poziționare */
  position: relative;
  top: 0px;
  left: 100px;
  z-index: 2;
}



/* Containerul pentru cele 2 coloane */
.media-columns {
  display: flex;
  gap: 40px; /* spațiu între coloane */
  justify-content: center;
}

/* Fiecare coloană */
.media-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Stil pentru linkurile individuale */
.media-link {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.media-link:hover {
  background: linear-gradient(46deg, rgba(36, 71, 227, 1) 0%, rgba(148, 47, 114, 1) 67%);
  color: white;
  transform: scale(1.1);
}

/* Textul social media */
.media-text {
  font-size: 18px;
  font-weight: 600;
  user-select: none;
  font-weight: bold;
}

/* Iconițele */
.media-icon {
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
  transition: filter 0.3s;
}

.media-link:hover .media-icon {
  filter: none; /* lasă iconița normală, fără invert */
}



























/* Continer unde sunt elementele*/
.suprinde-ma {
  width: 370px;
  height: 400px;
  position: relative;
  left: 1480px;
  top: -1880px;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: none;
}

.suprinde-ma::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    319deg,
    rgba(235, 235, 56, 1) 14%,
    rgba(204, 153, 33, 1) 26%,
    rgba(255, 255, 255, 1) 48%,
    rgba(153, 86, 91, 1) 62%,
    rgba(133, 112, 179, 1) 84%
  );
  filter: blur(40px);
  z-index: 0;
  border-radius: 10px;
}

.suprinde-ma > * {
  position: relative;
  z-index: 1;
}

/* Titlul suprinde-ma*/
.titlu-surprinde {
  position: absolute;
  top: 10px;
  left: 100px;
  font-size: 24px;
  color: #252222; /* alb opac */
  font-weight: bold;
  text-shadow: 0 0 1.5px #ffffff6c;
}

/* Cartonasul*/
.cartonas-serie {
  width: 180px;
  height: 250px;
  cursor: pointer;
  position: absolute;
  top: 100px;
  left: 100px;
  border-radius: 12px;
  padding: 0;
  text-align: center;
}

.serie-img {
  width: 180px;
  height: 250px;
  object-fit: contain;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
  position: relative;
  z-index: 10;
}

/* Numele seriei*/
.nume-serie {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: -35px;
  left: 50%;              /* poziționează la jumătatea containerului părinte */
  transform: translateX(-50%);  /* mută înapoi jumătate din propria lățime */
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* Treaducatorul*/
.traducator {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 265px;
  left: 160px;
  transform: translateX(-50%);
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

.buton-link {
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    padding: 6px 8px;
    color: #444;
    background: linear-gradient(135deg, #ffffff, #ffcc00);
    position: absolute;
    top: 211px;
    left: 170px;

    /* Rotunjire doar pe partea dreaptă */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
}

.buton-link:hover {
    background: linear-gradient(46deg, rgba(36, 71, 227, 1) 0%, rgba(148, 47, 114, 1) 67%);
    color: #fff; /* opțional, să se vadă bine textul */
}
























.serii-programate {
  width: 370px;
  height: 400px;
  position: relative;
  left: 1480px;
  top: -1870px;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: none;
}

.serii-programate::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    319deg,
    rgba(235, 235, 56, 1) 14%,
    rgba(204, 153, 33, 1) 26%,
    rgba(255, 255, 255, 1) 48%,
    rgba(153, 86, 91, 1) 62%,
    rgba(133, 112, 179, 1) 84%
  );
  filter: blur(40px);
  z-index: 0;
  border-radius: 10px;
}

.serii-programate > * {
  position: relative;
  z-index: 1;
}

.titlu-programate {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.zile-butoane-container {
  width: 350px;
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 12px;
  padding-bottom: 5px;
  cursor: grab;
  position: absolute;
  top: 60px;

  /* Ascunde scrollbar */
  -ms-overflow-style: none;  /* IE și Edge */
  scrollbar-width: none;     /* Firefox */
}

.zile-butoane-container::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}

.zile-butoane {
  display: inline-flex;
  gap: 10px;
}

.zile-butoane button {
  min-width: 80px;
  flex-shrink: 0;
  padding: 8px 10px;
  border: none;
  background: linear-gradient(135deg, #ffffff, #ffcc00);
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
  font-weight: 600;
}

.zile-butoane button:hover {
  background: linear-gradient(46deg, rgba(36, 71, 227, 1) 0%, rgba(148, 47, 114, 1) 67%);
  color: #fcfcfc;
}

/* === Modificare aici pentru scroll invizibil pe program-afisat === */
.program-afisat {
  min-height: 270px;
  max-height: 400px; /* limitează înălțimea */
  width: 350px;
  position: absolute;
  top: 120px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);

  overflow-y: auto;  /* Afișează scroll vertical dacă depășește înălțimea */
  overflow-x: hidden;

  /* Ascunde scroll bar invizibil */
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.program-afisat::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera */
}

/* Asigură că conținutul din continutZi nu blochează scroll-ul */
#continutZi {
  max-height: none;
  overflow: visible;
}

/* === DISCLAIMER === */
.wrapper-disclaimer {
  position: relative;
  width: 100%;
  padding-left: 35px; /* spațiu pentru buton */
}

.toggle-disclaimer {
  position: absolute;
  left: -5px;
  top: 205px;
  background: #ffcc00;
  color: #000;
  border: none;
  border-radius: 50%;
  font-weight: bold;
  width: 26px;
  height: 26px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 2;
}

.disclaimer {
  font-size: 10px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 8px;
  border-radius: 10px;
  margin-top: 10px;
  text-align: left;
  display: flex;
  gap: 6px;
  line-height: 1.4;
  width: 300px;
  align-items: flex-start;
  position: absolute;
  top: 195px;
  left: 30px;
}

.wrapper-disclaimer.ascuns .disclaimer {
  display: none;
}

.program-detalii {
  font-size: 13px;
  color: white;
  padding: 8px 10px;
  display: flex;
  font-weight: bold;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  line-height: 1.4;
  margin-top: 10px;
}

.ora-data {
  font-weight: bold;
  font-size: 11.5px;
  color: #ffcc00;
}

.titlu-ep {
  font-size: 13.5px;
}






















.serii-recente {
  width: 370px;
  height: 450px;
  position: relative;
  left: -5px;
  top: -1710px;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: none;
  display: flex;
  flex-direction: column; /* titlu + coloane vertical */
  gap: 15px;
  z-index: 1;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.serii-recente::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    319deg,
    rgba(235, 235, 56, 1) 14%,
    rgba(204, 153, 33, 1) 26%,
    rgba(255, 255, 255, 1) 48%,
    rgba(153, 86, 91, 1) 62%,
    rgba(133, 112, 179, 1) 84%
  );
  filter: blur(40px);
  z-index: 0;
  border-radius: 10px;
}

.serii-recente > * {
  position: relative;
  z-index: 1;
}

/* Titlul */
.serii-recente-titlu {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #252222; /* alb opac */
  font-weight: bold;
  text-shadow: 0 0 1.5px #ffffff6c;
  text-align: center;
}

/* Containerul listei */
.serii-lista {
  flex: 1; /* să ocupe tot spațiul rămas */
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto; /* scroll dacă e nevoie */
  padding-right: 6px; /* ca să nu atingă scroll-ul textul */
}

.serii-lista::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.serii-lista {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.serii-lista::-webkit-scrollbar-thumb {
  background: transparent;
}


/* Elementul serie */
.serie-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  transition: background 0.2s ease;
}

.serie-item:hover {
  background: #e9d8ff;
}

.serie-nume {
  font-weight: 600;
  font-size: 0.8rem; /* mai mic decât 1.1rem */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #252222;
}


.serie-episod {
  font-size: 0.8rem;
  color: #555;
  text-align: center;
  position: absolute;
  left: 190px;
}

.serie-ora {
  font-size: 0.8rem;
  color: #555;
  text-align: center;
   position: absolute;
  left: 280px;
}

.serii-lista.dragging {
  cursor: grabbing;
  user-select: none;
}




















 .stiri-anime {
      width: 370px;
      height: 565px;
      position: relative;
      left: -5px;
      top: -1700px;
      padding: 10px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      background: none;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
    }

    .stiri-anime::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(
        319deg,
        rgba(235, 235, 56, 1) 14%,
        rgba(204, 153, 33, 1) 26%,
        rgba(255, 255, 255, 1) 48%,
        rgba(153, 86, 91, 1) 62%,
        rgba(133, 112, 179, 1) 84%
      );
      filter: blur(20px);
      z-index: 0;
      border-radius: 10px;
    }

    .stiri-titlu {
      text-align: center;
      font-weight: bold;
      text-shadow: 0 0 1.5px #ffffff6c;
      font-size: 1.5rem;
      color: #222;
      margin: 40px 0 30px;
      z-index: 1;
    }

    .stiri-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
      z-index: 1;
    }

    .stire-card {
      display: flex;
      background: linear-gradient(135deg, #ffffff, #ffcc00);
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      font-family: 'Segoe UI', sans-serif;
      position: relative;
      overflow: hidden;
      gap: 15px;
      align-items: flex-start;
    }

    .stire-card:hover {
      transform: scale(1.02);
    }

    .stire-card img {
      width: 95px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      position: relative;
      left: -5px;
    }

    .stire-content {
      padding: 15px;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .stire-title {
      font-size: 11.6px;
      color: black;
      font-weight: bold;
      line-height: 1;
      position: relative;
      left: -20px;
      top: -5px;
    }

    .stire-data {
      font-size: 0.85rem;
      color: #000;
      margin-bottom: 10px;
      position: relative;
      top: -5px;
      left: 115px;
    }

    .stire-text {
      font-size: 11.5px;
      color: #000;
      display: flex;
      flex-direction: column;
    }

    .stire-text-top {
      width: 220px;
      line-height: 1.2;
      position: relative;
      left: -15px;
      top: -7px;
    }

    .stire-text-bottom {
      width: 350px;
      line-height: 1.2;
      position: relative;
      left: -130px;
      top: 2px;
    }



 





.citeste-mai-multe {
  font-size: 0.85rem;
  font-weight: bold;
  align-self: flex-start;
  position: relative;
  top: 20px;
  left: 48px;

  background: linear-gradient(90deg, #0a0a0a, #313031); /* Gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.citeste-mai-multe:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

















.donatii {
  width: 370px;
  height: 230px;
  position: relative;
  left: 1480px;
  top: -2875px; /* modifică sau elimină dacă nu vrei poziționare offscreen */
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.donatii::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    319deg,
    rgba(235, 235, 56, 1) 14%,
    rgba(204, 153, 33, 1) 26%,
    rgba(255, 255, 255, 1) 48%,
    rgba(153, 86, 91, 1) 62%,
    rgba(133, 112, 179, 1) 84%
  );
  filter: blur(40px);
  z-index: 0;
  border-radius: 10px;
}

.donatii-titlu {
  font-size: 1.3rem;
  font-weight: 700;
  color: #252222; /* un mov închis */
  text-align: center;
  margin-bottom: 8px;
  font-weight: bold;
  text-shadow: 0 0 1.5px #ffffff6c;;
}


.donatii > * {
  position: relative;
  z-index: 1;
}

.donatii-content {
  display: flex;
  gap: 15px;
  align-items: center;
  position: absolute;
  top: 50px;
}

.donatii-img img {
  width: 120px;
  height: auto;
}

.donatii-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.donatii-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: bold;
  color: #000000;
  transition: background 0.3s ease, transform 0.2s ease;
  background: linear-gradient(135deg, #ffffff, #ffcc00);
}

.donatii-links a:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.donatii-links a.revolut {
  background: linear-gradient(135deg, #ffffff, #ffcc00);
}

.donatii-links a.bmac {
  background: linear-gradient(135deg, #ffffff, #ffcc00);
  color: #333;
}

.donation-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}






