﻿/*=============================================
  MAIN CSS - All styles inlined (no @import waterfall)
  Original sub-files still exist in their folders.
=============================================*/

/* -- Google Fonts (must precede all rules) -- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ---- Source: 1-base\reset.css ---- */
/*=============================================
  RESET - Browser Resets and Normalizations
=============================================*/

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

/* Basic Resets */
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.fix {
    overflow: hidden;
}

/* Link Styles */
a, .button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:focus, .button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover, .portfolio-cat a:hover, .footer-menu li a:hover {
    color: #e4d804;
    text-decoration: none;
}

/* Form Elements */
button:focus, input:focus, textarea, textarea:focus {
    outline: 0;
}

/* Slick Slider */
.slick-slide:focus {
    outline: none;
}

/* ---- Source: 1-base\colors.css ---- */
/*=============================================
  COLORS - Color Palette and Theme Colors
=============================================*/

/* Primary Colors */
:root {
    --primary-yellow: #5c16ff;
    --primary-yellow-bright: #8a58ff;
    --primary-dark: #12151e;
    --primary-bg: #000000;

    /* Text Colors */
    --text-light: #bcbcbc;
    --text-white: #ffffff;
    --text-muted: #888;

    /* Background Colors */
    --bg-dark: #171d22;
    --bg-card: #1a1a1a;
    --bg-hover: #2a2a2a;

    /* Border Colors */
    --border-color: #333;
    --border-light: rgba(255, 255, 255, 0.1);

    /* Link Colors */
    --link-color: #1696e7;
    --link-hover: #8a58ff;
}

/* Background Utilities */
.bg-dark {
    background: var(--bg-dark);
    color: #fff;
}

/* Scroll Top Button Colors */
.scroll-top {
    background: var(--primary-yellow);
}

/* Submenu bullet color moved to 2-layout/header.css */

/* ---- Source: 1-base\typography.css ---- */
/*=============================================
  TYPOGRAPHY - Single source of truth for fonts
  Oswald = default · Poppins / Momo = opt-in
=============================================*/

/* Fonts */
/* Momo Trust Display is loaded via @font-face in index.html */

/* ── Default: Oswald everywhere ── */
body {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: #bcbcbc;
    background-color: #0a0a1a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-weight: 700;
    margin: 0 0 15px;
}

/* ── Opt-in: Poppins ── */
.font-poppins,
.font-poppins h1, .font-poppins h2, .font-poppins h3,
.font-poppins h4, .font-poppins h5, .font-poppins h6,
.font-poppins p, .font-poppins span, .font-poppins a,
.font-poppins li, .font-poppins button, .font-poppins input,
.font-poppins textarea, .font-poppins select, .font-poppins label {
    font-family: 'Poppins', sans-serif;
}

/* ── Opt-in: Momo Trust Display ── */
.momo-font {
    font-family: 'Momo Trust Display', sans-serif;
}

/* ── Icon font protection ── */
.fa, .fas, .far, .fab, .fal, .fad {
    font-family: "Font Awesome 5 Free" !important;
}
.fab {
    font-family: "Font Awesome 5 Brands" !important;
}
[class^="flaticon-"]::before, [class*=" flaticon-"]::before,
[class^="flaticon-"]::after, [class*=" flaticon-"]::after {
    font-family: Flaticon !important;
}
.fi {
    font-family: uicons-regular-rounded !important;
}

/* ── Text Utilities ── */
.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

/* ---- Source: 3-components\grid.css ---- */
/*=============================================
  GRID SYSTEM - Bootstrap replacement
  Lightweight responsive grid + utilities
=============================================*/

/* ── Spin animation for Flaticon UIcons ── */
.fi-spin {
  animation: fi-spin 1s linear infinite;
}
@keyframes fi-spin {
  to { transform: rotate(360deg); }
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.custom-container {
  max-width: 1350px;
}

/* ── Row ── */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* ── Columns (base) ── */
[class*="col-"] {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }

/* ── SM (≥576px) ── */
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
}

/* ── MD (≥768px) ── */
@media (min-width: 768px) {
  .col-md-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-md-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

/* ── LG (≥992px) ── */
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
  .col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
}

/* ── XL (≥1200px) ── */
@media (min-width: 1200px) {
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
}

/* ── Gap ── */
.g-4 { gap: 1.5rem; }

/* ── Flex Utilities ── */
.d-flex { display: flex; }
.d-none { display: none; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.align-items-center { align-items: center; }

@media (min-width: 992px) {
  .d-lg-flex { display: flex; }
  .d-lg-block { display: block; }
  .d-none.d-lg-flex { display: none; }
  .d-none.d-lg-block { display: none; }
}
@media (min-width: 992px) {
  .d-none.d-lg-flex { display: flex; }
  .d-none.d-lg-block { display: block; }
}

/* ── Spacing ── */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.me-2 { margin-right: 0.5rem; }
.ms-2 { margin-left: 0.5rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.m-2 { margin: 0.5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

@media (min-width: 768px) {
  .mb-md-0 { margin-bottom: 0; }
}

/* ── Text ── */
.text-center { text-align: center; }
.text-muted { color: #6c757d; }
.text-white { color: #fff; }
.text-primary { color: #a855f7; }
.fw-bold { font-weight: 700; }

@media (min-width: 992px) {
  .text-lg-left { text-align: left; }
  .text-lg-right { text-align: right; }
}

/* ── Backgrounds ── */
.bg-light { background-color: #f8f9fa; }
.bg-primary { background-color: #a855f7; }

/* ── Borders ── */
.rounded-circle { border-radius: 50%; }
.rounded-pill { border-radius: 50rem; }
.border-bottom { border-bottom: 1px solid #dee2e6; }
.border-primary { border-color: #a855f7; }
.border-3 { border-width: 3px; border-style: solid; }

/* ── Position ── */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.top-0 { top: 0; }
.end-0 { right: 0; }

/* ── Sizing ── */
.h-100 { height: 100%; }
.w-100 { width: 100%; }

/* ── Opacity ── */
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* ── Gap ── */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

/* ── Shadow ── */
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); }

/* ── Visibility ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Card ── */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #1a1a2e;
  background-clip: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

/* ── Alert ── */
.alert {
  position: relative;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-info {
  color: #055160;
  background-color: rgba(13, 202, 240, 0.1);
  border-color: rgba(13, 202, 240, 0.2);
}

.alert-danger {
  color: #842029;
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
}

/* ── Spinner ── */
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  text-decoration: none;
  color: #fff;
}

.btn-primary {
  color: #fff;
  background-color: #a855f7;
  border-color: #a855f7;
}
.btn-primary:hover {
  background-color: #9333ea;
  border-color: #9333ea;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  background-color: #565e64;
  border-color: #565e64;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  background-color: #bb2d3b;
  border-color: #bb2d3b;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  background-color: #157347;
  border-color: #157347;
}

.btn-outline-primary {
  color: #a855f7;
  border-color: #a855f7;
  background-color: transparent;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #a855f7;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-link {
  font-weight: 400;
  color: #a855f7;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.btn-link:hover {
  color: #9333ea;
}

/* ── Forms ── */
.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #e0e0e0;
  background-color: #1a1a2e;
  background-clip: padding-box;
  border: 1px solid #333;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out;
  box-sizing: border-box;
}

.form-control:focus,
.form-select:focus {
  border-color: #a855f7;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25);
}

.form-label {
  margin-bottom: 0.5rem;
  display: inline-block;
  color: #e0e0e0;
}

.form-group {
  margin-bottom: 1rem;
}

/* ---- Source: 3-components\buttons.css ---- */
/*=============================================
  BUTTONS - All Button Styles
=============================================*/

/* SCROLL TO TOP BUTTON */
.scroll-top {
    width: 35px;
    height: 35px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    text-align: center;
    color: #ffffff;
    border-radius: 45px;
    line-height: 25px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    border: 0px solid transparent;
    background-color: #2e2e2e36;
    box-shadow: 0px 0px 15px 0px #0c0814d5;
}

@media (pointer: coarse) {
    .scroll-top {
        display: none;
    }
}

.scroll-top.open {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    color: #12151e;
}

/* DOWNLOAD BUTTON */
.download-btn {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    background: #e4d804;
    color: #12151e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.download-btn:hover {
    background: #fff700;
    color: #12151e;
}

/* CREATE BUTTON */
.create-button {
    padding: 12px 24px;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.create-button:hover {
    background-color: #b8070e;
}

/* ---- Source: 3-components\modals.css ---- */
/*=============================================
  MODALS - Modal Utilities
=============================================*/

.modal-backdrop {
    z-index: 1;
}

.modal-open .header-top {
    z-index: 2;
}

/* Search modal styles removed — template search is now inline in the header */

/* ---- Source: 3-components\forms.css ---- */
/* 17. Newsletter */
.newsletter-bg {
    background-position: center;
    background-size: cover;
}
.newsletter-inner-wrap {
    padding: 45px 80px;
}
.newsletter-content h4 {
    font-size: 30px;
    text-transform: uppercase;
    color: #171d22;
    margin-bottom: 0;
}
.newsletter-content p {
    margin-bottom: 0;
    color: #171d22;
}
.newsletter-form {
    position: relative;
}
.newsletter-form input {
    width: 100%;
    border: 2px solid #faf9f7;
    background: #fff;
    box-shadow: 0px 3px 4px 0px rgba(30, 30, 30, 0.17);
    padding: 17px 25px;
    padding-right: 215px;
    border-radius: 4px;
}
.newsletter-form input::placeholder {
    color: #a0a0a0;
}
.newsletter-form button {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    border-radius: 4px;
    background: #171d22;
    border-color: #171d22;
    color: #e4d804;
    font-size: 14px;
    padding: 15px 34px;
}

/* 18. Contact */
.contact-bg {
    background-position: top center;
    background-size: cover;
    padding: 120px 0;
}
.widget-title .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 18px;
}
.widget-title .title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #e4d804;
    border-radius: 1.5px;
}
.contact-form {
    padding: 30px 30px 40px;
    border: 1px solid #232226;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #1f1e24;
    background: #1f1e24;
    border-radius: 4px;
    color: #bcbcbc;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.46);
    font-weight: 500;
    padding: 14px 25px;
    margin-bottom: 30px;
    transition: .3s linear;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bcbcbc;
    font-weight: 500;
}
.contact-form textarea {
    min-height: 155px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e4d804;
}
.contact-info-wrap {
    background: #1f1e24;
    padding: 40px 34px 60px;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.46);
}
.contact-info-wrap > p {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #313035;
}
.contact-info-wrap > p span {
    font-weight: 600;
    color: #fafafa;
}
.contact-info-list ul li {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #313035;
}
.contact-info-list ul li:last-child {
    margin-bottom: 0;
}
.contact-info-list .icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    text-align: center;
    font-size: 16px;
    color: #1f1e24;
    background: #e4d804;
    line-height: 46px;
    border-radius: 50%;
    margin-right: 15px;
}
.contact-info-list li > p {
    margin-bottom: 0;
}
.contact-info-list li > p span {
    color: #e5e5e5;
    margin-right: 5px;
    font-weight: 600;
}
#map {
    min-height: 439px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

/* ---- Source: 3-components\preloader.css ---- */
/* 20. Preloader */
#preloader{
	background-color: #171D22;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	margin-top: 0px;
	top: 0px;
	z-index: 99;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ---- Source: 4-pages\movies.css ---- */
/* 8. Services */
.services-bg {
    background-position: center;
    background-size: cover;
    padding: 120px 0;
}
.services-img-wrap {
    position: relative;
}
.services-img-wrap > img {
	max-width: 100%;
}
.services-img-wrap .download-btn {
    background: #e4d804;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #14141d;
    letter-spacing: 5px;
    position: absolute;
    bottom: 65px;
    right: -70px;
    transform: rotate(90deg);
    padding: 43px 49px;
    border-radius: 6px;
}
.download-btn img {
    max-width: 24px;
    transform: rotate(-90deg);
}
.services-content-wrap {
    padding-left: 40px;
}
.title-style-two .sub-title {
	padding-left: 53px;
	color: #e4e2e2;
}
.title-style-two .sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 3px;
}
.services-bg .title-style-two {
    padding-right: 100px;
}
.services-content-wrap > p {
    margin-bottom: 45px;
}
.services-list ul li {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #38373c;
}
.services-list ul li .icon {
    width: 95px;
    height: 95px;
    line-height: 93px;
    text-align: center;
    border: 1px dashed #e4d804;
    border-radius: 50%;
    flex: 0 0 95px;
    position: relative;
    font-size: 38px;
    color: #fff;
	margin-right: 20px;
	z-index: 1;
}
.services-list ul li .icon::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    z-index: -1;
	transition: .3s linear;
	opacity: 0;
}
.services-list ul li:hover .icon::before {
	opacity: 1;
}
.services-list ul li .content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}
.services-list ul li .content p {
    margin-bottom: 0;
}
.services-list {
    padding-right: 110px;
}
.services-list ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}
.services-bg-two {
    padding: 270px 0 120px;
    background-position: center;
    background-size: cover;
}
.services-bg-two .services-content-wrap {
    padding-left: 0;
    padding-right: 50px;
}
.services-bg-two .services-list {
    padding-right: 0;
}
.services-bg-two .services-img-wrap {
    text-align: right;
}
.services-bg-two .services-img-wrap > img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0px 3px 24px 0px rgba(7, 7, 7, 0.52);
}
.services-bg-two .services-img-wrap .download-btn {
    bottom: 119px;
    right: auto;
    left: -63px;
    padding: 28px 55px;
}

/* 9. Top-movies */
.tr-movie-menu2-active button {

        border-radius: 50px;
        background: #20212b;
        font-size: 12px;
        font-weight: 600;
        color: #e3dfdf;
        border: 2px solid #2d303d;
        padding: 11px 27px;
        margin-bottom: 0;
        transition: none !important;
}
.tr-movie-menu2-active {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}


.tr-movie-bg {
    background-position: top center;
    background-size: cover;
    padding: 120px 0 60px;
}
.tr-movie-bg2 {
    background-position: top center;
    background-size: cover;
    padding: 120px 0 120px;
}
.tr-movie-menu-active {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.tr-movie-menu-active button {
    border: none;
    border-radius: 4px;
    box-shadow: inset 0px 3px 7px 0px rgba(0, 0, 0, 0.77);
    background: #0b1110;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #cdcaca;
    padding: 17px 25px;
    position: relative;
    margin: 0 7.5px 15px;
}
.tr-movie-menu-active button::before,
.tr-movie-menu-active button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 16px;
    transition: .3s linear;
	opacity: 0;
}
.tr-movie-menu-active button::after {
	left: auto;
	right: 0;
}
.tr-movie-menu-active button.active::before,
.tr-movie-menu-active button.active::after {
	opacity: 1;
}
.tr-movie-menu-active button.active {
	color: #fff;
	border-color: #e4d804;
}
.tr-movie-menu2-active button.active {
	text-shadow: 0px 3px 24px rgba(228, 216, 4, 0.5);
}
.movie-item-row {
    justify-content: space-between;
}
.movie-item-row .custom-col- {
    -ms-flex: 0 0 19.2%;
    flex: 0 0 19.2%;
    max-width: 19.2%;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.movie-item-row .custom-col- .movie-item-two {
    margin-bottom: 45px;
}
.movie-item-row .movie-poster {
    position: relative;
}
.movie-item-row .movie-poster::before,
.movie-item-three .movie-poster::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #04050a;
    transition: .3s linear;
    opacity: 0;
}
.movie-item-three .movie-poster::before {
    background: #14141d;
    border: 1px solid #2d292a;
}
.movie-item-row .movie-poster .overlay-btn,
.movie-item-three .movie-poster .overlay-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 1;
}
.movie-item-row .movie-poster .overlay-btn li,
.movie-item-three .movie-poster .overlay-btn li {
    transition: .3s linear;
    opacity: 0;
}
.movie-item-row .movie-poster .overlay-btn li:first-child,
.movie-item-three .movie-poster .overlay-btn li:first-child {
    margin-bottom: 17px;
    transform: translateY(-10px);
}
.movie-item-row .movie-poster .overlay-btn li:last-child,
.movie-item-three .movie-poster .overlay-btn li:last-child {
    transform: translateY(10px);
}
.movie-item-row .movie-poster .overlay-btn li .btn {
    padding: 11px 18px;
    letter-spacing: 0;
    font-weight: 600;
    min-width: 110px;
}
.movie-item-row .movie-poster .overlay-btn li:first-child .btn,
.movie-item-three .movie-poster .overlay-btn li:nth-child(2) .btn {
    background: #e4d804;
    color: #151517;
}
.movie-item-row .movie-item-two:hover .movie-poster .overlay-btn li,
.movie-item-three:hover .movie-poster .overlay-btn li {
    opacity: 1;
    transform: translateY(0);
}
.movie-item-row .movie-item-two:hover .movie-poster::before {
    opacity: .82;
}
.movie-item-three:hover .movie-poster::before {
    opacity: .79;
}
.title-style-three.text-center {
    padding-bottom: 30px;
}
.title-style-three.text-center::before {
    right: 0;
    margin: 0 auto;
}
.title-style-three.text-lg-left::before {
    left: 0;
    right: auto;
    margin: 0 0;
}
.movie-item-three .movie-poster .overlay-btn li + li {
    margin-top: 17px;
}
.movie-item-three .movie-poster .overlay-btn li a {
    min-width: 140px;
    padding: 10px 34px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}
.movie-item-three .movie-poster .overlay-btn li.rating {
    font-size: 12px;
    color: #e4d804;
}

/* 10. Gallery */
.gallery-area .slider-nav {
    max-width: 1080px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-area button.slick-arrow {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 40px;
    width: 90px;
    margin: 0 auto;
    z-index: 1;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #bebebe;
    cursor: pointer;
    transition: .3s linear;
    max-width: 1080px;
    text-align: center;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}
.gallery-area button.slick-arrow.slick-next {
 
    margin-right: 20%;
}
.gallery-area button.slick-arrow.slick-prev {
 
    margin-left: 22%;
}

.gallery-area.position-relative {
    z-index: 1;
    padding: 120px 0 0;
    margin-bottom: -150px;
}
.gallery-bg {
    background-image: url(../img/bg/gallery_bg.jpg);
    background-position: top center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 714px;
    z-index: -1;
}
.gallery-item img {
    max-width: 100%;
    display: inline-block;
}
.gallery-item {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
}
.gallery-active .slick-active.slick-center {
    margin-top: 0;
}
.gallery-active .slick-slide {
	margin-top: 80px;
	transition: .4s linear;
}
.gallery-area .slider-nav {
    max-width: 1080px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gallery-area .slick-arrow button .slider-nav > span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #bebebe;
    cursor: pointer;
    transition: .3s linear;
}
.slider-nav > span.slick-next i {
	margin-left: 5px;
}
.slider-nav > span.slick-prev i {
	margin-right: 5px;
}
.slider-nav > span:hover {
	color: #e4d804;
}

/* 11. Pagination */
.pagination-wrap ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pagination-wrap ul li a {
    display: block;
    font-size: 14px;
    color: #c2c2c2;
    font-weight: 600;
    padding: 10px 20px;
    border: 1.5px solid #c2c2c2;
}
.pagination-wrap ul li.active a,
.pagination-wrap ul li a:hover {
    color: #171d22;
    border-color: #e4d804;
    background: #e4d804;
}

/* 12. Live-show */
.live-bg {
    background-position: left center;
    background-size: cover;
    padding: 120px 0 120px;
}
.live-bg .title-style-two .sub-title {
	color: #656363;
}
.live-bg .title-style-two .title {
	color: #1e1b29;
}
.live-movie-img {
    margin-left: 70px;
}
.live-movie-img img {
	max-width: initial;
}
.live-movie-content > p {
    color: #6a6a6a;
    margin-bottom: 0;
}
.live-fact-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 24px;
}
.live-fact-wrap .resolution h2 {
    font-size: 60px;
    text-shadow: 0px 3px 24px rgba(160, 160, 160, 0.09);
    line-height: 1;
    margin-bottom: 0;
    color: #d81c2b;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #d81c2b;
}
.live-fact-wrap .resolution {
    margin-right: 35px;
    margin-bottom: 15px;
}
.active-customer {
	margin-bottom: 15px;
}
.active-customer h4 {
    font-size: 38px;
    color: #1e1b29;
    text-shadow: 0px 3px 4px rgba(30, 30, 30, 0.18);
    line-height: .8;
    margin-bottom: 5px;
    display: flex;
}
.active-customer > p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e1b29;
	line-height: 1;
}
.live-movie-content > .btn {
    box-shadow: 0px 3px 24px 0px rgba(160, 160, 160, 0.5);
    background: #e4d804;
    color: #1e1b29;
}
.live-movie-content > .btn:hover {
	background: transparent;
	box-shadow: none;
}

/* 13. Movie-details */
.movie-details-area {
    background-position: top center;
    background-size: cover;
    padding: 175px 0 120px;
}
.movie-details-img {
    position: relative;
}
.movie-details-img .popup-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.movie-details-img img {
    border-radius: 5px;
}
.movie-details-content {
    margin-left: 23px;
}
.movie-details-content h5 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #e4d804;
}
.movie-details-content h2 {
    font-size: 60px;
    margin-bottom: 20px;
}
.movie-details-content .banner-meta {
    margin-bottom: 15px;
}
.movie-details-content h2 > span,
.movie-details-prime ul li.share a:hover {
    color: #e4d804;
}
.movie-details-content p {
    margin-bottom: 0;
}
.movie-details-prime ul {
    display: flex;
    align-items: center;
    max-width: 475px;
    background: #242c38;
    border-radius: 4px;
    border: 1px solid #343434;
    padding: 0px 25px 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}
.movie-details-prime ul li {
    margin-top: 25px;
}
.movie-details-prime ul li.share {
    padding-right: 25px;
    margin-right: 25px;
    position: relative;
    text-align: center;
}
.movie-details-prime ul li.share::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background: #fff;
    opacity: .15;
}
.movie-details-prime ul li.share a {
    display: block;
    color: #bcbcbc;
    font-size: 12px;
    font-weight: 500;
}
.movie-details-prime ul li.share a i {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
    color: #fff;
}
.movie-details-prime ul li.streaming h6 {
    font-size: 16px;
    margin-bottom: 5px;
}
.movie-details-prime ul li.streaming span {
    display: block;
    color: #bcbcbc;
    font-size: 12px;
}
.movie-details-prime ul li.watch {
    margin-left: auto;
}
.movie-details-prime ul li.watch .btn {
    font-size: 10px;
    padding: 13px 26px;
    letter-spacing: 0;
    background: transparent;
}
.movie-details-prime ul li.watch .btn:hover {
    background: #e4d804;
}
.movie-details-btn .download-btn {
    background: #e4d804;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #14141d;
    letter-spacing: 5px;
    position: absolute;
    bottom: 65px;
    right: -50px;
    transform: rotate(90deg);
    padding: 43px 49px;
    border-radius: 6px;
}
.episode-bg {
    background-position: top center;
    background-size: cover;
    padding: 120px 0 115px;
}
.episode-top-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.episode-watch-wrap::after,
.episode-top-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(0, 0, 0);
    box-shadow: 0px 1px 3px 0px rgb(102 102 102 / 46%);
}
.episode-top-wrap .section-title .title {
    font-size: 30px;
}
.total-views-count p {
    margin-bottom: 0;
    color: #e3dfdf;
}
.total-views-count p i {
    margin-left: 12px;
    color: #e4d804;
}
.episode-watch-wrap .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: transparent;
    background-clip: border-box;
    border: none;
    border-radius: 0;
    margin-bottom: 35px;
}
.episode-watch-wrap .card .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: none;
    margin: 0;
}
.episode-watch-wrap .card .card-header button {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: #e0e0e0;
}
.episode-watch-wrap .card .card-header button .season {
    font-size: 16px;
    font-weight: 700;
    width: 50%;
    flex: 0 0 50%;
}
.episode-watch-wrap .card-body ul li a:hover,
.episode-watch-wrap .card-body ul li a i,
.episode-watch-wrap .card .card-header button .video-count {
    color: #e4d804;
}
.episode-watch-wrap .card .card-header button.collapsed .video-count {
    color: #9b9b9b;
}
.episode-watch-wrap .card .card-body {
    padding: 0 0;
}
.episode-watch-wrap .card-body ul {
    margin-top: 25px;
    background: #040406;
    padding: 30px 30px 40px;
}
.episode-watch-wrap .card-body ul li {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #242426;
}
.episode-watch-wrap .card-body ul li:last-child {
    margin-bottom: 0;
}
.episode-watch-wrap .card-body ul li .duration {
    float: right;
    color: #e3dfdf;
}
.episode-watch-wrap .card-body ul li .duration i {
    color: #e4d804;
    margin-right: 7px;
}
.episode-watch-wrap .card-body ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #c8c8c8;
}
.episode-watch-wrap .card-body ul li a i {
    font-size: 12px;
    margin-right: 15px;
}
.episode-watch-wrap .card:last-child {
    margin-bottom: 0;
}
.episode-watch-wrap {
    padding-bottom: 20px;
    position: relative;
}
.episode-img img {
    max-width: 100%;
}
.movie-episode-wrap {
    margin-right: 20px;
}
.movie-history-wrap .title {
    font-size: 24px;
    background: rgba(0, 0, 0, 0.349);
    border: 1px solid #29272f;
    padding: 25px 40px;
    position: relative;
    margin-bottom: 30px;
}
.movie-history-wrap .title span {
    color: #e4d804;
}
.movie-history-wrap p {
    margin-bottom: 0;
    padding: 0 35px;
}
.movie-history-wrap {
    margin-top: 75px;
}

/* 14. Pricing — extracted to Frontend/src/landing/pricing/style/pricingArea.css */

/* ---- Source: 4-pages\pricing.css ---- */
/* 14. Pricing — extracted to Frontend/src/landing/pricing/style/pricingArea.css */

/* 15. Tv-series */
.tv-series-bg {
    background-position: center;
    background-size: cover;
    padding: 120px 0 70px;
}
.tr-movie-btn .btn {
    letter-spacing: 0;
    background: #e4d804;
    color: #1a1e21;
}
.tr-movie-btn .btn:hover {
    background: transparent;
    color: #fff;
}

/* ---- Source: 4-pages\blog.css ---- */
/* 16. Blog */
.blog-bg {
    background-position: top center;
    background-size: cover;
    padding: 120px 0 120px;
}
.blog-post-item {
    background: #1f1e24;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.46);
    margin-bottom: 50px;
}
.blog-post-thumb img {
    border-radius: 4px;
    max-width: 100%;
}
.blog-post-content {
    padding: 30px;
}
.blog-post-content .date,
.blog-details-top-meta .user {
    display: block;
    margin-bottom: 8px;
}
.blog-post-content .date i,
.blog-details-top-meta .user i {
    margin-right: 5px;
    color: #e4d804;
}
.blog-post-content .title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}
.blog-post-content .title a:hover,
.blog-post-meta ul li a:hover {
    color: #e4d804;
}
.blog-post-content p {
    margin-bottom: 0;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding-top: 19px;
    margin-top: 30px;
}
.blog-post-meta::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(0, 0, 0);
    box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.46);
}
.blog-post-meta ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.blog-post-meta ul li {
    position: relative;
    margin-top: 10px;
    font-size: 12px;
    color: #d0d0d0;
}
.blog-post-meta ul li + li::before {
    content: "|";
    padding-left: 15px;
    padding-right: 15px;
    color: #6a6a6a;
}
.blog-post-meta ul li i {
    color: #e4d804;
    margin-right: 8px;
}
.blog-post-meta ul li a {
    color: #d0d0d0;
}
.blog-post-meta .read-more {
    margin-top: 10px;
}
.blog-post-meta .read-more a {
    font-size: 14px;
    font-weight: 600;
    color: #e4d804;
}
.blog-post-meta .read-more a i {
    margin-left: 5px;
}
.blog-sidebar {
    margin-left: 30px;
}
.blog-widget {
    background: #1f1e24;
    border-radius: 4px;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.46);
    padding: 40px 30px;
    margin-bottom: 30px;
}
.blog-widget:last-child {
    margin-bottom: 0;
}
.sidebar-search input {
    width: 100%;
    background: #393939;
    border: none;
    padding: 17px 80px 17px 25px;
    color: #fff;
}
.sidebar-search input::placeholder {
    color: #bcbcbc;
    font-weight: 500;
}
.sidebar-search {
    position: relative;
}
.sidebar-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 55px;
    height: 100%;
    border: none;
    font-size: 16px;
    color: #100e17;
    background: #e4d804;
    padding: 0 0;
}
.sidebar-cat ul li {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #59595c;
}
.sidebar-cat ul li:last-child {
    margin-bottom: 0;
}
.sidebar-cat ul li a {
    color: #c8c8c8;
}
.sidebar-cat ul li span {
    float: right;
}
.sidebar-cat ul li a:hover {
    color: #e4d804;
}
.rc-post-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.rc-post-item:last-child {
    margin-bottom: 0;
}
.rc-post-item .thumb {
    flex: 0 0 100px;
    width: 100px;
    margin-right: 20px;
}
.rc-post-item .thumb img {
    border-radius: 3px;
}
.rc-post-item .content {
    flex-grow: 1;
}
.rc-post-item .content .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
}
.rc-post-item .content .title a:hover {
    color: #e4d804;
}
.rc-post-item .content .date {
    display: block;
    font-size: 12px;
}
.rc-post-item .content .date i {
    color: #e4d804;
    margin-right: 5px;
}
.tag-list ul li {
    display: inline-block;
    margin: 0px 8px 10px;
}
.tag-list ul li a {
    display: block;
    background: #393939;
    font-size: 14px;
    color: #bcbcbc;
    padding: 8px 13px;
    position: relative;
}
.tag-list ul li a::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 0;
	width: 0;
	height: 100%;
	border-style: solid;
	border-width: 0 0 35px 10px;
	border-color: transparent transparent #393939 transparent;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.tag-list ul li a::after {
	content: "";
	position: absolute;
	right: -10px;
	top: 0;
	width: 0;
	height: 100%;
	border-style: solid;
	border-width: 0 0 35px 10px;
	border-color: transparent transparent transparent #393939;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.tag-list ul li a:hover {
	color: #100e17;
	background: #e4d804;
}
.tag-list ul li a:hover::before {
	border-color: transparent transparent #e4d804 transparent;
}
.tag-list ul li a:hover::after {
	border-color: transparent transparent transparent #e4d804;
}
.blog-details-wrap .blog-post-meta ul li + li::before {
    display: none;
}
.blog-details-wrap .blog-post-meta ul li + li {
    margin-left: 15px;
}
.blog-post-meta .blog-details-tags li > span {
    font-size: 12px;
    font-weight: 600;
}
.blog-post-meta .blog-details-tags li > i {
    margin-right: 5px;
}
.blog-details-top-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 7px;
}
.blog-details-top-meta .user a {
    color: #d0d0d0;
}
.blog-details-top-meta span {
    position: relative;
}
.blog-details-top-meta span + span::before {
    content: "|";
    padding: 0 15px;
    color: #6a6a6a;
}
.blog-details-wrap .blog-post-content > p {
    margin-bottom: 15px;
}
.blog-details-wrap blockquote {
    margin: 35px 0 40px;
    background: #100e17;
    padding: 35px 50px 35px 40px;
}
.blog-details-wrap blockquote > i {
    float: left;
    font-size: 55px;
    color: #e4d804;
    margin-right: 30px;
    line-height: 1;
}
.blog-details-wrap blockquote p {
    margin-left: 85px;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: #eeeeee;
    line-height: 1.6;
    margin-bottom: 18px;
}
.blog-details-wrap blockquote figure {
    margin-left: 85px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: #a4a1a1;
}
.blog-details-wrap blockquote figure > span {
    position: relative;
    font-size: 16px;
    color: #e4d804;
    padding-right: 14px;
    margin-right: 14px;
}
.blog-details-wrap blockquote figure > span::before {
    content: "|";
    font-size: 14px;
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: #a4a1a1;
}
.blog-img-wrap > .row {
    margin-left: -10px;
    margin-right: -10px;
}
.blog-img-wrap > .row [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}
.blog-img-wrap {
    margin-bottom: 12px;
}
.blog-img-wrap img {
    max-width: 100%;
    margin-bottom: 20px;
    box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.19);
}
.blog-post-meta .blog-post-share a,
.post-avatar-content ul li a {
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	background: #385594;
	text-align: center;
	font-size: 12px;
	border-radius: 50%;
	color: #fff;
	margin-left: 10px;
}
.blog-post-meta .blog-post-share a:nth-child(2),
.post-avatar-content ul li:nth-child(2) a {
	background: #4eabee;
}
.blog-post-meta .blog-post-share a:last-child,
.post-avatar-content ul li:last-child a {
	background: #cb2027;
}
.blog-post-meta .blog-post-share a:first-child,
.post-avatar-social a:first-child {
    margin-left: 0;
}
.avatar-post {
    background: #1f1e24;
    padding: 40px 60px 40px 40px;
    display: flex;
    align-items: center;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.46);
}
.post-avatar-img {
    margin-right: 30px;
    width: 130px;
    flex: 0 0 130px;
}
.post-avatar-img img {
    max-width: 100%;
    border-radius: 50%;
}
.post-avatar-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.post-avatar-content ul {
    display: flex;
    align-items: center;
}
.post-avatar-content ul li + li {
    margin-left: 10px;
}
.post-avatar-content ul li a {
    margin: 0;
}
.post-avatar-content p {
    color: #bcbcbc;
    font-weight: 500;
    margin-bottom: 15px;
}
.blog-comment ul li {
    display: block;
    padding: 30px;
    overflow: hidden;
    background: #1f1e24;
    margin-bottom: 20px;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.46);
}
.blog-comment ul li .single-comment {
	display: flex;
	align-items: center;
}
.comment-avatar-img {
    margin-right: 25px;
    width: 131px;
    flex: 0 0 131px;
}
.comment-avatar-img img {
    border-radius: 50%;
    max-width: 100%;
}
.comment-avatar-info {
    overflow: hidden;
    margin-bottom: 15px;
}
.comment-avatar-info h5 {
    font-size: 18px;
    margin-bottom: 0;
    display: inline-block;
    font-weight: 600;
}
.comment-avatar-info h5 span {
    font-size: 12px;
    color: #d0d0d0;
    margin-left: 10px;
    font-weight: 500;
}
.comment-reply-link {
    float: right;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.comment-reply-link i {
    margin-left: 7px;
    color: #e4d804;
}
.comment-text p {
    margin-bottom: 0;
    padding-right: 35px;
    color: #bcbcbc;
}
.blog-comment ul li.comment-reply {
	margin-left: 60px;
}
.blog-comment ul li:last-child {
	margin-bottom: 0;
}
.comment-reply-link:hover {
    color: #e4d804;
}

/* ---- Source: 5-responsive\breakpoints.css ---- */
/*=============================================
  RESPONSIVE - Modern Mobile & Tablet Styles
  Gradient · Glassmorphism · Carousel · Animations
  (Header responsive styles are in 2-layout/header.css)
=============================================*/


/* ─── KEYFRAME ANIMATIONS ─── */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ─── 1500px BREAKPOINT (Large Desktop) ─── */

@media (max-width: 1500px) {
    .custom-container {
        max-width: 100vw;
    }

    .hero-upload-icon {
        width: 110px !important;
        height: 110px !important;
    }
    .features-box p {
        font-size: 13px !important;
    }
}


/* ─── 1200px BREAKPOINT (Desktop) ─── */

@media (max-width: 1200px) {
    .custom-container {
        max-width: 100vw;
    }

    .hero-upload-icon {
        width: 95px !important;
        height: 95px !important;
    }
    .features-box p {
        font-size: 13px !important;
    }
}


/* ═══════════════════════════════════════════
   991px BREAKPOINT — TABLET
   Modern stacked layout with glassmorphism
   ═══════════════════════════════════════════ */

@media (max-width: 991.98px) {
    .custom-container {
        max-width: 100vw;
    }

    /* Hide decorative bars on tablet */
    .deco-bar {
        display: none !important;
    }

    /* ── FEATURES SECTION ── */
    .section-header {
        padding: 0.5vw 12vw !important;
        font-size: clamp(1.6rem, 4vw, 2.5rem) !important;
        border-radius: 12px !important;
    }

    /* Features grid: 3 columns on tablet */
    .features-grid {
        gap: 20px !important;
    }

    .features-box {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
        border-radius: 16px !important;
        padding: clamp(16px, 2vw, 24px) !important;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        animation: fadeInUp 0.5s ease-out both;
    }

    .features-box:nth-child(1) { animation-delay: 0.05s; }
    .features-box:nth-child(2) { animation-delay: 0.1s; }
    .features-box:nth-child(3) { animation-delay: 0.15s; }
    .features-box:nth-child(4) { animation-delay: 0.2s; }
    .features-box:nth-child(5) { animation-delay: 0.25s; }
    .features-box:nth-child(6) { animation-delay: 0.3s; }

    .features-box p {
        font-size: 11px !important;
        line-height: 1.5 !important;
    }

    .quick-link-list ul {
        justify-content: center !important;
    }

    .quick-link-list ul li {
        margin: 5px 20px 5px 0 !important;
    }

    .footer-social ul {
        justify-content: center !important;
        margin-top: 20px !important;
    }
}


/* ═══════════════════════════════════════════
   767px BREAKPOINT — MOBILE
   Full mobile-first layout with carousel,
   gradient boxes, and entrance animations
   ═══════════════════════════════════════════ */

@media (max-width: 767.98px) {
    .custom-container {
        max-width: 100vw;
    }

    /* ── GLOBAL TYPOGRAPHY ── */
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    .btn {
        padding: 12px 24px;
        font-size: 11px;
    }

    /* ── FEATURES SECTION ── */
    .section-header {
        padding: 0.5vw 8vw !important;
        font-size: clamp(1.4rem, 5vw, 2rem) !important;
        border-radius: 10px !important;
    }

    /* Features: horizontal scroll carousel on mobile */
    .features-grid {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        gap: 14px !important;
        padding: 8px 4px 16px !important;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
        mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
        width: 100% !important;
        max-width: 100% !important;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .features-box {
        flex: 0 0 140px !important;
        max-width: 160px !important;
        min-width: 140px !important;
        border-radius: 16px !important;
        padding: clamp(14px, 3vw, 20px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 4px 20px rgba(43, 25, 66, 0.15) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .features-box p {
        display: block !important;
        font-size: 10px !important;
        line-height: 1.45 !important;
        color: rgba(0, 0, 0, 0.65) !important;
    }

    .quick-link-list ul {
        justify-content: center !important;
        gap: 0 !important;
    }

    .quick-link-list ul li {
        margin: 4px 16px 4px 0 !important;
    }

    .quick-link-list ul li a {
        font-size: 11px !important;
    }

    .footer-social ul {
        justify-content: center !important;
        margin-top: 16px !important;
    }

    .copyright-text > p {
        font-size: 11px !important;
        text-align: center !important;
        padding: 12px 16px !important;
    }
}


/* ═══════════════════════════════════════════
   575px BREAKPOINT — SMALL MOBILE
   Refined for small screens with full-width
   cards, gradient accents, micro-animations
   ═══════════════════════════════════════════ */

@media (max-width: 575.98px) {
    .custom-container {
        max-width: 100vw;
    }

    /* ── TYPOGRAPHY ── */
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }

    /* ── FEATURES SECTION ── */
    .section-header {
        padding: 6px 20px !important;
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        border-radius: 8px !important;
    }

    /* Features: swipeable card carousel */
    .features-grid {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        gap: 12px !important;
        padding: 6px 4px 14px !important;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent 100%);
        mask-image: linear-gradient(90deg, #000 82%, transparent 100%);
        width: 100% !important;
        max-width: 100% !important;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .features-box {
        flex: 0 0 130px !important;
        max-width: 150px !important;
        min-width: 130px !important;
        border-radius: 14px !important;
        padding: 14px !important;
        background: rgba(255, 255, 255, 0.97) !important;
        box-shadow: 0 3px 16px rgba(43, 25, 66, 0.12) !important;
        animation: fadeInUp 0.4s ease-out both;
    }

    .features-box:nth-child(1) { animation-delay: 0.05s; }
    .features-box:nth-child(2) { animation-delay: 0.1s; }
    .features-box:nth-child(3) { animation-delay: 0.15s; }
    .features-box:nth-child(4) { animation-delay: 0.2s; }
    .features-box:nth-child(5) { animation-delay: 0.25s; }
    .features-box:nth-child(6) { animation-delay: 0.3s; }

    .features-box p {
        display: block !important;
        font-size: 9px !important;
        line-height: 1.4 !important;
        color: rgba(0, 0, 0, 0.55) !important;
    }

    .quick-link-list ul {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .quick-link-list ul li {
        margin: 3px 12px 3px 0 !important;
    }

    .quick-link-list ul li a {
        font-size: 10px !important;
    }

    .footer-social ul {
        justify-content: center !important;
        margin-top: 12px !important;
    }

    .footer-social ul li a {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 11px !important;
    }

    .copyright-text > p {
        font-size: 10px !important;
        text-align: center !important;
        padding: 10px 12px !important;
    }
}


/* ═══════════════════════════════════════════
   400px BREAKPOINT — EXTRA SMALL MOBILE
   Ultra-compact layout for narrow screens
   ═══════════════════════════════════════════ */

@media (max-width: 400px) {

    .features-box {
        flex: 0 0 120px !important;
        min-width: 120px !important;
        padding: 12px !important;
        border-radius: 12px !important;
    }

    .features-box p {
        font-size: 8px !important;
    }
}


/* ─── TOUCH & HOVER ENHANCEMENTS ─── */

@media (hover: none) and (pointer: coarse) {
    /* Optimize for touch devices */
    .features-box {
        -webkit-tap-highlight-color: transparent;
    }

    .features-box:active {
        transform: scale(0.96) !important;
        transition: transform 0.15s ease !important;
    }
}


/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
    .features-box {
        animation: none !important;
    }

    .features-box {
        transition-duration: 0.01s !important;
    }
}


/* =============================================
   SKELETON RESPONSIVE — Mobile/Desktop splits
   ============================================= */

/* ─── SKELETON: 991px (Tablet) ─── */
@media (max-width: 991.98px) {

    /* Carousel */
    .carousel-nav {
        justify-content: center !important;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ─── SKELETON: 767px (Mobile) ─── */
@media (max-width: 767.98px) {

    /* Carousel slides */
    .carousel-slide {
        flex: 0 0 220px !important;
        padding: 18px !important;
    }
    .carousel-track {
        gap: 14px !important;
    }

    .footer-bottom-download {
        display: block !important;
    }
}

/* ─── SKELETON: 575px (Small Mobile) ─── */
@media (max-width: 575.98px) {

    .carousel-slide {
        flex: 0 0 200px !important;
        padding: 14px !important;
    }
    .carousel-slide h3 {
        font-size: 14px !important;
    }
    .carousel-slide p {
        font-size: 11px !important;
    }

}

/* ─── SKELETON: 400px (Extra Small) ─── */
@media (max-width: 400px) {

    .carousel-slide {
        flex: 0 0 180px !important;
    }
}
