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

body {
   font:16px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #111;
    color: #fff;
}

/* Container */
.container {
        width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 5px;
}

.title {
    margin-top:10px;
    font-size: 20px;
    margin-bottom: 20px;
}
  .vietsub{
    position: absolute;
    top:0; right:0;
    background: #c90000;
    color:#fff;
    padding: 3px;
  }

/* Video Grid */
.video-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: 15px;
    margin-bottom: 20px;
}
  .info a{
    color:#fff;
    text-decoration:none;
  }
  .logo a{
   margin-top:10px;
    display:block;
  }
/* Video Item */
/* Style menu icons */
.menu-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 3px;
    margin-top: -5px; /* Moves the icon down */
    display: inline-block; /* Ensures proper spacing */
    vertical-align: middle; /* Keeps text alignment proper */
}
 
.video-item {
    background-color: #151515;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 8px 16px rgba(255, 255, 255, 0.2);
}

/* Responsive Image */
.thumb {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Title */
.info {
    padding: 10px;
    text-align: center;
}

.video-title {
    font-size: 16px;
    font-weight: normal;
}

/* Responsive Grid */
@media screen and (max-width: 1024px) {
    .video-list {
        grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    }
}

@media screen and (max-width: 768px) {
    .video-list {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    }
  
  /* Responsive Image */
  .thumb {

      padding-top: 66.25%; /* 16:9 Aspect Ratio */

    }
}























/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #050505;
    padding: 0px 0px;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0px;
    transition: 0.3s;
  line-height:26px
}

.menu li a:hover,  .current-menu-item a {
    background-color: #444;
    border-radius: 5px;
}

/* Search Box */
.search-box {
    position: relative;
    width: 250px;
    background:#333;
}


.search-box input {
    border: none;
    outline: none;
    background: transparent;
    color: white;
    padding: 8px;
    font-size: 14px;
 
}

.search-box input::placeholder {
    color: #ccc;
}

/* Search Icon (CSS Only) */
.search-icon {
    position: absolute;
    right: 15px;
top:10px;
  padding:0px 5px;
 color:#fff;
  background:none;
  border:none;
    display: inline-block;
}

/* Search Icon Handle (CSS Trick) */

.search-icon{
    cursor: pointer;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: left;
        padding: 0px 0px;
    }

    .menu li {
        margin: 5px;
    }

    .search-box {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
      margin-bottom:10px;
    }

    .search-box input {
        width: 100%;
      max-width:90%;
      
    }
  .menu li a {
    padding: 8px 15px;
  }
}

  .paginations{
    width:100%;
    text-align:center;
    margin: 20px 0px;
  }
  
  .pagis a, .pagis span{
    display:inline-block;
    padding: 8px 10px;
    margin: 5px;
    color:#fff;
    text-decoration:none;
  }
  .pagis .current{
    background: #c90000;
    color:#fff;
  }

  .adx-header, .adx-underplayer, .adx-footer, .adx-sidebar{
    text-align:center;
  }
  .adx-header, .adx-underplayer{
    height:100px;
  
    overflow:hidden;
  }
  
  .adx-footer, .adx-sidebar{
    height:250px;
   
     overflow:hidden;
  }

/********* footer menu ****/
/* Footer Menu */
.bottom-menu {
    display: flex;
    justify-content: space-between;
    background-color: #222;
    padding: 20px;
    text-align: left;
    
}

.menu-column {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.menu-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #c90000;
}

.menu-column ul {
    list-style: none;
}

.menu-column ul li {
    margin-bottom: 10px;
}

.menu-column ul li a {
    text-decoration: none;
    color: #eee;
    transition: 0.3s;
}

.menu-column ul li a:hover {
    color: white;
  background:#333;
}
  .content-box a{
    color: #c90000;
  }
/* Responsive Design */
@media screen and (max-width: 768px) {
    .bottom-menu {
        flex-direction: column;
        text-align: center;
    }

    .menu-column {
        padding: 0px 10px;
    }
}
  
  .sv{cursor:pointer;padding: 5px 8px; margin: 10px 0px;display:inline-block;}
  .default{background: #c90000;color:#fff}
   .player{
                  position: relative;
                max-width: 720px; 
                margin: 0 auto;
                padding-bottom: 46.25%; 
                overflow: hidden;
                   
                }
                .player  iframe {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border: none;
                }
                
                
@media screen and (max-width: 768px) {
    .player{
    
                max-width: 100%;  
 padding-bottom: 56.25%; 
                   
                }
}
  
  
  
  
  .relate{
    padding: 15px 0px;
  }
  .single img{
    max-width:100%;
    height:auto;
    margin: 10px 0px;
  }
  .single p{
    line-height:26px;
  }
  
  /**** cateogry tags **/
  .post-categories a, .post-tags a {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 3px;

   
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Category links - Blue theme */
.post-categories a {
    background-color: #626262; /* WordPress blue */
    color: #ffffff;
}

.post-categories a:hover {
    background-color: #005177;
}

/* Tag links - Green theme */
.post-tags a {
    background-color: #34a853; /* Google green */
    color: #ffffff;
}

.post-tags a:hover {
    background-color: #218739;
}
  
  
  
  
  /* Content box initially collapsed */
.content-box {
    width: 100%;
 
    margin: auto;
   
 
    overflow: hidden;
    max-height: 120px; /* Initially limit the height */
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

/* Expanded class (applied via jQuery) */
.content-box.expanded {
    max-height: 100%; /* Expand smoothly */
}

/* Button styling */
.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #222;
    color: white;
    border: none;
 font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}

.read-more-btn:hover {
    background-color: #005177;
}
