/* Player button */
.btn-close-player { 
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-close-player:hover { background: rgba(255,255,255,.15); border-color: #fff; }



/* Movie & TV details blur */
.hero { position: relative; overflow: hidden; }

/* elmosott háttér */
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(22px); transform: scale(1.15); }

/* sötét overlay */
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.85) 100%); }

/* előtér */
.hero .container { position: relative; z-index: 1; }


/* Backgrounds */

/* Login */
.bg-login { background: linear-gradient(rgba(5,5,10,0.55), rgba(5,5,10,0.55)), url('/images/login.jpg'); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; }


/* Homepage */
.bg-index { background: linear-gradient(rgba(5,5,10,.9), rgba(5,5,10,.9)), url('/images/filmdepo.jpg') center / cover fixed; }


/* Live TV */
.bg-livetv { background: linear-gradient(rgba(5,5,10,.9), rgba(5,5,10,.9)), url('/images/livetv.jpg') center / cover fixed; }

/* Movies */
.bg-movies { background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('https://image.tmdb.org/t/p/w1280/8UlWHLMpgZm9bx6QYh0NFoq67TZ.jpg'); background-size:cover; background-position:center; background-attachment:fixed; }

/* TV */
.bg-tv { background: linear-gradient(rgba(10,10,20,0.88), rgba(10,10,20,0.88)), url('https://image.tmdb.org/t/p/w1280/6EdKBYkB1ssgGjc249ud1L55o8d.jpg'); background-size:cover; background-position:center; background-attachment:fixed; }

/* Upload */
.bg-upload { background: linear-gradient(rgba(5,5,10,.9), rgba(5,5,10,.9)), url('/images/filmdepo.jpg') center / cover fixed; }

/* Profile */
.profile-bg { position: fixed; inset: 0; background: linear-gradient(rgba(15,15,15,.85), rgba(15,15,15,.85)), var(--profile-image) center / cover fixed; filter: blur(25px); transform: scale(1.1); z-index: -1; }
.profile-content { position: relative; z-index: 1; }


/* Hozzászólások */

/* Textarea */
.comment-textarea { background-color: rgba(255, 255, 255, 0.04); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.comment-textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

/* Komment kártya alap */
.comment-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; position: relative; transition: background 0.2s ease; }
.comment-card:hover { background: rgba(255, 255, 255, 0.06); }

/* BAL OLDALI KÉK CSÍK */
.comment-accent { border-left: 4px solid #0d6efd; padding-left: 6px; }

/* Avatar */
.comment-avatar { object-fit: cover; box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.7); }

/* Szerző */
.comment-author { font-weight: 600; font-size: 0.95rem; color: #ffffff; }

/* Dátum */
.comment-date { font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); white-space: nowrap; }

/* Komment szöveg */
.comment-text { margin-top: 4px; font-size: 0.95rem; line-height: 1.65; color: rgba(255, 255, 255, 0.9); word-break: break-word; }


.text-justify { text-align: justify; text-justify: inter-word; }