@media only screen and (max-width: 1025px) {
    .hidemobile {
        display: none !important;
    }
}

@media only screen and (min-width: 1026px) {
    .hidedesktop {
        display: none !important;
    }
}

.off a {
    background: #01AEF0;
    padding: 0px 7px;
    color: #FFF;
}

.btn-xs, .btn-group-xs > .btn {
    font-size: 14px;
}

.float-ck {
    position: fixed;
    bottom: 0;
    z-index: 2099;
}

.float-top {
    position: fixed;
    top: 0;
    z-index: 2099;
}

.catfishs-ck {
    position: fixed;
    bottom: 0;
    z-index: 2099;
}

@media only screen and (max-width: 1025px) {
    .hidemobile {
        display: none !important;
    }

    #catfishs_content img {
        width: 80%;
        height: 100%;
    }
}

@media only screen and (min-width: 1026px) {
    .hidedesktop {
        display: none !important;
    }
}

.off a {
    background: #01AEF0;
    padding: 5px 10px;
    color: #FFF;
}

.top-block.right-box {
    width: 100%;
    margin-top: 10px
}

.right-box-header {
    color: orange;
    font-size: 15px;
    margin-bottom: 10px;
    display: inline-block;
    margin-top: 15px;
}

.box_odds {
    background: #000;
    position: relative;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px
}

.box_odds .text-1 {
    font-size: 12px
}

.box_odds .text-2 {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    color: #f9bc27
}

.box_odds .img img {
    width: 90px;
    padding: 5px;
    border-radius: 4px;
    background-color: #495262;
    display: flex
}

.odds-info {
    width: calc(100% - 115px);
    justify-content: space-between;
    align-self: center;
    color: #fff;
    padding: 5px 5px 5px 0;
    text-align: center
}

.odds-info a {
    line-height: 16px;
    display: inline-block;
    width: 40%;
    padding: 4px 0;
    border-radius: 4px;
    font-size: 13px;
    color: #1b273c;
    font-weight: 700;
    background-color: #f9bc27;
    border: 1px solid transparent;
    text-align: center;
    height: 25px;
    box-sizing: border-box
}

.odds-info a + a {
    margin-left: 5px
}

@media (max-width: 767px) {
    .top-block {
        margin-top: 10px;
        padding: 0 10px;
    }

    .right-box-header {
        margin-bottom: 0;
        font-size: 14px
    }
}

.swiper-button-prev-custom {
    position: absolute;
    top: 65%;
    left: 8px;
    z-index: 10;
    margin-top: -50px;
    color: #ff9601;
    border-radius: 50%;
    text-align: center;
    line-height: 27px;
    font-size: 80px;
    opacity: .6;
}
.swiper-button-prev-custom:hover {
    opacity: 1;
}
.swiper-button-next-custom {
    position: absolute;
    top: 65%;
    right: 0;
    z-index: 10;
    margin-top: -50px;
    color: #ff9601;
    border-radius: 50%;
    text-align: center;
    line-height: 27px;
    font-size: 80px;
    opacity: .6;
}
.swiper-button-next-custom:hover {
    opacity: 1;
}

.flex-global {
    display: flex !important;
    align-items: center;
    gap: 5px;
}
.outline-none {
    outline: none !important;
}

.movie-carousel {
    position: relative;
    margin-bottom: 20px;
}

.movie-carousel .heading {
    margin-bottom: 10px;
}

.movie-carousel .heading .caption {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.related-movies-carousel {
    position: relative;
    margin-top: 20px;
}

.related-movies-carousel .heading .caption {
    color: #ff9601; /* Specific color for related movies */
}
 

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    text-align: center;
    transition: transform 0.3s;
}

.swiper-slide:hover {
    transform: translateY(-5px);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

.item {
    position: relative;
    overflow: hidden;
    /*border-radius: 8px;*/
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* .item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
} */

.item:hover img {
    transform: scale(1.05);
}

.item p {
    /* margin: 8px 0; */
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.label {
    display: none;
}

.label-quality {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 10px;
    z-index: 1;
}

.icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.icon-play:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}

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

/* Auth Section Styles */
.auth-section {
  display: flex;
  align-items: center;
  padding: 13px;
  justify-content: right;

}

.auth-section button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

.auth-section button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.auth-btn-login {
  background: none;
  color: white;
}

.auth-btn-login:hover {
  color: #e5e7eb;
}

.auth-btn-register {
  background-color: #ff8a00;
  color: white;
}

.auth-btn-register:hover {
  background-color: #ff8a00;
}

.auth-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Auth Loading */
.auth-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-loading-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #d1d5db;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.auth-loading-text {
  width: 64px;
  height: 16px;
  background-color: #d1d5db;
  border-radius: 4px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Mobile Auth Section */
.auth-section-mobile {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.auth-section-mobile button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 12px;
  padding: 4px 8px;
}

.auth-section-mobile button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Responsive Auth Section */
@media only screen and (max-width: 768px) {
  .auth-section {
    margin-left: 10px;
  }
  
  .auth-section .hidden {
    display: none;
  }
  
  .auth-section-mobile .hidden {
    display: none;
  }
  
  .auth-buttons {
    gap: 5px;
  }
  
  .auth-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #333;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #ff8a00;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid #333;
  text-align: center;
}

/* Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
}

.required {
  color: #ff8a00;
}

.form-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
  background-color: #2a2a2a;
  color: #ffffff;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus {
  outline: none;
  border-color: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.1);
}

.form-input.error {
  border-color: #ff4444;
}

.form-error {
  font-size: 12px;
  color: #ff4444;
  margin: 0;
}

.form-hint {
  font-size: 12px;
  color: #999;
  margin: 4px 0 0 0;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #ff8a00;
}

.checkbox-label {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

.link {
  color: #ff8a00;
  text-decoration: none;
}

.link:hover {
  color: #ffa726;
  text-decoration: underline;
}

.error-message {
  padding: 12px;
  background-color: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  border-radius: 6px;
  color: #ff4444;
}

.error-message p {
  margin: 0;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background-color: #ff8a00;
  color: white;
}

.btn-primary:hover {
  background-color: #ffa726;
}

.btn-primary:disabled {
  background-color: #666;
  cursor: not-allowed;
}

.btn-full {
  width: 100%;
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loading-spinner i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.auth-switch {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.auth-switch-link {
  background: none;
  border: none;
  color: #ff8a00;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

.auth-switch-link:hover {
  color: #ffa726;
  text-decoration: underline;
}

.auth-switch-link:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* User Menu Styles */
.user-menu {
  position: relative;
}

.user-menu-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: none;
  background: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.user-menu-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ff8a00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  font-size: 14px;
  object-fit: cover;
}

.user-name {
  font-size: 14px;
  font-weight: 500;
}

.user-menu-button i {
  transition: transform 0.2s;
}

.user-menu-button i.rotate {
  transform: rotate(180deg);
}

.user-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: black;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  z-index: 1000;
}

.user-info {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-display-name {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.user-email {
  font-size: 12px;
  color: #ccc;
  margin: 0;
  line-height: 1.2;
  word-break: break-all;
}

.user-menu-items {
  padding: 8px 0;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}

.user-menu-item:hover {
  background-color: #ff9601;
}

.user-menu-item.danger {
  color: #dc2626;
}

.user-menu-item.danger:hover {
  background-color: #fef2f2;
}

.user-menu-item i {
  width: 16px;
  text-align: center;
}

.user-menu-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 8px 0;
}

/* Toast Styles */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
  max-width: 400px;
}

.toast-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.toast-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.toast-warning {
  background-color: #fffbeb;
  border: 1px solid #fed7aa;
  color: #d97706;
}

.toast-info {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #ff8a00;
}

.toast-icon {
  margin-right: 12px;
  font-size: 16px;
}

.toast-content {
  flex: 1;
}

.toast-message {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.toast-close {
  margin-left: 12px;
}

.toast-close-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.toast-close-btn:hover {
  opacity: 1;
}

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

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10px;
  }
  
  .user-name {
    display: none;
  }
  
  .toast-container {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .toast {
    max-width: none;
  }
}




/* rating */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-new-comment {
  animation: slideIn 0.5s ease-out;
}

.d-item {
  transition: all 0.3s ease-out;
}

/* Comment Section Styles */
.child-discuss {
  background: #1a1a1a;
  border-radius: 8px;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid #333;
}

.child-header {
  background: #ff9601;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.child-header .inc-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.child-header span {
  font-weight: 600;
  font-size: 16px;
}

/* Tab Switcher */
.tab-switcher {
  margin-left: auto;
  display: flex;
  background: rgba(26, 26, 26, 0.2);
  border-radius: 6px;
  padding: 2px;
}

.tab-button {
  background: transparent;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tab-button.active {
  background: white;
  color: #ff9601;
}

.tab-button:hover:not(.active) {
  background: rgba(26, 26, 26, 0.1);
}

/* Content Area */
.child-content {
  padding: 20px;
  background: #1a1a1a;
  color: #fff;
}

.discuss-wrap {
  max-width: 100%;
}

/* User Area */
.my-area {
  margin-bottom: 20px;
}

.ma-via {
  text-align: center;
  padding: 12px;
  background: #2a2a2a;
  border-radius: 6px;
  color: #ccc;
  border: 1px solid #333;
}

.ma-via button {
  background: none;
  border: none;
  color: #ff9601;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.ma-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #2a2a2a;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid #333;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ff9601;
}

.ma-user .info {
  display: flex;
  flex-direction: column;
}

.ma-user .info small {
  color: #ccc;
  font-size: 12px;
}

.ma-user .info span {
  font-weight: 600;
  color: #fff;
}

/* Comment Form */
.comment-form {
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px;
  transition: border-color 0.2s ease;
}

.comment-form:focus-within {
  border-color: #ff9601;
}

.comment-form textarea {
  width: 100%;
  min-height: 80px;
  border: none;
  outline: none;
  resize: vertical;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  background: transparent !important;
  border: 1px solid #333 !important;
}

.comment-form textarea::placeholder {
  color: #888;
}

.comment-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #333;
}

.spoiler-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ccc;
}

.spoiler-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ff9601;
}

.submit-btn {
  background: #ff9601;
  color: #1a1a1a;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover:not(:disabled) {
  background: #e67e00;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Comment List */
.comment-list {
  margin-top: 20px;
}

.comment-item {
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}

.comment-item:hover {
  border-color: #ff9601;
}

.comment-item.reply-item {
  margin-left: 10px;
  background: #222;
  padding-left: 10px;
  border-left: 3px solid #ff9601;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.user-info {
  display: flex;
  align-items: start;
}
.user-info-comment {
  align-items: center;
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-name-comment {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}

.admin-badge {
  background: #ff9601;
  color: #1a1a1a;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.comment-time {
  color: #ccc;
  font-size: 12px;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 150, 1, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 150, 1, 0.2);
}

.rating-emoji {
  font-size: 14px;
}

.rating-text {
  font-size: 11px;
  font-weight: 600;
  color: #ff9601;
}

.comment-content {
  margin-bottom: 12px;
}

.spoiler-warning {
  background: rgba(255, 150, 1, 0.1);
  border: 1px solid rgba(255, 150, 1, 0.2);
  color: #ff9601;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comment-content p {
  margin: 0;
  line-height: 1.5;
  color: #fff;
}

.comment-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vote-buttons {
  display: flex;
  gap: 6px;
}

.vote-btn {
  background: #333;
  border: 1px solid #444;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ccc;
}

.vote-btn:hover {
  background: #444;
  border-color: #ff9601;
}

.vote-btn.active {
  background: #ff9601;
  color: #1a1a1a;
  border-color: #ff9601;
}

.action-buttons {
  display: flex;
  gap: 6px;
}

.action-btn {
  background: none;
  border: none;
  color: #ff9601;
  font-size: 12px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

.action-btn:hover {
  background: rgba(255, 150, 1, 0.1);
}

/* Reply Form */
.reply-form {
  margin-top: 12px;
  padding: 12px;
  background: #222;
  border-radius: 6px;
  border-left: 3px solid #ff9601;
}

.reply-form textarea {
  width: 100%;
  min-height: 60px;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease;
  background: #2a2a2a;
  color: #fff;
}

.reply-form textarea:focus {
  border-color: #ff9601;
}

.reply-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
}

.btn-primary {
  background: #ff9601;
  color: #1a1a1a;
}

.btn-primary:hover:not(:disabled) {
  background: #e67e00;
}

.btn-sm {
  padding: 4px 8px;
  font-size: 12px;
}

/* Replies Container */
.replies-container {
  margin-top: 12px;
  padding-left: 16px;
  border-left: 2px solid #333;
}

/* No Comments */
.no-comments {
  text-align: center;
  padding: 30px 20px;
  color: #ccc;
}

.no-comments p {
  font-size: 16px;
  margin: 0;
}

/* Load More Button */
.more {
  text-align: center;
  padding: 16px 0;
}

.more button {
  background: none;
  border: none;
  color: #ff9601;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.more button:hover:not(:disabled) {
  background: rgba(255, 150, 1, 0.1);
}

.more button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Alert Styles */
.alert {
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid transparent;
}

.alert-danger {
  background: rgba(255, 150, 1, 0.1);
  border-color: rgba(255, 150, 1, 0.2);
  color: #ff9601;
}

/* Loading Spinner */
.spinner-border.text-primary {
  border-color: #ff9601;
  border-top-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .child-header {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }

  .tab-switcher {
    margin-left: 0;
    width: 100%;
  }

  .child-content {
    padding: 16px;
  }

  .comment-item {
    padding: 16px;
  }

  .comment-item.reply-item {
    margin-left: 20px;
  }

  .comment-actions {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .vote-buttons {
    order: 2;
  }

  .action-buttons {
    order: 1;
  }

  .replies-container {
    padding-left: 10px;
  }
}

/* Rating Modal Styles - High Specificity to override Bootstrap */

.v-modal.modal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1050 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  width: max-content;
  height: max-content;

}

.v-modal.modal.fade {
  transition: opacity 0.15s linear !important;
}

.v-modal.modal.fade.show {
  opacity: 1 !important;
}

.v-modal .modal-md {
  max-width: 500px !important;
  width: 100% !important;
  margin: 0 !important;
}

.v-modal .modal-dialog {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  pointer-events: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100% !important;
  transform: none !important;
}

.v-modal .modal-dialog-centered {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100% !important;
}

.v-modal .modal-content {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  pointer-events: auto !important;
  background-color: #1a1a1a !important;
  border: 1px solid #333 !important;
  border-radius: 12px !important;
  outline: 0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  transform: none !important;
}

.v-modal .modal-close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  background: none !important;
  border: none !important;
  color: #999 !important;
  font-size: 18px !important;
  cursor: pointer !important;
  padding: 8px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.v-modal .modal-close:hover {
  color: #ff9601 !important;
  background: rgba(255, 150, 1, 0.1) !important;
}

.v-modal .is-header {
  padding: 20px 20px 0 20px !important;
  border-bottom: 1px solid #333 !important;
}

.v-modal .heading-sm {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin: 0 !important;
}

.v-modal .is-body {
  padding: 20px !important;
  flex: 1 !important;
}

.v-modal .is-footer {
  padding: 20px !important;
  border-top: 1px solid #333 !important;
  display: flex !important;
  gap: 12px !important;
  justify-content: center !important;
}

.v-modal .line-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}

.v-modal .ro-icon {
  width: 24px !important;
  height: 24px !important;
  background: #ff9601 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.v-modal .line-center strong {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #ff9601 !important;
}

.v-modal .line-center span {
  color: #ccc !important;
  font-size: 14px !important;
}

/* Rating Emoji Section */
.v-modal .rate-emo {
  display: flex !important;
  justify-content: space-between !important;
  gap: 8px !important;
  margin-bottom: 24px !important;
}

.v-modal .item-v {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 16px 8px !important;
  border: 2px solid #333 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: #2a2a2a !important;
}

.v-modal .item-v:hover {
  border-color: #ff9601 !important;
  background: rgba(255, 150, 1, 0.1) !important;
  transform: translateY(-2px) !important;
}

.v-modal .item-v.active {
  border-color: #ff9601 !important;
  background: rgba(255, 150, 1, 0.2) !important;
  box-shadow: 0 4px 12px rgba(255, 150, 1, 0.3) !important;
}

.v-modal .inc-icon {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.v-modal .inc-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.v-modal .item-v span {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-align: center !important;
  text-wrap: nowrap !important;
}

/* Rating Comment Section */
.v-modal .rate-comment {
  margin-bottom: 20px !important;
}

.v-modal .rate-comment textarea {
  width: 100% !important;
  min-height: 100px !important;
  padding: 12px !important;
  border: 2px solid #333 !important;
  border-radius: 8px !important;
  background: #2a2a2a !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  resize: vertical !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
  box-sizing: border-box !important;
}

.v-modal .rate-comment textarea::placeholder {
  color: #888 !important;
}

.v-modal .rate-comment textarea:focus {
  border-color: #ff9601 !important;
  box-shadow: 0 0 0 3px rgba(255, 150, 1, 0.1) !important;
}

/* Button Styles */
.v-modal .btn {
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.v-modal .btn-primary {
  background: linear-gradient(135deg, #ff9601 0%, #e67e00 100%) !important;
  color: #1a1a1a !important;
}

.v-modal .btn-primary:hover:not(:disabled) {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 150, 1, 0.3) !important;
}

.v-modal .btn-primary:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.v-modal .btn-light {
  background: #333 !important;
  color: #fff !important;
  border: 1px solid #444 !important;
}

.v-modal .btn-light:hover {
  background: #444 !important;
  border-color: #ff9601 !important;
}

/* Responsive Rating Modal */
@media (max-width: 768px) {
  .v-modal.modal {
    padding: 10px !important;
  }
  
  .v-modal .modal-md {
    width: 100% !important;
    margin: 0 !important;
  }

  .v-modal .is-header,
  .v-modal .is-body,
  .v-modal .is-footer {
    padding: 16px !important;
  }

  .v-modal .rate-emo {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .v-modal .item-v {
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 12px !important;
  }

  .v-modal .inc-icon {
    width: 32px !important;
    height: 32px !important;
  }

  .v-modal .item-v span {
    font-size: 14px !important;
  }

  .v-modal .is-footer {
    flex-direction: column !important;
  }

  .v-modal .btn {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .v-modal .line-center {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .v-modal .line-center strong {
    font-size: 20px !important;
  }
}