body {
    font-family: 'Segoe UI', sans-serif;
    background: #121212;
}

.navbar-brand {
    font-size: 1.5rem;
    animation: fadeText 3s infinite alternate;
}

@keyframes fadeText {
    from { opacity: 0.5; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.movie-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.movie-card:hover img {
    transform: scale(1.05);
}

.slider-img {
    height: 400px;
    object-fit: cover;
}

h3 {
    color: #ffc107;
}
.visitor-box {
    width: 220px;
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
.visitor-box h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}
.visitor-box p {
    margin: 0;
    font-size: 16px;
}
.popup{
            top:50%;
            left:50%;
            transform:translate(-50%,-50%);
            padding:2px;
            /*background:#fff;*/
            border-radius:5px;
            width:30%;
            position:relative;
            /*transition:5s ease-in-out*/
        }
        .popup h2{
            margin-top:0;
            color:#333;
            font-family:Tahoma,Arial,sans-serif
        }
        .popup .close{
            position:absolute;
            /*top:20px;*/
            right:5px;
            transition:.2s;
            font-size:30px;
            font-weight:700;
            text-decoration:none;
            color:#fff;
        }
            
        .popup .close:hover{
            color:#06d85f
        }
        .popup .content{
            max-height:30%;
            overflow:auto;
            margin-top:30px
        }
        @media screen and (max-width:700px){.popup{width:85%}
}
.popup-overlay-wp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .popup-banner-wp {
    width: 300px;
    height: 250px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    position: relative;
  }

  .popup-banner-wp a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

  .popup-banner-wp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .popup-close-wp {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    padding: 2px 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
  }