@font-face {
    font-family: font-1;
    src: url(../fonts/font-1.ttf);
}

*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body{
background-color: #1A1C22;
font-family: 'font-1';
color: #fff;
}

li{
list-style: none;
}

li a{
text-decoration: none;
color: #fff;
}

.naxvebi{
    display: inline-block;
    border: 1px solid #dadada;
     padding: 4px 10px;
    
  font-size: 15px;
    border-radius: 5px;
     margin-left: 10px;
}


.frate {height:40px; line-height:24px; width:200px; position:relative; opacity:0; 
display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;
-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
.frate.done {opacity:1;}
.rate-data {display:none;}
.rate-plus, .rate-minus {cursor:pointer;}
.frate .fa {color:#3c0; display:inline-block; vertical-align:top; font-size: 24px; margin-right:10px;}
.rate-minus .fa {color:#f20404; position: relative;}
.frate div:hover .fa {animation: bounceRate  0.3s infinite linear; animation-direction: alternate;}
.rbar {height:6px; overflow:hidden; background-color:#f20404; border-radius:3px; position:absolute; left:0; bottom:0; width:100%;}
.rfill {width:50%; height:100%; position:absolute; left:0; top:0; background-color:#fff; transition:width 1s linear;}
.rate-perc {font-size: 18px; font-weight: 700;}
.rate-perc.high {color:#3c0;}
.rate-perc.low {color:#f20404;}

@keyframes bounceRate {
  from {transform: translate(0,0%);}
  to {transform: translate(0,-50%);}
}



.telegrambtn{
display: none;
  }
.mobtrilerbtn{
display: none;
  }


.pages {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

  .pages a{
text-decoration: none;
color: #fff;
background-color: #2575FC;
padding: 5px 10px;
    border-radius: 5px;
  }

  .pages span{
display: flex;
align-items: center;
background-color: #f44336;
padding: 5px 10px;
border-radius: 5px;
  }

.message-box {
    background: #1A1C22;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

.message-menu {
    display: flex;
    justify-content: space-between;
    background: #333;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.message-menu span {
    color: #fff;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.message-menu span a{
    text-decoration: none;
}


.message-menu span:hover {
    background: rgba(255, 255, 255, 0.2);
}

.message-status {
    margin-top: 15px;
    text-align: center;
    color: #fff;
}

.progress-bar {
    height: 8px;
    background: #555;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: "";
    display: block;
    width: var(--progress, 50%);
    height: 100%;
    background: #00c853;
    transition: width 0.3s ease-in-out;
}

.limit-info {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.8;
}









.user-box {
    background: #1A1C22;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.user-tabs {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.user-tabs li {
    padding: 8px 16px;
    background: #333;
    border-radius: 6px 6px 0 0;
}

.user-tabs li.active {
    background: #444;
    font-weight: bold;
}

.user-avatar {
    text-align: center;
    margin-top: 15px;
}

.avatar-cover {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0px 2px 8px rgba(255, 255, 255, 0.1);
}


@keyframes slideInFromRight {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}




.slide-in-right {
  animation: slideInFromRight 1.8s forwards;
}




@keyframes slideInFromLeft {
  from {
      transform: translateX(-100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.slide-in-left {
  animation: slideInFromLeft 1.8s forwards;
}



@keyframes slideInFromTop {
  from {
      transform: translateY(-100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.slide-in-top {
  animation: slideInFromTop 1.1s forwards;
}



/* Dropdown სტილი */
.dropdown {
    position: relative;
    display: inline-block;
    width: 200px;
}

.dropbtn {
    background-color: #3498db;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content div {
    padding: 10px;
    cursor: pointer;
}

.dropdown-content div:hover {
    background-color: #f1f1f1;
}

/* Dropdown-ის ჩვენება */
.dropdown:hover .dropdown-content {
    display: block;
}









.search-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.error {
    color: red;
    font-weight: bold;
}





.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #fff;
    background-color: #f5f5f5;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.searchheading {
    font-size: 14px;
    font-weight: bold;
    color: #222;
}


.no-results {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #d50808;
    border-radius: 8px;
}

.no-results p {
    font-size: 16px;
    color: #fff;
}

.no-results img {
    margin-top: 15px;
    border-radius: 50%;
}





.sidebar {
    width: 90px;
    height: 100vh;
    float: left;
    background: #242731;
    left: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* New mobile sidebar */
.horizontal-menu {
    display: none;
}

.navbar-nav{
overflow: hidden;
overflow-y: auto;
margin-top: -70px;
}


.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 11px;
    transition: 0.3s all ease-in;
    position: relative;
    text-decoration: none;
    padding-top: 1rem;
    width: 90px;
    height: 78px;
padding: 11px;
cursor: pointer;
overflow: hidden;
}

.actives{
background-color: #1A1C22;
border-left: 3px solid #2575FC;
}

.nav-item a{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #adb5bd;
font-size: 11px;
transition: 0.3s all ease-in;
position: relative;
text-decoration: none;
padding-top: 0.5rem;
}

.nav-item:hover {
border-left: 3px solid #2575FC;
color: #fff;
transition: 0.0s all ease-in;
}
.nav-item:hover a{
    color: #fff;
}


.content {
    width: calc(100% - 90px);
    float: left;
    margin-left: 90px;
    padding: 0px 25px;
}


.header-top {
    width: 100%;
    height: 100px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top .logo{
width: 210px;
height: 30px;
}

.header-top .logo img{
width: 100%;
}

.mobsearch{
display: none;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #242731;
    border-radius: 5px;
    padding: 5px;
  
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #C0C0C0;
    padding: 8px;
    width: 400px;
    background: #242731;
    border-radius: 35px;
    position: relative;
    padding: 10px;
    font-family: 'font-1';
}

.search-button {
    background-color: #2575FC;
    border: none;
    padding: 8px 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'font-1';
    height: 40px;
    overflow: hidden;
}

.search-button img{
width: 100%;
height: 100%;
}


.auth-section {
    display: flex;
    align-items: center;
    color: #C0C0C0;
    font-weight: bold;
    cursor: pointer;
}

.auth-section:hover .user-icon{
 border: 4px solid #2575FC;
}



.auth-text {
    margin-right: 10px;
}

.auth-text:hover{
color: #2575FC;
}

.user-icon {
display: flex;
align-content: center;
justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #242731;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3e414c9e;
}

.user-icon img{
width: 100%;
height: 100%;
padding: 2px;
border-radius: 50%;
object-fit: cover;
}



.slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 550px;
}

.main-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.main-slide::before{
position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/cre.png) rgb(31 33 40 / 31%);

}





.main-slide.active {
    opacity: 1;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.05));

}

.slide-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;

}

.movieinfo {
    padding: 20px;
}

.moviecategoria {
    margin-top: 10px;
}

.rating {
    display: inline-block;
   border: 1px solid #dadada;
    padding: 5px 10px;
    border-radius: 1px;
    margin-top: 10px;
    width: auto;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 სვეტი */
    gap: 10px;
    position: absolute;
    top: 25px;
    right:50px;
 
}
.thumb {
    cursor: pointer;
    width: 270px;
    height: 150px;
    margin: 5px;
    border: 2px solid transparent;
    border-radius: 15px;
    overflow: hidden;
}

.thumb.active {
    border: 3px solid #2575FC;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover {
    transform: scale(1.07);
    transition: all 0.7ms;
}


.slider-serial {
margin-top: 50px;
background-color: ;
background-image: linear-gradient(rgba(12, 12, 12, 0), rgba(26, 28, 34, 0.9)),
                  url("../images/serialbg.jpg");
background-size: cover;
background-size: cover;
background-position: center;
padding: 50px 10px;
background-attachment: fixed;
}

.slider-serial::before{
position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/cre.png) rgb(31 33 40 / 31%);

}




.slider-movie{
margin-top: 50px;
}


/* filmis cardi  karuselis dasawyisi by abrama */
.news-card2{
display: block;
width: 269px;
height: auto;
position: relative;
overflow: hidden;
    margin: 0px 10px 0px 0px;
cursor: pointer;
font-family: 'font-1';
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsimgbg2{
width: 100%;
height: 330px;
position: relative;
overflow: hidden;
}

/* შავი ფონის ეფექტი ჰოვერზე */
.newsimgbg2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/cre.png) rgb(31 33 40 / 31%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Play აიქონი */
.play-icon2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #2575FC;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}




/* ჰოვერის ეფექტი */
.newsimgbg2:hover::before {
    opacity: 1;
}

.newsimgbg2:hover .play-icon {
    opacity: 1;
}



.newsimgbg2 img{
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease-in-out;
border: none;
}

.languages2{
position: absolute;
top: 10px;
right: 5px;
}

.languages2 span{
border: 1px solid silver;
padding: 3px 5px;
font-size: 13px;
font-weight: bold;
background-color: #1a1c2253;
}

.languages2 span a{
text-decoration: none;
color: #fff;
}

.moviefoter2{
display: flex;
align-items: center;
justify-content: space-between;
position: absolute;
bottom: 0px;
width: 100%;
padding: 0px 10px 10px 10px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgb(0 0 0 / 0%) 67.71%) !important;
}

.imdb2{
display: flex;
align-items: center;
border: 1px solid silver;
padding: 3px 5px;
font-size: 13px;
}

.weli2{
display: flex;
align-items: center;
border: 1px solid silver;
padding: 3px 5px;   
font-size: 13px; 
}

.cardtitle2{
display: flex;
align-items: center;
margin-top: 7px;
text-decoration: none;
color: #fff;
}

/* filmis cardi  karuselis dasasruli by abrama */

/* filmis cardi by abrama */

.news-card {
    display: inline-block;
    width: calc(32.33% - 1px);
    max-width: 23%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 10px 10px 10px 10px;
    cursor: pointer;
}

.newsimgbg{
width: 100%;
height: 200px;
position: relative;
}


/* შავი ფონის ეფექტი ჰოვერზე */
.newsimgbg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* გამუქებული ფონი */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Play აიქონი */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* ჰოვერის ეფექტი */
.newsimgbg:hover::before {
    opacity: 1;
}

.newsimgbg:hover .play-icon {
    opacity: 1;
}



.newsimgbg img{
width: 100%;
height: 100%;
object-fit: cover;
}

.languages{
position: absolute;
top: 10px;
right: 5px;
}

.languages span{
border: 1px solid silver;
padding: 3px 5px;
font-size: 13px;
font-weight: bold;
background-color: #1a1c2253;
}

.languages span a{
text-decoration: none;
color: #fff;
}


.moviefoter{
display: flex;
align-items: center;
justify-content: space-between;
position: absolute;
bottom: 0px;
width: 100%;
padding: 0px 10px 10px 10px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgb(0 0 0 / 71%) 67.71%) !important;
}

.imdb{
display: flex;
align-items: center;
border: 1px solid silver;
padding: 3px 5px;
font-size: 13px;
}

.weli{
display: flex;
align-items: center;
border: 1px solid silver;
padding: 3px 5px;   
font-size: 13px; 
}

.cardtitle{
display: flex;
align-items: center;
margin-top: 7px;
text-decoration: none;
color: #fff;
padding: 0px 0px 0px 15px;
}



.slider {
    width: 100%;
    margin: auto;
}


.slidertitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 50px;
    padding: 10px;
    background: #1A1C22;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    position: relative;
}

.slidericon{
display: flex;
align-items: center;
position: absolute;
left: 0px;
}

.slidericon span{
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
float: left;
background: #2575FC;
border-radius: 5px;
margin-right: 15px;
}


/* ისრების კონტეინერი */
.custom-arrows {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 10px;
}

.movie-prev, .movie-next {
    background: #242731;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 3px;
}

.movie-prev:hover, .movie-next:hover {
    background: #2575FC;
}

/* ისრების კონტეინერი */
.custom-arrows {
    display: flex;
    gap: 10px;
}

.serial-prev, .serial-next {
    background: #242731;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 3px;
}

.serial-prev:hover, .serial-next:hover {
    background: #2575FC;
}




/* მთლიანი scrollbar-ის დიზაინი */
::-webkit-scrollbar {
    width: 5px; /* სქროლის სიგანე */
}

/* სქროლის "ბარი" (მოძრავი ნაწილი) */
::-webkit-scrollbar-thumb {
    background: #2575FC; /* სქროლის ფერი */
    border-radius: 5px; /* მომრგვალება */
}



/* სქროლის "ტრეკი" (ფონი) */
::-webkit-scrollbar-track {
    background: #2e333a; /* ფონი */
}


.footer{
    padding: 30px 0;
    position: relative;
    margin-top: 50px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #242731;
}

.vabcopy{
display: flex;
align-items: center;
padding: 0px 10px;
}

.vabcopy a{
text-decoration: none;
color: #2575FC;
padding: 0px 5px;
}









/* კონტეინერი */
.movie-container {
    position: relative;
    width: 100%;
    height: auto;
    background: url('[xfvalue_image_url_images]') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    background-attachment: fixed;
    left: 0;
    top: 0;
}

/* დაბურული ფონი */
.movie-overlay {
    background-image: 
    linear-gradient(90deg, rgba(3, 9, 15, 0.4) 0%, rgba(3, 9, 15, 0.1) 30%, rgba(3, 9, 15, 0) 50%, rgba(3, 9, 15, 0.1) 70%, rgba(3, 9, 15, 0.4) 100%),
    linear-gradient(180deg, rgba(3, 9, 15, 0.2) 0%, rgba(31, 33, 40, 0.73) 78%, #1a1c22 100%);


    position: absolute;
    z-index: 100;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.movie-overlay::before{
position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/cre.png) rgb(31 33 40 / 10%);

}




/* კონტენტი (პოსტერი + ვიდეო) */
.movie-content {
display: flex;
width: 100%;
    padding: 40px;
    position: relative;
    z-index: 300;
    height: 580px;
    padding-top: 25px;
    margin-bottom: -25px;
}





/* მარცხენა პანელი (პოსტერი) */
.movie-poster {
    float: left;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
   margin-right: 30px;
}

.movie-poster img {
    width: 100%;
   height: 100%;
   object-fit: cover;
}

/* ღილაკი */
.watch-btn {
   
    background: #2575FC;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
   width: 100%;
   font-family: 'font-1';
}

.watch-btn:hover {
    background: #07337f;
}

/* მარჯვენა პანელი (ვიდეო) */
.movie-video {
    width: 70%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-preview {
    width: 100%;
    position: relative;
}

.video-preview img {
    width: 100%;
    border-radius: 8px;
}




/* ვიდეო ფლეიერი */
video {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
}

.fulltitle{
display: flex;
font-size: 25px;
margin-bottom: 40px;
margin-top: 20px;
}



.popup-background {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
     z-index: 200000;
        }
        .popup {
            background-color: #1A1C22;
            padding: 20px;
           max-width: 500px;
width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.5s ease-out, opacity 0.5s ease-out;
        }
        .popup h2 {
            margin-bottom: 15px;
            text-align: center;
        }
        .popup input {
            width: 100%;
            padding: 10px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .popup button {
            width: 100%;
            padding: 10px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        .popup button:hover {
            background: #0056b3;
        }
        .close-btn {
            text-align: right;
            cursor: pointer;
            font-size: 20px;
            display: block;
            text-align: right;
        }
        .show {
            display: flex;
        }
        .show .popup {
            transform: translateY(0);
            opacity: 1;
        }




 .user-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #1A1C22;
    border-radius: 10px;
    max-width: auto;
    margin: auto;
}

.user-info {
    text-align: center;
    margin-bottom: 10px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.user-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    list-style: none;
    padding: 0;
    text-align: center;
    width: 100%;
}

.user-links li {
    background: #1A1C22;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #3e414c9e;
}

.user-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: block;
}

.logbuts {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
}

.btn {
    padding: 8px 12px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

.logout {
    background: #dc3545;
}




 .login-container {
            background: #1A1C22;
            padding: 20px;
            width: auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
        }
        .login-container h2 {
            margin-bottom: 15px;
            color: #333;
        }
        .enterForm {
            list-style: none;
            padding: 0;
        }
        .enterForm li {
            margin-bottom: 15px;
            text-align: left;
        }
        .enterForm label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .enterForm input[type="text"],
        .enterForm input[type="password"] {
            width: 100%;
            padding: 10px;
            
            border-radius: 5px;
            font-size: 14px;
        }
        .logbuts {
            text-align: center;
            margin-top: 10px;
        }
        .logbuts input[type="submit"] {
            background: #007bff;
            color: white;
            font-family: 'font-1';
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s;
        }
        .logbuts input[type="submit"]:hover {
            background: #0056b3;
        }
        .logbuts a {
           border-radius: 5px;
            display: block;
            margin-top: 10px;
            color: #fff;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s;
        }
        .logbuts a:hover {
            color: #0056b3;
        }




.box.story {
    max-width: 1300px;
    width: 100%;
    margin: 100px auto;
    background: #242731;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.box_in {
    padding: 20px;
}

.title.h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.ui-form {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.imp {
    color: #fff;
}

.wide {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: all 0.3s ease;
}

.wide:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
}

.addvote {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

textarea.wide {
    resize: vertical;
}

.plus_icon {
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-weight: bold;
    cursor: pointer;
}

.c-captcha {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-captcha input {
    flex-grow: 1;
}

.form_submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn {
   
   
    background: #007bff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

.btn-border {
    background: none;
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-border:hover {
    background: #007bff;
    color: #fff;
}


.usinf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.usinf li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #3e414c9e;
}

.ui-c1 {
    font-weight: bold;
    color: #fff;
}

.ui-c2 {
    color: #2196F3;
    text-align: right;
}


.movie-info {
    background: #111319;
    color: #fff;
    padding: 20px;
    border-radius: 0px;
 font-family: font-1, sans-serif;
    width: 100%;
    margin: auto;
   
        margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.movie-info p{
margin-top: 10px;
}

.movie-rating {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.imdb-badge {
    background: #e6be12;
    color: #000;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 8px;
     font-size: 15px;
}

.ratingimdb {
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #dadada;
    padding: 4px 10px;
    border-radius: 5px;
}

.studio, .year, .director, .duration, .country {
    color: #f4c900;
}

.movie-info .movie-description {
display: block;
max-width: 700px;
width: 100%;
margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
      overflow: hidden;
}





.trailer-modal {
    display: none; /* თავიდან დამალულია */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

/* კონტენტი */
.trailer-content {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    width: 80%;
    max-width: 800px;
}

/* ვიდეოს ჩარჩო */
.trailer-content iframe {
    width: 100%;
    height: 450px;
    border-radius: 5px;
}

/* დახურვის ღილაკი */
.close-btn {
position: absolute;
    top: -14px;
    right: -14px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    width: 35px;
    height: 35px;
    justify-content: center;
}

/* ღილაკის დიზაინი */
.watch-btn {
    background: #2575FC;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0px;
}

.watch-btn:hover {
    background: #052f78;
}