.news-1 {
    width: 100%;
    box-sizing: border-box;

    padding: 15px;
    margin: 30px 0;

    border-radius: 12px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}


.news-1 h2 {
    color: #ff5f5f;
    font-size: 1.6em;
    margin-top: 0;
}

.news-1 p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.news-header {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #ff5f5f;
    margin: 10px 20px 10px 20px;
    border-bottom: 3px solid #ff5f5f;
    padding-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    user-select: none;
}

.pagination {
    margin: 20px 0 40px 20px;
    display: flex;
    gap: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pagination a {
    color: #eee;
    background-color: #222;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.pagination a:hover {
    background-color: #ff5f5f;
    color: #fff;
    box-shadow: 0 0 8px #ff5f5f;
}

.pagination a.active {
    background-color: #ff5f5f;
    color: #fff;
    box-shadow: 0 0 10px #ff5f5f;
    cursor: default;
}


nav li {
    list-style: none;
    margin: 6px 0;
    padding: 10px 14px;
    border-radius: 12px;

    background: linear-gradient(
        180deg,
        rgba(50,50,50,.85),
        rgba(35,35,35,.85)
    );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,.06);

    color: #ddd;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .18s ease,
        box-shadow .25s ease,
        color .2s ease;
}

nav li:hover {
    background: linear-gradient(
        90deg,
        rgba(144,65,239,.55),
        rgba(144,65,239,.15)
    );

    color: #fff;

    transform: translateX(6px);

    box-shadow:
        0 8px 20px rgba(144,65,239,.45),
        0 0 14px rgba(144,65,239,.35);
}


.MovPanel {
    display: grid;
    grid-template-columns: repeat(4, 250px);
    gap: 20px; /* space between covers */
    padding: 20px;
    justify-content: center;
}

.MovPanel img {
    width: 230px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
}


.content {
    flex: 1;
    min-height: 100vh;
    padding: 0px;
}

.navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;

    background: rgba(17,17,17,0.85);
    backdrop-filter: blur(8px);

    padding: 10px;
    overflow-y: auto;
    color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
}


.navi img {
    border-radius: 10px;
    margin-bottom: 0px;
}

.navi h3 {
    font-size: 1.3rem;
    color: #ff5f5f;
    margin-top: 0px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 0px;
}

.navi a {
    display: block;
    font-size: 1.1rem;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0px 0;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.navi a:hover {
    /*background: #ff5f5f;*/
    background-color:#9041ef;
    color: #fff;
}


.custom-container {
  width: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}

.custom-content {
  max-width: 800px;
  margin: 0 auto;
}

.custom-card {
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 14px;
  box-shadow:
      0 12px 25px rgba(0,0,0,0.55),
      inset 0 0 0 1px rgba(255,255,255,0.05);

  margin-bottom: 1rem;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow:
      0 20px 40px rgba(0,0,0,0.65),
      inset 0 0 0 1px rgba(255,255,255,0.05);
}


.custom-card-body {
  padding: 1rem 1.5rem;
}


.custom-card-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #ff5f5f;
}

.text-muted {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.custom-card-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

.custom-card-text img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  max-width: 100%;
  display: block;
  margin: 0 auto;
}


.custom-card-body hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1rem 0;
}


.card {
    background: rgba(40,40,40,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 12px;
    border: 0;
    color: #fff;
    width: 150px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 25px rgba(0,0,0,0.55);
}


.img-size {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}


.actor-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
}


.movie-details {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;

    color: #fff;

    padding: 24px;
    border-radius: 18px;

    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(255,255,255,0.04);
}


.movie-cover {
    width: 300px;
    max-width: 100%;
    height: auto;

    border-radius: 14px;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.06);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-cover:hover {
    transform: scale(1.02);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.75);
}

.movie-text {
    flex: 1;
    max-width: 750px;

    font-size: 1.05rem;
    line-height: 1.7;
    color: #ddd;
}

.spacer2 {
    margin-top: 30px;
}

#my-video {
  width: 100%;
  max-height: 80vh;

  aspect-ratio: 16 / 9;
  height: auto;

  background: #000;
  object-fit: contain;

  border-radius: 14px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04);
}



h1
{
	margin:0px;
}

p
{
	margin:0px;
}

nav li
{
	display: inline-block;
}

html, body {
  background: transparent;
  color: #FFF;
  font-family: 'Fira Code', monospace;
  margin: 0;
  padding: 0;
   padding-left: 140px;
}


a:link
{
	color:#FFF;
	text-decoration:none;
}

a:visited
{
	color:#FFF;
	text-decoration:none;
}

a:active
{
	color:#FFF;
	text-decoration:none;
}

a:hover
{
	color:#FFF;
	text-decoration:underline;
}

.actor-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}


@media (max-width: 768px) {
  .movie-details {
    gap: 20px;
    padding: 16px;
  }

  .movie-cover {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .movie-text {
    max-width: 100%;
    text-align: center;
  }
}
